1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sfx2/viewfrm.hxx>
#include <svl/style.hxx>
#include <svtools/unitconv.hxx>
#include <sal/log.hxx>
#include <view.hxx>
#include <wrtsh.hxx>
#include <docsh.hxx>
#include <charfmt.hxx>
#include <docstyle.hxx>
#include <lineinfo.hxx>
#include <linenum.hxx>
#include <swmodule.hxx>
#include <uitool.hxx>
#include <usrpref.hxx>
#include <wdocsh.hxx>
#include <fmtline.hxx>
#include <strings.hrc>
#include <IDocumentStylePoolAccess.hxx>
static rtl::Reference<SwDocStyleSheet> lcl_getDocStyleSheet(const OUString& rName, SwWrtShell *pSh)
{
SfxStyleSheetBasePool* pBase = pSh->GetView().GetDocShell()->GetStyleSheetPool();
SfxStyleSheetBase* pStyle = pBase->Find(rName, SfxStyleFamily::Para);
SAL_WARN_IF( !pStyle, "sw.ui", "Style not found" );
if(!pStyle)
return nullptr;
return new SwDocStyleSheet(*static_cast<SwDocStyleSheet*>(pStyle));
}
static void lcl_setLineNumbering(const OUString& rName, SwWrtShell* pSh, bool bLineNumber)
{
rtl::Reference<SwDocStyleSheet> xStyleSheet = lcl_getDocStyleSheet(rName, pSh);
if(!xStyleSheet.is())
return;
SfxItemSet& rSet = xStyleSheet->GetItemSet();
SwFormatLineNumber aFormat;
aFormat.SetCountLines(bLineNumber);
rSet.Put(aFormat);
xStyleSheet->MergeIndentAttrsOfListStyle( rSet );
xStyleSheet->SetItemSet(rSet);
}
SwLineNumberingDlg::SwLineNumberingDlg(const SwView& rVw)
: SfxDialogController(rVw.GetViewFrame().GetFrameWeld(),
"modules/swriter/ui/linenumbering.ui", "LineNumberingDialog")
, m_pSh(rVw.GetWrtShellPtr())
, m_xBodyContent(m_xBuilder->weld_widget("content"))
, m_xDivIntervalFT(m_xBuilder->weld_widget("every"))
, m_xDivIntervalNF(m_xBuilder->weld_spin_button("linesspin"))
, m_xDivRowsFT(m_xBuilder->weld_widget("lines"))
, m_xNumIntervalNF(m_xBuilder->weld_spin_button("intervalspin"))
, m_xCharStyleLB(m_xBuilder->weld_combo_box("styledropdown"))
, m_xFormatLB(new SwNumberingTypeListBox(m_xBuilder->weld_combo_box("formatdropdown")))
, m_xPosLB(m_xBuilder->weld_combo_box("positiondropdown"))
, m_xOffsetMF(m_xBuilder->weld_metric_spin_button("spacingspin", FieldUnit::CM))
, m_xDivisorED(m_xBuilder->weld_entry("textentry"))
, m_xCountEmptyLinesCB(m_xBuilder->weld_check_button("blanklines"))
, m_xCountFrameLinesCB(m_xBuilder->weld_check_button("linesintextframes"))
, m_xRestartEachPageCB(m_xBuilder->weld_check_button("restarteverynewpage"))
, m_xNumberingOnCB(m_xBuilder->weld_check_button("shownumbering"))
, m_xNumberingOnFooterHeader(m_xBuilder->weld_check_button("showfooterheadernumbering"))
, m_xOKButton(m_xBuilder->weld_button("ok"))
, m_xNumIntervalFT(m_xBuilder->weld_widget("interval"))
, m_xNumRowsFT(m_xBuilder->weld_widget("intervallines"))
{
m_xFormatLB->Reload(SwInsertNumTypes::Extended);
OUString sIntervalName = m_xDivIntervalFT->get_accessible_name()
+ "("
+ m_xDivRowsFT->get_accessible_name()
+ ")";
m_xDivIntervalNF->set_accessible_name(sIntervalName);
sIntervalName = m_xNumIntervalFT->get_accessible_name()
+ "("
+ m_xNumRowsFT->get_accessible_name()
+ ")";
m_xNumIntervalNF->set_accessible_name(sIntervalName);
// char styles
::FillCharStyleListBox(*m_xCharStyleLB, m_pSh->GetView().GetDocShell());
const SwLineNumberInfo &rInf = m_pSh->GetLineNumberInfo();
IDocumentStylePoolAccess& rIDSPA = m_pSh->getIDocumentStylePoolAccess();
OUString sStyleName(rInf.GetCharFormat( rIDSPA )->GetName());
const int nPos = m_xCharStyleLB->find_text(sStyleName);
if (nPos != -1)
m_xCharStyleLB->set_active(nPos);
else
{
if (!sStyleName.isEmpty())
{
m_xCharStyleLB->append_text(sStyleName);
m_xCharStyleLB->set_active_text(sStyleName);
}
}
// format
SvxNumType nSelFormat = rInf.GetNumType().GetNumberingType();
m_xFormatLB->SelectNumberingType(nSelFormat);
// position
m_xPosLB->set_active(rInf.GetPos());
// offset
sal_uInt16 nOffset = rInf.GetPosFromLeft();
if (nOffset == USHRT_MAX)
nOffset = 0;
FieldUnit eFieldUnit = SW_MOD()->GetUsrPref(dynamic_cast< const SwWebDocShell*>(
rVw.GetDocShell()) != nullptr)->GetMetric();
::SetFieldUnit(*m_xOffsetMF, eFieldUnit);
m_xOffsetMF->set_value(m_xOffsetMF->normalize(nOffset), FieldUnit::TWIP);
// numbering offset
m_xNumIntervalNF->set_value(rInf.GetCountBy());
// divider
m_xDivisorED->set_text(rInf.GetDivider());
// divider offset
m_xDivIntervalNF->set_value(rInf.GetDividerCountBy());
// count
m_xCountEmptyLinesCB->set_active(rInf.IsCountBlankLines());
m_xCountFrameLinesCB->set_active(rInf.IsCountInFlys());
m_xRestartEachPageCB->set_active(rInf.IsRestartEachPage());
m_xNumberingOnCB->set_active(rInf.IsPaintLineNumbers());
// Header/Footer Line Numbering
rtl::Reference< SwDocStyleSheet > xStyleSheet = lcl_getDocStyleSheet(SwResId(STR_POOLCOLL_FOOTER), m_pSh);
if(xStyleSheet.is())
{
SfxItemSet& rSet = xStyleSheet->GetItemSet();
const SwFormatLineNumber &aFormat = rSet.Get(RES_LINENUMBER);
if (aFormat.IsCount())
m_xNumberingOnFooterHeader->set_state(TRISTATE_TRUE);
else
m_xNumberingOnFooterHeader->set_state(TRISTATE_FALSE);
}
// Line Numbering
m_xNumberingOnCB->connect_toggled(LINK(this, SwLineNumberingDlg, LineOnOffHdl));
m_xDivisorED->connect_changed(LINK(this, SwLineNumberingDlg, ModifyHdl));
ModifyHdl(*m_xDivisorED);
LineOnOffHdl(*m_xNumberingOnCB);
m_xOKButton->connect_clicked(LINK(this, SwLineNumberingDlg, OKHdl));
}
SwLineNumberingDlg::~SwLineNumberingDlg()
{
}
IMPL_LINK_NOARG(SwLineNumberingDlg, OKHdl, weld::Button&, void)
{
SwLineNumberInfo aInf(m_pSh->GetLineNumberInfo());
// char styles
OUString sCharFormatName(m_xCharStyleLB->get_active_text());
SwCharFormat *pCharFormat = m_pSh->FindCharFormatByName(sCharFormatName);
if (!pCharFormat)
{
SfxStyleSheetBasePool* pPool = m_pSh->GetView().GetDocShell()->GetStyleSheetPool();
SfxStyleSheetBase* pBase;
pBase = pPool->Find(sCharFormatName, SfxStyleFamily::Char);
if(!pBase)
pBase = &pPool->Make(sCharFormatName, SfxStyleFamily::Char);
pCharFormat = static_cast<SwDocStyleSheet*>(pBase)->GetCharFormat();
}
if (pCharFormat)
aInf.SetCharFormat(pCharFormat);
// format
SvxNumberType aType;
aType.SetNumberingType(m_xFormatLB->GetSelectedNumberingType());
aInf.SetNumType(aType);
// position
aInf.SetPos(static_cast<LineNumberPosition>(m_xPosLB->get_active()));
// offset
aInf.SetPosFromLeft(o3tl::narrowing<sal_uInt16>(m_xOffsetMF->denormalize(m_xOffsetMF->get_value(FieldUnit::TWIP))));
// numbering offset
aInf.SetCountBy(o3tl::narrowing<sal_uInt16>(m_xNumIntervalNF->get_value()));
// divider
aInf.SetDivider(m_xDivisorED->get_text());
// divider offset
aInf.SetDividerCountBy(o3tl::narrowing<sal_uInt16>(m_xDivIntervalNF->get_value()));
// count
aInf.SetCountBlankLines(m_xCountEmptyLinesCB->get_active());
aInf.SetCountInFlys(m_xCountFrameLinesCB->get_active());
aInf.SetRestartEachPage(m_xRestartEachPageCB->get_active());
aInf.SetPaintLineNumbers(m_xNumberingOnCB->get_active());
m_pSh->SetLineNumberInfo(aInf);
// Set LineNumber explicitly for Header and Footer
lcl_setLineNumbering(SwResId(STR_POOLCOLL_FOOTER), m_pSh, m_xNumberingOnFooterHeader->get_active());
lcl_setLineNumbering(SwResId(STR_POOLCOLL_HEADER), m_pSh, m_xNumberingOnFooterHeader->get_active());
if( m_xNumberingOnFooterHeader->get_active())
m_xNumberingOnFooterHeader->set_state(TRISTATE_TRUE);
else
m_xNumberingOnFooterHeader->set_state(TRISTATE_FALSE);
m_xDialog->response(RET_OK);
}
// modify
IMPL_LINK_NOARG(SwLineNumberingDlg, ModifyHdl, weld::Entry&, void)
{
bool bEnable = m_xNumberingOnCB->get_active() && !m_xDivisorED->get_text().isEmpty();
m_xDivIntervalFT->set_sensitive(bEnable);
m_xDivIntervalNF->set_sensitive(bEnable);
m_xDivRowsFT->set_sensitive(bEnable);
}
// On/Off
IMPL_LINK_NOARG(SwLineNumberingDlg, LineOnOffHdl, weld::Toggleable&, void)
{
bool bEnable = m_xNumberingOnCB->get_active();
m_xBodyContent->set_sensitive(bEnable);
ModifyHdl(*m_xDivisorED);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|