Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <officecfg/Office/Writer.hxx>
21 : #include <comphelper/string.hxx>
22 : #include <swtypes.hxx>
23 : #include <helpid.h>
24 : #include <uiitems.hxx>
25 : #include <modcfg.hxx>
26 : #include "swmodule.hxx"
27 : #include "usrpref.hxx"
28 : #include "wrtsh.hxx"
29 : #include "linkenum.hxx"
30 : #include <uitool.hxx>
31 : #include <view.hxx>
32 :
33 : #include "globals.hrc"
34 : #include "cmdid.h"
35 :
36 : #include "optload.hxx"
37 : #include <svx/dlgutil.hxx>
38 : #include <sfx2/htmlmode.hxx>
39 : #include <fldmgr.hxx>
40 : #include <poolfmt.hxx>
41 : #include <expfld.hxx>
42 : #include <com/sun/star/document/PrinterIndependentLayout.hpp>
43 :
44 : #include <svtools/insdlg.hxx>
45 : #include <svtools/treelistentry.hxx>
46 : #include <vcl/builderfactory.hxx>
47 : #include <vcl/settings.hxx>
48 :
49 : #include <comphelper/classids.hxx>
50 : #include <unotools/configmgr.hxx>
51 : #include <docsh.hxx>
52 : #include <app.hrc>
53 : #include <config.hrc>
54 : #include <SwStyleNameMapper.hxx>
55 : #include <numrule.hxx>
56 : #include <SwNodeNum.hxx>
57 :
58 : #include <doc.hxx>
59 : #include <svl/cjkoptions.hxx>
60 :
61 : using namespace ::com::sun::star;
62 :
63 : #include <svl/eitem.hxx>
64 :
65 0 : SwLoadOptPage::SwLoadOptPage(vcl::Window* pParent, const SfxItemSet& rSet)
66 : : SfxTabPage(pParent, "OptGeneralPage", "modules/swriter/ui/optgeneralpage.ui", &rSet)
67 : , m_pWrtShell(NULL)
68 : , m_nLastTab(0)
69 0 : , m_nOldLinkMode(MANUAL)
70 : {
71 0 : get(m_pAlwaysRB, "always");
72 0 : get(m_pRequestRB, "onrequest");
73 0 : get(m_pNeverRB, "never");
74 0 : get(m_pAutoUpdateFields, "updatefields");
75 0 : get(m_pAutoUpdateCharts, "updatecharts");
76 0 : get(m_pMetricLB, "metric");
77 0 : get(m_pTabFT, "tablabel");
78 0 : get(m_pTabMF, "tab");
79 0 : get(m_pUseSquaredPageMode, "squaremode");
80 0 : get(m_pUseCharUnit, "usecharunit");
81 0 : get(m_pWordCountED, "wordcount");
82 0 : get(m_pShowStandardizedPageCount, "standardizedpageshow");
83 0 : get(m_pStandardizedPageSizeNF, "standardpagesize");
84 :
85 0 : SvxStringArray aMetricArr( SW_RES( STR_ARR_METRIC ) );
86 0 : for ( sal_uInt32 i = 0; i < aMetricArr.Count(); ++i )
87 : {
88 0 : const OUString sMetric = aMetricArr.GetStringByPos( i );
89 0 : FieldUnit eFUnit = (FieldUnit)aMetricArr.GetValue( i );
90 :
91 0 : switch ( eFUnit )
92 : {
93 : case FUNIT_MM:
94 : case FUNIT_CM:
95 : case FUNIT_POINT:
96 : case FUNIT_PICA:
97 : case FUNIT_INCH:
98 : {
99 : // use only these metrics
100 0 : sal_Int32 nPos = m_pMetricLB->InsertEntry( sMetric );
101 0 : m_pMetricLB->SetEntryData( nPos, reinterpret_cast<void*>((sal_IntPtr)eFUnit) );
102 : }
103 : default:; //prevent warning
104 : }
105 0 : }
106 0 : m_pMetricLB->SetSelectHdl(LINK(this, SwLoadOptPage, MetricHdl));
107 :
108 : const SfxPoolItem* pItem;
109 0 : if (SfxItemState::SET == rSet.GetItemState(SID_HTML_MODE, false, &pItem)
110 0 : && static_cast<const SfxUInt16Item*>(pItem)->GetValue() & HTMLMODE_ON)
111 : {
112 0 : m_pTabFT->Hide();
113 0 : m_pTabMF->Hide();
114 : }
115 :
116 0 : SvtCJKOptions aCJKOptions;
117 0 : if(!aCJKOptions.IsAsianTypographyEnabled())
118 : {
119 0 : m_pUseSquaredPageMode->Hide();
120 0 : m_pUseCharUnit->Hide();
121 : }
122 :
123 0 : Link<> aLink = LINK(this, SwLoadOptPage, StandardizedPageCountCheckHdl);
124 0 : m_pShowStandardizedPageCount->SetClickHdl(aLink);
125 0 : }
126 :
127 0 : SwLoadOptPage::~SwLoadOptPage()
128 : {
129 0 : disposeOnce();
130 0 : }
131 :
132 0 : void SwLoadOptPage::dispose()
133 : {
134 0 : m_pAlwaysRB.clear();
135 0 : m_pRequestRB.clear();
136 0 : m_pNeverRB.clear();
137 0 : m_pAutoUpdateFields.clear();
138 0 : m_pAutoUpdateCharts.clear();
139 0 : m_pMetricLB.clear();
140 0 : m_pTabFT.clear();
141 0 : m_pTabMF.clear();
142 0 : m_pUseSquaredPageMode.clear();
143 0 : m_pUseCharUnit.clear();
144 0 : m_pWordCountED.clear();
145 0 : m_pShowStandardizedPageCount.clear();
146 0 : m_pStandardizedPageSizeNF.clear();
147 0 : SfxTabPage::dispose();
148 0 : }
149 :
150 :
151 0 : VclPtr<SfxTabPage> SwLoadOptPage::Create( vcl::Window* pParent,
152 : const SfxItemSet* rAttrSet )
153 : {
154 0 : return VclPtr<SwLoadOptPage>::Create(pParent, *rAttrSet );
155 : }
156 :
157 0 : IMPL_LINK_NOARG(SwLoadOptPage, StandardizedPageCountCheckHdl)
158 : {
159 0 : m_pStandardizedPageSizeNF->Enable(m_pShowStandardizedPageCount->IsChecked());
160 0 : return 0;
161 : }
162 :
163 0 : bool SwLoadOptPage::FillItemSet( SfxItemSet* rSet )
164 : {
165 0 : bool bRet = false;
166 0 : SwModule* pMod = SW_MOD();
167 :
168 0 : sal_Int32 nNewLinkMode = AUTOMATIC;
169 0 : if (m_pNeverRB->IsChecked())
170 0 : nNewLinkMode = NEVER;
171 0 : else if (m_pRequestRB->IsChecked())
172 0 : nNewLinkMode = MANUAL;
173 :
174 0 : SwFieldUpdateFlags eFieldFlags = m_pAutoUpdateFields->IsChecked() ?
175 0 : m_pAutoUpdateCharts->IsChecked() ? AUTOUPD_FIELD_AND_CHARTS : AUTOUPD_FIELD_ONLY : AUTOUPD_OFF;
176 :
177 0 : if(m_pAutoUpdateFields->IsValueChangedFromSaved() ||
178 0 : m_pAutoUpdateCharts->IsValueChangedFromSaved())
179 : {
180 0 : pMod->ApplyFieldUpdateFlags(eFieldFlags);
181 0 : if(m_pWrtShell)
182 : {
183 0 : m_pWrtShell->SetFieldUpdateFlags(eFieldFlags);
184 0 : m_pWrtShell->SetModified();
185 : }
186 : }
187 :
188 0 : if (nNewLinkMode != m_nOldLinkMode)
189 : {
190 0 : pMod->ApplyLinkMode(nNewLinkMode);
191 0 : if (m_pWrtShell)
192 : {
193 0 : m_pWrtShell->SetLinkUpdMode( nNewLinkMode );
194 0 : m_pWrtShell->SetModified();
195 : }
196 :
197 0 : bRet = true;
198 : }
199 :
200 0 : const sal_Int32 nMPos = m_pMetricLB->GetSelectEntryPos();
201 0 : if ( m_pMetricLB->IsValueChangedFromSaved() )
202 : {
203 : // Double-Cast for VA3.0
204 0 : const sal_uInt16 nFieldUnit = (sal_uInt16)reinterpret_cast<sal_IntPtr>(m_pMetricLB->GetEntryData( nMPos ));
205 0 : rSet->Put( SfxUInt16Item( SID_ATTR_METRIC, nFieldUnit ) );
206 0 : bRet = true;
207 : }
208 :
209 0 : if(m_pTabMF->IsVisible() && m_pTabMF->IsValueChangedFromSaved())
210 : {
211 : rSet->Put(SfxUInt16Item(SID_ATTR_DEFTABSTOP,
212 0 : (sal_uInt16)m_pTabMF->Denormalize(m_pTabMF->GetValue(FUNIT_TWIP))));
213 0 : bRet = true;
214 : }
215 :
216 0 : bool bIsUseCharUnitFlag = m_pUseCharUnit->IsChecked();
217 0 : SvtCJKOptions aCJKOptions;
218 0 : bIsUseCharUnitFlag = bIsUseCharUnitFlag && aCJKOptions.IsAsianTypographyEnabled();
219 0 : if( (bIsUseCharUnitFlag ? 1 : 0) != m_pUseCharUnit->GetSavedValue())
220 : {
221 0 : rSet->Put(SfxBoolItem(SID_ATTR_APPLYCHARUNIT, bIsUseCharUnitFlag ));
222 0 : bRet = true;
223 : }
224 :
225 0 : if( m_pWordCountED->IsValueChangedFromSaved() )
226 : {
227 : std::shared_ptr< comphelper::ConfigurationChanges > batch(
228 0 : comphelper::ConfigurationChanges::create());
229 0 : officecfg::Office::Writer::WordCount::AdditionalSeparators::set(m_pWordCountED->GetText(), batch);
230 0 : batch->commit();
231 0 : bRet = true;
232 : }
233 :
234 0 : if (m_pShowStandardizedPageCount->GetState() != m_pShowStandardizedPageCount->GetSavedValue())
235 : {
236 : std::shared_ptr< comphelper::ConfigurationChanges > batch(
237 0 : comphelper::ConfigurationChanges::create());
238 : officecfg::Office::Writer::WordCount::ShowStandardizedPageCount::set(
239 0 : m_pShowStandardizedPageCount->IsChecked(),
240 0 : batch);
241 0 : batch->commit();
242 0 : bRet = true;
243 : }
244 :
245 0 : if (m_pStandardizedPageSizeNF->GetText() != m_pStandardizedPageSizeNF->GetSavedValue())
246 : {
247 : std::shared_ptr< comphelper::ConfigurationChanges > batch(
248 0 : comphelper::ConfigurationChanges::create());
249 : officecfg::Office::Writer::WordCount::StandardizedPageSize::set(
250 0 : m_pStandardizedPageSizeNF->GetValue(),
251 0 : batch);
252 0 : batch->commit();
253 0 : bRet = true;
254 : }
255 :
256 0 : bool bIsSquaredPageModeFlag = m_pUseSquaredPageMode->IsChecked();
257 0 : if ( bIsSquaredPageModeFlag != static_cast<bool>(m_pUseSquaredPageMode->GetSavedValue()) )
258 : {
259 0 : pMod->ApplyDefaultPageMode( bIsSquaredPageModeFlag );
260 0 : if ( m_pWrtShell )
261 : {
262 0 : SwDoc* pDoc = m_pWrtShell->GetDoc();
263 0 : pDoc->SetDefaultPageMode( bIsSquaredPageModeFlag );
264 0 : m_pWrtShell->SetModified();
265 : }
266 0 : bRet = true;
267 : }
268 :
269 0 : return bRet;
270 : }
271 :
272 0 : void SwLoadOptPage::Reset( const SfxItemSet* rSet)
273 : {
274 0 : const SwMasterUsrPref* pUsrPref = SW_MOD()->GetUsrPref(false);
275 : const SfxPoolItem* pItem;
276 :
277 0 : if(SfxItemState::SET == rSet->GetItemState(FN_PARAM_WRTSHELL, false, &pItem))
278 0 : m_pWrtShell = static_cast<SwWrtShell*>(static_cast<const SwPtrItem*>(pItem)->GetValue());
279 :
280 0 : SwFieldUpdateFlags eFieldFlags = AUTOUPD_GLOBALSETTING;
281 0 : m_nOldLinkMode = GLOBALSETTING;
282 0 : if (m_pWrtShell)
283 : {
284 0 : eFieldFlags = m_pWrtShell->GetFieldUpdateFlags(true);
285 0 : m_nOldLinkMode = m_pWrtShell->GetLinkUpdMode(true);
286 : }
287 0 : if(GLOBALSETTING == m_nOldLinkMode)
288 0 : m_nOldLinkMode = pUsrPref->GetUpdateLinkMode();
289 0 : if(AUTOUPD_GLOBALSETTING == eFieldFlags)
290 0 : eFieldFlags = pUsrPref->GetFieldUpdateFlags();
291 :
292 0 : m_pAutoUpdateFields->Check(eFieldFlags != AUTOUPD_OFF);
293 0 : m_pAutoUpdateCharts->Check(eFieldFlags == AUTOUPD_FIELD_AND_CHARTS);
294 :
295 0 : switch (m_nOldLinkMode)
296 : {
297 0 : case NEVER: m_pNeverRB->Check(); break;
298 0 : case MANUAL: m_pRequestRB->Check(); break;
299 0 : case AUTOMATIC: m_pAlwaysRB->Check(); break;
300 : }
301 :
302 0 : m_pAutoUpdateFields->SaveValue();
303 0 : m_pAutoUpdateCharts->SaveValue();
304 0 : m_pMetricLB->SetNoSelection();
305 0 : if ( rSet->GetItemState( SID_ATTR_METRIC ) >= SfxItemState::DEFAULT )
306 : {
307 0 : const SfxUInt16Item& rItem = static_cast<const SfxUInt16Item&>(rSet->Get( SID_ATTR_METRIC ));
308 0 : FieldUnit eFieldUnit = (FieldUnit)rItem.GetValue();
309 :
310 0 : for ( sal_Int32 i = 0; i < m_pMetricLB->GetEntryCount(); ++i )
311 : {
312 0 : if ( (int)reinterpret_cast<sal_IntPtr>(m_pMetricLB->GetEntryData( i )) == (int)eFieldUnit )
313 : {
314 0 : m_pMetricLB->SelectEntryPos( i );
315 0 : break;
316 : }
317 : }
318 0 : ::SetFieldUnit(*m_pTabMF, eFieldUnit);
319 : }
320 0 : m_pMetricLB->SaveValue();
321 0 : if(SfxItemState::SET == rSet->GetItemState(SID_ATTR_DEFTABSTOP, false, &pItem))
322 : {
323 0 : m_nLastTab = static_cast<const SfxUInt16Item*>(pItem)->GetValue();
324 0 : m_pTabMF->SetValue(m_pTabMF->Normalize(m_nLastTab), FUNIT_TWIP);
325 : }
326 0 : m_pTabMF->SaveValue();
327 :
328 : //default page mode loading
329 0 : if(m_pWrtShell)
330 : {
331 0 : bool bSquaredPageMode = m_pWrtShell->GetDoc()->IsSquaredPageMode();
332 0 : m_pUseSquaredPageMode->Check( bSquaredPageMode );
333 0 : m_pUseSquaredPageMode->SaveValue();
334 : }
335 :
336 0 : if(SfxItemState::SET == rSet->GetItemState(SID_ATTR_APPLYCHARUNIT, false, &pItem))
337 : {
338 0 : bool bUseCharUnit = static_cast<const SfxBoolItem*>(pItem)->GetValue();
339 0 : m_pUseCharUnit->Check(bUseCharUnit);
340 : }
341 : else
342 : {
343 0 : m_pUseCharUnit->Check(pUsrPref->IsApplyCharUnit());
344 : }
345 0 : m_pUseCharUnit->SaveValue();
346 :
347 0 : m_pWordCountED->SetText(officecfg::Office::Writer::WordCount::AdditionalSeparators::get());
348 0 : m_pWordCountED->SaveValue();
349 0 : m_pShowStandardizedPageCount->Check(officecfg::Office::Writer::WordCount::ShowStandardizedPageCount::get());
350 0 : m_pShowStandardizedPageCount->SaveValue();
351 0 : m_pStandardizedPageSizeNF->SetValue(officecfg::Office::Writer::WordCount::StandardizedPageSize::get());
352 0 : m_pStandardizedPageSizeNF->SaveValue();
353 0 : m_pStandardizedPageSizeNF->Enable(m_pShowStandardizedPageCount->IsChecked());
354 0 : }
355 :
356 0 : IMPL_LINK_NOARG(SwLoadOptPage, MetricHdl)
357 : {
358 0 : const sal_Int32 nMPos = m_pMetricLB->GetSelectEntryPos();
359 0 : if(nMPos != LISTBOX_ENTRY_NOTFOUND)
360 : {
361 : // Double-Cast for VA3.0
362 0 : FieldUnit eFieldUnit = (FieldUnit)reinterpret_cast<sal_IntPtr>(m_pMetricLB->GetEntryData( nMPos ));
363 0 : bool bModified = m_pTabMF->IsModified();
364 : long nVal = bModified ?
365 0 : sal::static_int_cast<sal_Int32, sal_Int64 >( m_pTabMF->Denormalize( m_pTabMF->GetValue( FUNIT_TWIP ) )) :
366 0 : m_nLastTab;
367 0 : ::SetFieldUnit( *m_pTabMF, eFieldUnit );
368 0 : m_pTabMF->SetValue( m_pTabMF->Normalize( nVal ), FUNIT_TWIP );
369 0 : if(!bModified)
370 0 : m_pTabMF->ClearModifyFlag();
371 : }
372 :
373 0 : return 0;
374 : }
375 :
376 0 : SwCaptionOptDlg::SwCaptionOptDlg(vcl::Window* pParent, const SfxItemSet& rSet)
377 : : SfxSingleTabDialog(pParent, rSet, "CaptionDialog",
378 0 : "modules/swriter/ui/captiondialog.ui")
379 : {
380 : // create TabPage
381 0 : SetTabPage(SwCaptionOptPage::Create(get_content_area(), &rSet));
382 0 : }
383 :
384 0 : SwCaptionPreview::SwCaptionPreview(vcl::Window* pParent, WinBits nStyle)
385 : : Window(pParent, nStyle)
386 0 : , mbFontInitialized(false)
387 : {
388 0 : Init();
389 0 : }
390 :
391 0 : VCL_BUILDER_DECL_FACTORY(SwCaptionPreview)
392 : {
393 0 : WinBits nBits = 0;
394 0 : OString sBorder = VclBuilder::extractCustomProperty(rMap);
395 0 : if (!sBorder.isEmpty())
396 0 : nBits |= WB_BORDER;
397 0 : rRet = VclPtr<SwCaptionPreview>::Create(pParent, nBits);
398 0 : }
399 :
400 0 : void SwCaptionPreview::Init()
401 : {
402 0 : maDrawPos = Point(4, 6);
403 0 : }
404 :
405 0 : void SwCaptionPreview::ApplySettings(vcl::RenderContext& rRenderContext)
406 : {
407 0 : Wallpaper aBack(rRenderContext.GetSettings().GetStyleSettings().GetWindowColor());
408 0 : rRenderContext.SetBackground(aBack);
409 0 : rRenderContext.SetFillColor(aBack.GetColor());
410 0 : rRenderContext.SetLineColor(aBack.GetColor());
411 :
412 0 : if (!mbFontInitialized)
413 : {
414 0 : maFont = vcl::Font(rRenderContext.GetFont());
415 0 : maFont.SetHeight(maFont.GetHeight() * 120 / 100);
416 0 : mbFontInitialized = true;
417 : }
418 0 : rRenderContext.SetFont(maFont);
419 :
420 0 : SetBorderStyle(WindowBorderStyle::MONO);
421 0 : }
422 :
423 0 : void SwCaptionPreview::SetPreviewText(const OUString& rText)
424 : {
425 0 : if (rText != maText)
426 : {
427 0 : maText = rText;
428 0 : Invalidate();
429 : }
430 0 : }
431 :
432 0 : Size SwCaptionPreview::GetOptimalSize() const
433 : {
434 0 : return LogicToPixel(Size(106 , 20), MapMode(MAP_APPFONT));
435 : }
436 :
437 0 : void SwCaptionPreview::Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect)
438 : {
439 0 : Window::Paint(rRenderContext, rRect);
440 :
441 0 : rRenderContext.DrawRect(Rectangle(Point(0, 0), GetSizePixel()));
442 0 : rRenderContext.DrawText(Point(4, 6), maText);
443 0 : }
444 :
445 0 : SwCaptionOptPage::SwCaptionOptPage(vcl::Window* pParent, const SfxItemSet& rSet)
446 : : SfxTabPage(pParent, "OptCaptionPage", "modules/swriter/ui/optcaptionpage.ui", &rSet)
447 : , m_sSWTable(SW_RESSTR(STR_CAPTION_TABLE))
448 : , m_sSWFrame(SW_RESSTR(STR_CAPTION_FRAME))
449 : , m_sSWGraphic(SW_RESSTR(STR_CAPTION_GRAPHIC))
450 : , m_sOLE(SW_RESSTR(STR_CAPTION_OLE))
451 : , m_sBegin(SW_RESSTR(STR_CAPTION_BEGINNING))
452 : , m_sEnd(SW_RESSTR(STR_CAPTION_END))
453 : , m_sAbove(SW_RESSTR(STR_CAPTION_ABOVE))
454 : , m_sBelow(SW_RESSTR(STR_CAPTION_BELOW))
455 : , m_sNone(SW_RESSTR(SW_STR_NONE))
456 0 : , pMgr(new SwFieldMgr())
457 0 : , bHTMLMode(false)
458 : {
459 0 : get(m_pCheckLB, "objects");
460 0 : get(m_pLbCaptionOrder, "captionorder");
461 0 : get(m_pPreview, "preview");
462 0 : get(m_pSettingsGroup, "settings");
463 0 : get(m_pCategoryBox, "category");
464 0 : get(m_pFormatText, "numberingft");
465 0 : get(m_pFormatBox, "numbering");
466 0 : get(m_pNumberingSeparatorFT, "numseparatorft");
467 0 : get(m_pNumberingSeparatorED, "numseparator");
468 0 : get(m_pTextText, "separatorft");
469 0 : get(m_pTextEdit, "separator");
470 0 : get(m_pPosBox, "position");
471 0 : get(m_pNumCapt, "numcaption");
472 0 : get(m_pLbLevel, "level");
473 0 : get(m_pEdDelim, "chapseparator");
474 0 : get(m_pCategory, "categoryformat");
475 0 : get(m_pCharStyleLB, "charstyle");
476 0 : get(m_pApplyBorderCB, "applyborder");
477 :
478 0 : SwStyleNameMapper::FillUIName(RES_POOLCOLL_LABEL_ABB, m_sIllustration);
479 0 : SwStyleNameMapper::FillUIName(RES_POOLCOLL_LABEL_TABLE, m_sTable);
480 0 : SwStyleNameMapper::FillUIName(RES_POOLCOLL_LABEL_FRAME, m_sText);
481 0 : SwStyleNameMapper::FillUIName(RES_POOLCOLL_LABEL_DRAWING, m_sDrawing);
482 :
483 0 : SwWrtShell* pSh = ::GetActiveWrtShell();
484 :
485 : // m_pFormatBox
486 0 : sal_uInt16 nSelFormat = SVX_NUM_ARABIC;
487 0 : if (pSh)
488 : {
489 0 : for ( auto i = pMgr->GetFieldTypeCount(); i; )
490 : {
491 0 : SwFieldType* pFieldType = pMgr->GetFieldType(USHRT_MAX, --i);
492 0 : if (pFieldType->GetName().equals(m_pCategoryBox->GetText()))
493 : {
494 0 : nSelFormat = (sal_uInt16)static_cast<SwSetExpFieldType*>(pFieldType)->GetSeqFormat();
495 0 : break;
496 : }
497 : }
498 :
499 0 : ::FillCharStyleListBox( *m_pCharStyleLB, pSh->GetView().GetDocShell(), true, true );
500 : }
501 :
502 0 : const sal_uInt16 nCount = pMgr->GetFormatCount(TYP_SEQFLD, false);
503 0 : for ( sal_uInt16 i = 0; i < nCount; ++i )
504 : {
505 0 : m_pFormatBox->InsertEntry( pMgr->GetFormatStr(TYP_SEQFLD, i) );
506 0 : const sal_uInt16 nFormatId = pMgr->GetFormatId(TYP_SEQFLD, i);
507 0 : m_pFormatBox->SetEntryData( i, reinterpret_cast<void*>(nFormatId) );
508 0 : if( nFormatId == nSelFormat )
509 0 : m_pFormatBox->SelectEntryPos( i );
510 : }
511 :
512 0 : for (int i = 0; i < MAXLEVEL; ++i)
513 0 : m_pLbLevel->InsertEntry(OUString::number(i + 1));
514 :
515 0 : sal_Unicode nLvl = MAXLEVEL;
516 0 : OUString sDelim(": ");
517 :
518 0 : if (pSh)
519 : {
520 : SwSetExpFieldType* pFieldType = static_cast<SwSetExpFieldType*>(pMgr->GetFieldType(
521 0 : RES_SETEXPFLD, m_pCategoryBox->GetText() ));
522 0 : if( pFieldType )
523 : {
524 0 : sDelim = pFieldType->GetDelimiter();
525 0 : nLvl = pFieldType->GetOutlineLvl();
526 : }
527 : }
528 :
529 0 : m_pLbLevel->SelectEntryPos( nLvl < MAXLEVEL ? nLvl + 1 : 0 );
530 0 : m_pEdDelim->SetText( sDelim );
531 :
532 0 : Link<> aLk = LINK( this, SwCaptionOptPage, ModifyHdl );
533 0 : m_pCategoryBox->SetModifyHdl( aLk );
534 0 : m_pNumberingSeparatorED->SetModifyHdl( aLk );
535 0 : m_pTextEdit->SetModifyHdl( aLk );
536 :
537 0 : aLk = LINK(this, SwCaptionOptPage, SelectHdl);
538 0 : m_pCategoryBox->SetSelectHdl( aLk );
539 0 : m_pFormatBox->SetSelectHdl( aLk );
540 :
541 0 : m_pLbCaptionOrder->SetSelectHdl( LINK(this, SwCaptionOptPage, OrderHdl));
542 :
543 0 : m_pCheckLB->SetSelectHdl( LINK(this, SwCaptionOptPage, ShowEntryHdl) );
544 0 : m_pCheckLB->SetCheckButtonHdl( LINK(this, SwCaptionOptPage, ShowEntryHdl) );
545 0 : m_pCheckLB->SetDeselectHdl( LINK(this, SwCaptionOptPage, SaveEntryHdl) );
546 0 : }
547 :
548 0 : SwCaptionOptPage::~SwCaptionOptPage()
549 : {
550 0 : disposeOnce();
551 0 : }
552 :
553 0 : void SwCaptionOptPage::dispose()
554 : {
555 0 : DelUserData();
556 0 : delete pMgr;
557 0 : m_pCheckLB.clear();
558 0 : m_pLbCaptionOrder.clear();
559 0 : m_pPreview.clear();
560 0 : m_pSettingsGroup.clear();
561 0 : m_pCategoryBox.clear();
562 0 : m_pFormatText.clear();
563 0 : m_pFormatBox.clear();
564 0 : m_pNumberingSeparatorFT.clear();
565 0 : m_pNumberingSeparatorED.clear();
566 0 : m_pTextText.clear();
567 0 : m_pTextEdit.clear();
568 0 : m_pPosBox.clear();
569 0 : m_pNumCapt.clear();
570 0 : m_pLbLevel.clear();
571 0 : m_pEdDelim.clear();
572 0 : m_pCategory.clear();
573 0 : m_pCharStyleLB.clear();
574 0 : m_pApplyBorderCB.clear();
575 0 : SfxTabPage::dispose();
576 0 : }
577 :
578 0 : VclPtr<SfxTabPage> SwCaptionOptPage::Create( vcl::Window* pParent,
579 : const SfxItemSet* rAttrSet )
580 : {
581 0 : return VclPtr<SwCaptionOptPage>::Create( pParent, *rAttrSet );
582 : }
583 :
584 0 : bool SwCaptionOptPage::FillItemSet( SfxItemSet* )
585 : {
586 0 : bool bRet = false;
587 0 : SwModuleOptions* pModOpt = SW_MOD()->GetModuleConfig();
588 :
589 0 : SaveEntry(m_pCheckLB->FirstSelected()); // apply current entry
590 :
591 0 : SvTreeListEntry* pEntry = m_pCheckLB->First();
592 :
593 0 : while (pEntry)
594 : {
595 0 : InsCaptionOpt* pData = static_cast<InsCaptionOpt*>(pEntry->GetUserData());
596 0 : bRet |= pModOpt->SetCapOption(bHTMLMode, pData);
597 0 : pEntry = m_pCheckLB->Next(pEntry);
598 : }
599 :
600 0 : sal_uLong nCheckCount = m_pCheckLB->GetCheckedEntryCount();
601 0 : pModOpt->SetInsWithCaption( bHTMLMode, nCheckCount > 0 );
602 :
603 0 : sal_Int32 nPos = m_pLbCaptionOrder->GetSelectEntryPos();
604 0 : pModOpt->SetCaptionOrderNumberingFirst(nPos == 1);
605 :
606 0 : return bRet;
607 : }
608 :
609 0 : void SwCaptionOptPage::Reset( const SfxItemSet* rSet)
610 : {
611 : const SfxPoolItem* pItem;
612 0 : if(SfxItemState::SET == rSet->GetItemState(SID_HTML_MODE, false, &pItem))
613 : {
614 0 : bHTMLMode = 0 != (static_cast<const SfxUInt16Item*>(pItem)->GetValue() & HTMLMODE_ON);
615 : }
616 :
617 0 : DelUserData();
618 0 : m_pCheckLB->GetModel()->Clear(); // remove all entries
619 :
620 : // Writer objects
621 0 : sal_uLong nPos = 0;
622 0 : m_pCheckLB->InsertEntry(m_sSWTable);
623 0 : SetOptions(nPos++, TABLE_CAP);
624 0 : m_pCheckLB->InsertEntry(m_sSWFrame);
625 0 : SetOptions(nPos++, FRAME_CAP);
626 0 : m_pCheckLB->InsertEntry(m_sSWGraphic);
627 0 : SetOptions(nPos++, GRAPHIC_CAP);
628 :
629 : // get Productname and -version
630 0 : const OUString sWithoutVersion( utl::ConfigManager::getProductName() );
631 : const OUString sComplete(
632 0 : sWithoutVersion + " " +
633 0 : utl::ConfigManager::getProductVersion() );
634 :
635 0 : SvObjectServerList aObjS;
636 0 : aObjS.FillInsertObjects();
637 0 : aObjS.Remove( SvGlobalName( SO3_SW_CLASSID ) ); // remove Writer-ID
638 :
639 0 : for ( sal_uLong i = 0; i < aObjS.Count(); ++i )
640 : {
641 0 : const SvGlobalName &rOleId = aObjS[i].GetClassName();
642 0 : OUString sClass;
643 0 : if (rOleId == SvGlobalName(SO3_OUT_CLASSID))
644 0 : sClass = m_sOLE;
645 : else
646 0 : sClass = aObjS[i].GetHumanName();
647 : // don't show product version
648 0 : sClass = sClass.replaceFirst( sComplete, sWithoutVersion );
649 0 : m_pCheckLB->InsertEntry( sClass );
650 0 : SetOptions( nPos++, OLE_CAP, &rOleId );
651 0 : }
652 : m_pLbCaptionOrder->SelectEntryPos(
653 0 : SW_MOD()->GetModuleConfig()->IsCaptionOrderNumberingFirst() ? 1 : 0);
654 0 : ModifyHdl();
655 0 : }
656 :
657 0 : void SwCaptionOptPage::SetOptions(const sal_uLong nPos,
658 : const SwCapObjType eObjType, const SvGlobalName *pOleId)
659 : {
660 0 : SwModuleOptions* pModOpt = SW_MOD()->GetModuleConfig();
661 0 : const InsCaptionOpt* pOpt = pModOpt->GetCapOption(bHTMLMode, eObjType, pOleId);
662 :
663 0 : if (pOpt)
664 : {
665 0 : m_pCheckLB->SetEntryData(nPos, new InsCaptionOpt(*pOpt));
666 0 : m_pCheckLB->CheckEntryPos(nPos, pOpt->UseCaption());
667 : }
668 : else
669 0 : m_pCheckLB->SetEntryData(nPos, new InsCaptionOpt(eObjType, pOleId));
670 0 : }
671 :
672 0 : void SwCaptionOptPage::DelUserData()
673 : {
674 0 : SvTreeListEntry* pEntry = m_pCheckLB->First();
675 :
676 0 : while (pEntry)
677 : {
678 0 : delete static_cast<InsCaptionOpt*>(pEntry->GetUserData());
679 0 : pEntry->SetUserData(0);
680 0 : pEntry = m_pCheckLB->Next(pEntry);
681 : }
682 0 : }
683 :
684 0 : IMPL_LINK_NOARG(SwCaptionOptPage, ShowEntryHdl)
685 : {
686 0 : SvTreeListEntry* pSelEntry = m_pCheckLB->FirstSelected();
687 :
688 0 : if (pSelEntry)
689 : {
690 0 : bool bChecked = m_pCheckLB->IsChecked(m_pCheckLB->GetModel()->GetAbsPos(pSelEntry));
691 :
692 0 : m_pSettingsGroup->Enable(bChecked);
693 0 : bool bNumSep = bChecked && m_pLbCaptionOrder->GetSelectEntryPos() == 1;
694 0 : m_pNumberingSeparatorED->Enable( bNumSep );
695 0 : m_pNumberingSeparatorFT->Enable( bNumSep );
696 :
697 0 : m_pNumCapt->Enable(bChecked);
698 0 : m_pCategory->Enable(bChecked);
699 0 : m_pPreview->Enable(bChecked);
700 :
701 0 : SwWrtShell *pSh = ::GetActiveWrtShell();
702 :
703 0 : InsCaptionOpt* pOpt = static_cast<InsCaptionOpt*>(pSelEntry->GetUserData());
704 :
705 0 : m_pCategoryBox->Clear();
706 0 : m_pCategoryBox->InsertEntry(m_sNone);
707 0 : if (pSh)
708 : {
709 0 : const size_t nCount = pMgr->GetFieldTypeCount();
710 :
711 0 : for (size_t i = 0; i < nCount; ++i)
712 : {
713 0 : SwFieldType *pType = pMgr->GetFieldType( USHRT_MAX, i );
714 0 : if( pType->Which() == RES_SETEXPFLD &&
715 0 : static_cast<SwSetExpFieldType *>( pType)->GetType() & nsSwGetSetExpType::GSE_SEQ )
716 0 : m_pCategoryBox->InsertSwEntry(SwBoxEntry(pType->GetName()));
717 : }
718 : }
719 : else
720 : {
721 0 : m_pCategoryBox->InsertSwEntry(SwBoxEntry(m_sIllustration));
722 0 : m_pCategoryBox->InsertSwEntry(SwBoxEntry(m_sTable));
723 0 : m_pCategoryBox->InsertSwEntry(SwBoxEntry(m_sText));
724 0 : m_pCategoryBox->InsertSwEntry(SwBoxEntry(m_sDrawing));
725 : }
726 :
727 0 : if(!pOpt->GetCategory().isEmpty())
728 0 : m_pCategoryBox->SetText(pOpt->GetCategory());
729 : else
730 0 : m_pCategoryBox->SetText(m_sNone);
731 0 : if (!pOpt->GetCategory().isEmpty() &&
732 0 : m_pCategoryBox->GetEntryPos(pOpt->GetCategory()) == COMBOBOX_ENTRY_NOTFOUND)
733 0 : m_pCategoryBox->InsertEntry(pOpt->GetCategory());
734 0 : if (m_pCategoryBox->GetText().isEmpty())
735 : {
736 0 : sal_Int32 nPos = 0;
737 0 : switch(pOpt->GetObjType())
738 : {
739 : case OLE_CAP:
740 0 : case GRAPHIC_CAP: nPos = 1; break;
741 0 : case TABLE_CAP: nPos = 2; break;
742 0 : case FRAME_CAP: nPos = 3; break;
743 : }
744 0 : m_pCategoryBox->SetText(m_pCategoryBox->GetSwEntry(nPos).GetName());
745 : }
746 :
747 0 : for (sal_Int32 i = 0; i < m_pFormatBox->GetEntryCount(); i++)
748 : {
749 0 : if (pOpt->GetNumType() == (sal_uInt16)reinterpret_cast<sal_uLong>(m_pFormatBox->GetEntryData(i)))
750 : {
751 0 : m_pFormatBox->SelectEntryPos(i);
752 0 : break;
753 : }
754 : }
755 0 : m_pTextEdit->SetText(pOpt->GetCaption());
756 :
757 0 : m_pPosBox->Clear();
758 0 : switch (pOpt->GetObjType())
759 : {
760 : case GRAPHIC_CAP:
761 : case TABLE_CAP:
762 : case OLE_CAP:
763 0 : m_pPosBox->InsertEntry(m_sAbove);
764 0 : m_pPosBox->InsertEntry(m_sBelow);
765 0 : break;
766 : case FRAME_CAP:
767 0 : m_pPosBox->InsertEntry(m_sBegin);
768 0 : m_pPosBox->InsertEntry(m_sEnd);
769 0 : break;
770 : }
771 0 : m_pPosBox->SelectEntryPos(pOpt->GetPos());
772 0 : m_pPosBox->Enable( pOpt->GetObjType() != GRAPHIC_CAP &&
773 0 : pOpt->GetObjType() != OLE_CAP &&
774 0 : m_pPosBox->IsEnabled() );
775 0 : m_pPosBox->SelectEntryPos(pOpt->GetPos());
776 :
777 0 : sal_Int32 nLevelPos = ( pOpt->GetLevel() < MAXLEVEL ) ? pOpt->GetLevel() + 1 : 0;
778 0 : m_pLbLevel->SelectEntryPos( nLevelPos );
779 0 : m_pEdDelim->SetText(pOpt->GetSeparator());
780 0 : m_pNumberingSeparatorED->SetText( pOpt->GetNumSeparator() );
781 0 : if(!pOpt->GetCharacterStyle().isEmpty())
782 0 : m_pCharStyleLB->SelectEntry( pOpt->GetCharacterStyle() );
783 : else
784 0 : m_pCharStyleLB->SelectEntryPos( 0 );
785 0 : m_pApplyBorderCB->Enable( m_pCategoryBox->IsEnabled() &&
786 0 : pOpt->GetObjType() != TABLE_CAP && pOpt->GetObjType() != FRAME_CAP );
787 0 : m_pApplyBorderCB->Check( pOpt->CopyAttributes() );
788 : }
789 :
790 0 : ModifyHdl();
791 :
792 0 : return 0;
793 : }
794 :
795 0 : IMPL_LINK_NOARG(SwCaptionOptPage, SaveEntryHdl)
796 : {
797 0 : SvTreeListEntry* pEntry = m_pCheckLB->GetHdlEntry();
798 :
799 0 : if (pEntry) // save all
800 0 : SaveEntry(pEntry);
801 :
802 0 : return 0;
803 : }
804 :
805 0 : void SwCaptionOptPage::SaveEntry(SvTreeListEntry* pEntry)
806 : {
807 0 : if (pEntry)
808 : {
809 0 : InsCaptionOpt* pOpt = static_cast<InsCaptionOpt*>(pEntry->GetUserData());
810 :
811 0 : pOpt->UseCaption() = m_pCheckLB->IsChecked(m_pCheckLB->GetModel()->GetAbsPos(pEntry));
812 0 : const OUString aName( m_pCategoryBox->GetText() );
813 0 : if (aName == m_sNone)
814 0 : pOpt->SetCategory("");
815 : else
816 0 : pOpt->SetCategory(comphelper::string::strip(aName, ' '));
817 0 : pOpt->SetNumType((sal_uInt16)reinterpret_cast<sal_uLong>(m_pFormatBox->GetSelectEntryData()));
818 0 : pOpt->SetCaption(m_pTextEdit->IsEnabled() ? m_pTextEdit->GetText() : OUString() );
819 0 : pOpt->SetPos(m_pPosBox->GetSelectEntryPos());
820 0 : sal_Int32 nPos = m_pLbLevel->GetSelectEntryPos();
821 0 : sal_Int32 nLevel = ( nPos > 0 && nPos != LISTBOX_ENTRY_NOTFOUND ) ? nPos - 1 : MAXLEVEL;
822 0 : pOpt->SetLevel(nLevel);
823 0 : pOpt->SetSeparator(m_pEdDelim->GetText());
824 0 : pOpt->SetNumSeparator( m_pNumberingSeparatorED->GetText());
825 0 : if(!m_pCharStyleLB->GetSelectEntryPos())
826 0 : pOpt->SetCharacterStyle("");
827 : else
828 0 : pOpt->SetCharacterStyle(m_pCharStyleLB->GetSelectEntry());
829 0 : pOpt->CopyAttributes() = m_pApplyBorderCB->IsChecked();
830 : }
831 0 : }
832 :
833 0 : IMPL_LINK_NOARG(SwCaptionOptPage, ModifyHdl)
834 : {
835 0 : const OUString sFieldTypeName = m_pCategoryBox->GetText();
836 :
837 0 : SfxSingleTabDialog *pDlg = dynamic_cast<SfxSingleTabDialog*>(GetParentDialog());
838 0 : PushButton *pBtn = pDlg ? pDlg->GetOKButton() : NULL;
839 0 : if (pBtn)
840 0 : pBtn->Enable(!sFieldTypeName.isEmpty());
841 0 : bool bEnable = m_pCategoryBox->IsEnabled() && sFieldTypeName != m_sNone;
842 :
843 0 : m_pFormatText->Enable(bEnable);
844 0 : m_pFormatBox->Enable(bEnable);
845 0 : m_pTextText->Enable(bEnable);
846 0 : m_pTextEdit->Enable(bEnable);
847 :
848 0 : InvalidatePreview();
849 0 : return 0;
850 : }
851 :
852 0 : IMPL_LINK_NOARG(SwCaptionOptPage, SelectHdl)
853 : {
854 0 : InvalidatePreview();
855 0 : return 0;
856 : }
857 :
858 0 : IMPL_LINK( SwCaptionOptPage, OrderHdl, ListBox*, pBox )
859 : {
860 0 : InvalidatePreview();
861 :
862 0 : SvTreeListEntry* pSelEntry = m_pCheckLB->FirstSelected();
863 0 : bool bChecked = false;
864 0 : if (pSelEntry)
865 : {
866 0 : bChecked = m_pCheckLB->IsChecked(m_pCheckLB->GetModel()->GetAbsPos(pSelEntry));
867 : }
868 :
869 0 : sal_Int32 nPos = pBox->GetSelectEntryPos();
870 0 : m_pNumberingSeparatorFT->Enable( bChecked && nPos == 1 );
871 0 : m_pNumberingSeparatorED->Enable( bChecked && nPos == 1 );
872 0 : return 0;
873 : }
874 :
875 0 : void SwCaptionOptPage::InvalidatePreview()
876 : {
877 0 : OUString aStr;
878 :
879 0 : if( m_pCategoryBox->GetText() != m_sNone)
880 : {
881 : //#i61007# order of captions
882 0 : bool bOrderNumberingFirst = m_pLbCaptionOrder->GetSelectEntryPos() == 1;
883 : // number
884 : const sal_uInt16 nNumFormat = (sal_uInt16)reinterpret_cast<sal_uLong>(m_pFormatBox->GetEntryData(
885 0 : m_pFormatBox->GetSelectEntryPos() ));
886 0 : if( SVX_NUM_NUMBER_NONE != nNumFormat )
887 : {
888 : //#i61007# order of captions
889 0 : if( !bOrderNumberingFirst )
890 : {
891 : // category
892 0 : aStr += m_pCategoryBox->GetText() + " ";
893 : }
894 :
895 0 : SwWrtShell *pSh = ::GetActiveWrtShell();
896 0 : if (pSh)
897 : {
898 : SwSetExpFieldType* pFieldType = static_cast<SwSetExpFieldType*>(pMgr->GetFieldType(
899 0 : RES_SETEXPFLD, m_pCategoryBox->GetText() ));
900 0 : if( pFieldType && pFieldType->GetOutlineLvl() < MAXLEVEL )
901 : {
902 0 : sal_uInt8 nLvl = pFieldType->GetOutlineLvl();
903 0 : SwNumberTree::tNumberVector aNumVector;
904 0 : for( sal_uInt8 i = 0; i <= nLvl; ++i )
905 0 : aNumVector.push_back(1);
906 :
907 : const OUString sNumber( pSh->GetOutlineNumRule()->MakeNumString(
908 0 : aNumVector, false ));
909 0 : if( !sNumber.isEmpty() )
910 0 : aStr += sNumber + pFieldType->GetDelimiter();
911 : }
912 : }
913 :
914 0 : switch( nNumFormat )
915 : {
916 0 : case SVX_NUM_CHARS_UPPER_LETTER: aStr += "A"; break;
917 0 : case SVX_NUM_CHARS_UPPER_LETTER_N: aStr += "A"; break;
918 0 : case SVX_NUM_CHARS_LOWER_LETTER: aStr += "a"; break;
919 0 : case SVX_NUM_CHARS_LOWER_LETTER_N: aStr += "a"; break;
920 0 : case SVX_NUM_ROMAN_UPPER: aStr += "I"; break;
921 0 : case SVX_NUM_ROMAN_LOWER: aStr += "i"; break;
922 : //case ARABIC:
923 0 : default: aStr += "1"; break;
924 : }
925 : }
926 : //#i61007# order of captions
927 0 : if( bOrderNumberingFirst )
928 : {
929 0 : aStr += m_pNumberingSeparatorED->GetText() + m_pCategoryBox->GetText();
930 : }
931 0 : aStr += m_pTextEdit->GetText();
932 : }
933 0 : m_pPreview->SetPreviewText(aStr);
934 0 : }
935 :
936 : // Description: ComboBox without Spaces
937 0 : void CaptionComboBox::KeyInput(const KeyEvent& rEvt)
938 : {
939 0 : if (rEvt.GetKeyCode().GetCode() != KEY_SPACE)
940 0 : SwComboBox::KeyInput(rEvt);
941 0 : }
942 :
943 0 : VCL_BUILDER_DECL_FACTORY(CaptionComboBox)
944 : {
945 0 : WinBits nBits = WB_CLIPCHILDREN|WB_LEFT|WB_VCENTER|WB_3DLOOK;
946 0 : bool bDropdown = VclBuilder::extractDropdown(rMap);
947 0 : if (bDropdown)
948 0 : nBits |= WB_DROPDOWN;
949 0 : VclPtrInstance<CaptionComboBox> pComboBox(pParent, nBits);
950 0 : pComboBox->EnableAutoSize(true);
951 0 : rRet = pComboBox;
952 0 : }
953 :
954 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|