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 : #ifndef INCLUDED_CUI_SOURCE_INC_NUMPAGES_HXX
20 : #define INCLUDED_CUI_SOURCE_INC_NUMPAGES_HXX
21 :
22 : #include <vector>
23 : #include <boost/ptr_container/ptr_vector.hpp>
24 :
25 : #include <sfx2/tabdlg.hxx>
26 : #include <vcl/group.hxx>
27 : #include <vcl/fixed.hxx>
28 : #include <vcl/menubtn.hxx>
29 : #include <vcl/lstbox.hxx>
30 : #include <vcl/edit.hxx>
31 : #include <vcl/field.hxx>
32 : #include <editeng/numdef.hxx>
33 : #include <svtools/ctrlbox.hxx>
34 :
35 :
36 : class SvxNumRule;
37 : class SvxBmpNumValueSet;
38 : class SvxNumValueSet;
39 : class SvxBrushItem;
40 :
41 0 : class SvxNumberingPreview : public Window
42 : {
43 : const SvxNumRule* pActNum;
44 : Font aStdFont;
45 : long nPageWidth;
46 : const OUString* pOutlineNames;
47 : sal_Bool bPosition;
48 : sal_uInt16 nActLevel;
49 :
50 : protected:
51 : virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
52 :
53 : public:
54 : SvxNumberingPreview(Window* pParent, WinBits nWinBits = WB_BORDER);
55 :
56 0 : void SetNumRule(const SvxNumRule* pNum)
57 0 : {pActNum = pNum; Invalidate();};
58 : void SetPageWidth(long nPgWidth)
59 : {nPageWidth = nPgWidth;}
60 : void SetOutlineNames(const OUString* pNames)
61 : {pOutlineNames = pNames;}
62 0 : void SetPositionMode()
63 0 : { bPosition = sal_True;}
64 0 : void SetLevel(sal_uInt16 nSet) {nActLevel = nSet;}
65 :
66 : };
67 :
68 :
69 :
70 0 : struct SvxNumSettings_Impl
71 : {
72 : short nNumberType;
73 : short nParentNumbering;
74 : OUString sPrefix;
75 : OUString sSuffix;
76 : OUString sBulletChar;
77 : OUString sBulletFont;
78 0 : SvxNumSettings_Impl() :
79 : nNumberType(0),
80 0 : nParentNumbering(0)
81 0 : {}
82 : };
83 :
84 : typedef boost::ptr_vector<SvxNumSettings_Impl> SvxNumSettingsArr_Impl;
85 :
86 :
87 :
88 : class SvxSingleNumPickTabPage : public SfxTabPage
89 : {
90 : using TabPage::ActivatePage;
91 : using TabPage::DeactivatePage;
92 :
93 : SvxNumValueSet* m_pExamplesVS;
94 : SvxNumSettingsArr_Impl aNumSettingsArr;
95 : SvxNumRule* pActNum;
96 : SvxNumRule* pSaveNum;
97 : sal_uInt16 nActNumLvl;
98 : sal_Bool bModified : 1;
99 : sal_Bool bPreset : 1;
100 :
101 : OUString sNumCharFmtName;
102 : sal_uInt16 nNumItemId;
103 :
104 : protected:
105 : DECL_LINK(NumSelectHdl_Impl, void *);
106 : DECL_LINK(DoubleClickHdl_Impl, void *);
107 :
108 : public:
109 : SvxSingleNumPickTabPage(Window* pParent,
110 : const SfxItemSet& rSet);
111 : virtual ~SvxSingleNumPickTabPage();
112 :
113 : static SfxTabPage* Create( Window* pParent,
114 : const SfxItemSet& rAttrSet);
115 :
116 : virtual void ActivatePage(const SfxItemSet& rSet) SAL_OVERRIDE;
117 : virtual int DeactivatePage(SfxItemSet *pSet) SAL_OVERRIDE;
118 : virtual bool FillItemSet( SfxItemSet& rSet ) SAL_OVERRIDE;
119 : virtual void Reset( const SfxItemSet& rSet ) SAL_OVERRIDE;
120 :
121 : void SetNumCharFmtName(const OUString& rName){sNumCharFmtName = rName;}
122 : };
123 :
124 :
125 :
126 :
127 : class SvxBulletPickTabPage : public SfxTabPage
128 : {
129 : using TabPage::ActivatePage;
130 : using TabPage::DeactivatePage;
131 :
132 : SvxNumValueSet* m_pExamplesVS;
133 : SvxNumRule* pActNum;
134 : SvxNumRule* pSaveNum;
135 : sal_uInt16 nActNumLvl;
136 : sal_Bool bModified : 1;
137 : sal_Bool bPreset : 1;
138 : sal_uInt16 nNumItemId;
139 :
140 : OUString sBulletCharFmtName;
141 : protected:
142 : DECL_LINK(NumSelectHdl_Impl, void *);
143 : DECL_LINK(DoubleClickHdl_Impl, void *);
144 : public:
145 : SvxBulletPickTabPage(Window* pParent,
146 : const SfxItemSet& rSet);
147 : virtual ~SvxBulletPickTabPage();
148 :
149 : static SfxTabPage* Create( Window* pParent,
150 : const SfxItemSet& rAttrSet);
151 :
152 : virtual void ActivatePage(const SfxItemSet& rSet) SAL_OVERRIDE;
153 : virtual int DeactivatePage(SfxItemSet *pSet) SAL_OVERRIDE;
154 : virtual bool FillItemSet( SfxItemSet& rSet ) SAL_OVERRIDE;
155 : virtual void Reset( const SfxItemSet& rSet ) SAL_OVERRIDE;
156 :
157 0 : void SetCharFmtName(const OUString& rName){sBulletCharFmtName = rName;}
158 : virtual void PageCreated(SfxAllItemSet aSet) SAL_OVERRIDE;
159 : };
160 :
161 : #define NUM_VALUSET_COUNT 16
162 :
163 : /// TabPage for complete numeration
164 : class SvxNumPickTabPage : public SfxTabPage
165 : {
166 : using TabPage::ActivatePage;
167 : using TabPage::DeactivatePage;
168 :
169 : SvxNumValueSet* m_pExamplesVS;
170 : OUString sNumCharFmtName;
171 : OUString sBulletCharFmtName;
172 :
173 : SvxNumSettingsArr_Impl aNumSettingsArrays[NUM_VALUSET_COUNT]; // is initialized with the five formats
174 :
175 : SvxNumRule* pActNum;
176 : SvxNumRule* pSaveNum;
177 : sal_uInt16 nActNumLvl;
178 : sal_uInt16 nNumItemId;
179 : sal_Bool bModified : 1;
180 : sal_Bool bPreset : 1;
181 :
182 :
183 : protected:
184 : DECL_LINK(NumSelectHdl_Impl, void *);
185 : DECL_LINK(DoubleClickHdl_Impl, void *);
186 :
187 : public:
188 : SvxNumPickTabPage(Window* pParent,
189 : const SfxItemSet& rSet);
190 : virtual ~SvxNumPickTabPage();
191 :
192 : static SfxTabPage* Create( Window* pParent,
193 : const SfxItemSet& rAttrSet);
194 :
195 : virtual void ActivatePage(const SfxItemSet& rSet) SAL_OVERRIDE;
196 : virtual int DeactivatePage(SfxItemSet *pSet) SAL_OVERRIDE;
197 : virtual bool FillItemSet( SfxItemSet& rSet ) SAL_OVERRIDE;
198 : virtual void Reset( const SfxItemSet& rSet ) SAL_OVERRIDE;
199 :
200 0 : void SetCharFmtNames(const OUString& rCharName, const OUString& rBulName)
201 0 : { sNumCharFmtName = rCharName;
202 0 : sBulletCharFmtName = rBulName;}
203 : virtual void PageCreated(SfxAllItemSet aSet) SAL_OVERRIDE;
204 : };
205 :
206 :
207 :
208 : class SvxBitmapPickTabPage : public SfxTabPage
209 : {
210 : using TabPage::ActivatePage;
211 : using TabPage::DeactivatePage;
212 :
213 : FixedText* m_pErrorText;
214 : SvxBmpNumValueSet* m_pExamplesVS;
215 :
216 : std::vector<OUString> aGrfNames;
217 : OUString sNumCharFmtName;
218 :
219 : SvxNumRule* pActNum;
220 : SvxNumRule* pSaveNum;
221 : sal_uInt16 nActNumLvl;
222 : sal_uInt16 nNumItemId;
223 : SfxMapUnit eCoreUnit;
224 : sal_Bool bModified : 1;
225 : sal_Bool bPreset : 1;
226 :
227 : protected:
228 : DECL_LINK(NumSelectHdl_Impl, void *);
229 : DECL_LINK(DoubleClickHdl_Impl, void *);
230 : DECL_LINK(LinkBmpHdl_Impl, void *);
231 :
232 : public:
233 : SvxBitmapPickTabPage(Window* pParent,
234 : const SfxItemSet& rSet);
235 : virtual ~SvxBitmapPickTabPage();
236 :
237 : static SfxTabPage* Create( Window* pParent,
238 : const SfxItemSet& rAttrSet);
239 :
240 : virtual void ActivatePage(const SfxItemSet& rSet) SAL_OVERRIDE;
241 : virtual int DeactivatePage(SfxItemSet *pSet) SAL_OVERRIDE;
242 : virtual bool FillItemSet( SfxItemSet& rSet ) SAL_OVERRIDE;
243 : virtual void Reset( const SfxItemSet& rSet ) SAL_OVERRIDE;
244 :
245 : void SetNumCharFmtName(const OUString& rName){sNumCharFmtName = rName;}
246 : };
247 :
248 :
249 : class SvxNumOptionsTabPage : public SfxTabPage
250 : {
251 : using TabPage::ActivatePage;
252 : using TabPage::DeactivatePage;
253 :
254 : ListBox* m_pLevelLB;
255 :
256 : ListBox* m_pFmtLB;
257 :
258 : FixedText* m_pSeparatorFT;
259 : FixedText* m_pPrefixFT;
260 : Edit* m_pPrefixED;
261 : FixedText* m_pSuffixFT;
262 : Edit* m_pSuffixED;
263 : FixedText* m_pCharFmtFT;
264 : ListBox* m_pCharFmtLB;
265 : FixedText* m_pBulColorFT;
266 : ColorListBox* m_pBulColLB;
267 : FixedText* m_pBulRelSizeFT;
268 : MetricField* m_pBulRelSizeMF;
269 : FixedText* m_pAllLevelFT;
270 : NumericField* m_pAllLevelNF;
271 : FixedText* m_pStartFT;
272 : NumericField* m_pStartED;
273 : FixedText* m_pBulletFT;
274 : PushButton* m_pBulletPB;
275 : FixedText* m_pAlignFT;
276 : ListBox* m_pAlignLB;
277 : FixedText* m_pBitmapFT;
278 : MenuButton* m_pBitmapMB;
279 : sal_uInt16 m_nGalleryId;
280 : FixedText* m_pWidthFT;
281 : MetricField* m_pWidthMF;
282 : FixedText* m_pHeightFT;
283 : MetricField* m_pHeightMF;
284 : CheckBox* m_pRatioCB;
285 : FixedText* m_pOrientFT;
286 : ListBox* m_pOrientLB;
287 :
288 : VclContainer* m_pAllLevelsFrame;
289 : CheckBox* m_pSameLevelCB;
290 :
291 : SvxNumberingPreview* m_pPreviewWIN;
292 :
293 : OUString m_sNumCharFmtName;
294 : OUString m_sBulletCharFmtName;
295 :
296 : Timer aInvalidateTimer;
297 :
298 : SvxNumRule* pActNum;
299 : SvxNumRule* pSaveNum;
300 :
301 : Size aInitSize[SVX_MAX_NUM];
302 :
303 : sal_Bool bLastWidthModified : 1;
304 : sal_Bool bModified : 1;
305 : sal_Bool bPreset : 1;
306 : sal_Bool bAutomaticCharStyles: 1;
307 : sal_Bool bHTMLMode : 1;
308 : sal_Bool bMenuButtonInitialized : 1;
309 :
310 : std::vector<OUString> aGrfNames;
311 : Font aActBulletFont;
312 :
313 : sal_uInt8 nBullet;
314 : sal_uInt16 nActNumLvl;
315 : sal_uInt16 nNumItemId;
316 : SfxMapUnit eCoreUnit;
317 :
318 : void InitControls();
319 : /** To switch between the numbering type
320 : 0 - Number;
321 : 1 - Bullet;
322 : 2 - Bitmap; */
323 : void SwitchNumberType( sal_uInt8 nType, sal_Bool bBmp = sal_False );
324 : void CheckForStartValue_Impl(sal_uInt16 nNumberingType);
325 :
326 : DECL_LINK( NumberTypeSelectHdl_Impl, ListBox * );
327 : DECL_LINK( LevelHdl_Impl, ListBox * );
328 : DECL_LINK(PopupActivateHdl_Impl, void *);
329 : DECL_LINK( GraphicHdl_Impl, MenuButton * );
330 : DECL_LINK(BulletHdl_Impl, void *);
331 : DECL_LINK( SizeHdl_Impl, MetricField * );
332 : DECL_LINK( RatioHdl_Impl, CheckBox * );
333 : DECL_LINK(CharFmtHdl_Impl, void *);
334 : DECL_LINK( EditModifyHdl_Impl, Edit * );
335 : DECL_LINK( AllLevelHdl_Impl, NumericField * );
336 : DECL_LINK( OrientHdl_Impl, ListBox * );
337 : DECL_LINK( SameLevelHdl_Impl, CheckBox * );
338 : DECL_LINK( BulColorHdl_Impl, ColorListBox* );
339 : DECL_LINK( BulRelSizeHdl_Impl, MetricField *);
340 : DECL_LINK(PreviewInvalidateHdl_Impl, void *);
341 :
342 : DECL_STATIC_LINK( SvxNumOptionsTabPage, GraphicArrivedHdl_Impl, SvxBrushItem* );
343 :
344 : public:
345 : SvxNumOptionsTabPage(Window* pParent,
346 : const SfxItemSet& rSet);
347 : virtual ~SvxNumOptionsTabPage();
348 :
349 : static SfxTabPage* Create( Window* pParent,
350 : const SfxItemSet& rAttrSet);
351 :
352 : virtual void ActivatePage(const SfxItemSet& rSet) SAL_OVERRIDE;
353 : virtual int DeactivatePage(SfxItemSet *pSet) SAL_OVERRIDE;
354 : virtual bool FillItemSet( SfxItemSet& rSet ) SAL_OVERRIDE;
355 : virtual void Reset( const SfxItemSet& rSet ) SAL_OVERRIDE;
356 :
357 0 : void SetCharFmts(const OUString& rNumName, const OUString& rBulletName)
358 : {
359 0 : m_sNumCharFmtName = rNumName;
360 0 : m_sBulletCharFmtName = rBulletName;
361 0 : }
362 : void SetMetric(FieldUnit eSet);
363 :
364 0 : ListBox& GetCharFmtListBox() {return *m_pCharFmtLB;}
365 : void SetModified(sal_Bool bRepaint = sal_True);
366 : virtual void PageCreated(SfxAllItemSet aSet) SAL_OVERRIDE;
367 :
368 : /** Get the numberings provided by the i18n framework (CTL, Asian, ...) and
369 : add them to the listbox. Extended numbering schemes present in the
370 : resource and already in the listbox but not offered by the i18n
371 : framework per configuration are removed.
372 :
373 : @param nDoNotRemove
374 : A value that shall not be removed, i.e. the ugly 0x88
375 : (SVX_NUM_BITMAP|0x80)
376 : Pass ::std::numeric_limits<sal_uInt16>::max() if there is no such
377 : restriction.
378 : */
379 : static void GetI18nNumbering( ListBox& rFmtLB, sal_uInt16 nDoNotRemove );
380 : };
381 :
382 :
383 : class SvxNumPositionTabPage : public SfxTabPage
384 : {
385 : using TabPage::ActivatePage;
386 : using TabPage::DeactivatePage;
387 :
388 : ListBox* m_pLevelLB;
389 :
390 : // former set of controls shown for numbering rules containing list level
391 : // attributes in SvxNumberFormat::SvxNumPositionAndSpaceMode == LABEL_WIDTH_AND_POSITION
392 : FixedText* m_pDistBorderFT;
393 : MetricField* m_pDistBorderMF;
394 : CheckBox* m_pRelativeCB;
395 : FixedText* m_pIndentFT;
396 : MetricField* m_pIndentMF;
397 : FixedText* m_pDistNumFT;
398 : MetricField* m_pDistNumMF;
399 : FixedText* m_pAlignFT;
400 : ListBox* m_pAlignLB;
401 :
402 : // new set of controls shown for numbering rules containing list level
403 : // attributes in SvxNumberFormat::SvxNumPositionAndSpaceMode == LABEL_ALIGNMENT
404 : FixedText* m_pLabelFollowedByFT;
405 : ListBox* m_pLabelFollowedByLB;
406 : FixedText* m_pListtabFT;
407 : MetricField* m_pListtabMF;
408 : FixedText* m_pAlign2FT;
409 : ListBox* m_pAlign2LB;
410 : FixedText* m_pAlignedAtFT;
411 : MetricField* m_pAlignedAtMF;
412 : FixedText* m_pIndentAtFT;
413 : MetricField* m_pIndentAtMF;
414 :
415 : PushButton* m_pStandardPB;
416 :
417 : SvxNumberingPreview* m_pPreviewWIN;
418 :
419 : SvxNumRule* pActNum;
420 : SvxNumRule* pSaveNum;
421 :
422 : sal_uInt16 nActNumLvl;
423 : sal_uInt16 nNumItemId;
424 : SfxMapUnit eCoreUnit;
425 :
426 : sal_Bool bModified : 1;
427 : sal_Bool bPreset : 1;
428 : sal_Bool bInInintControl : 1; // workaround for Modify-error, is said to be correctet from 391 on
429 : bool bLabelAlignmentPosAndSpaceModeActive;
430 :
431 : void InitControls();
432 :
433 : DECL_LINK( LevelHdl_Impl, ListBox * );
434 : DECL_LINK(EditModifyHdl_Impl, void *);
435 : DECL_LINK( DistanceHdl_Impl, MetricField * );
436 : DECL_LINK( RelativeHdl_Impl, CheckBox * );
437 : DECL_LINK(StandardHdl_Impl, void *);
438 :
439 : void InitPosAndSpaceMode();
440 : void ShowControlsDependingOnPosAndSpaceMode();
441 :
442 : DECL_LINK(LabelFollowedByHdl_Impl, void *);
443 : DECL_LINK( ListtabPosHdl_Impl, MetricField* );
444 : DECL_LINK( AlignAtHdl_Impl, MetricField* );
445 : DECL_LINK( IndentAtHdl_Impl, MetricField* );
446 :
447 : public:
448 : SvxNumPositionTabPage(Window* pParent,
449 : const SfxItemSet& rSet);
450 : virtual ~SvxNumPositionTabPage();
451 :
452 : virtual void ActivatePage(const SfxItemSet& rSet) SAL_OVERRIDE;
453 : virtual int DeactivatePage(SfxItemSet *pSet) SAL_OVERRIDE;
454 : virtual bool FillItemSet( SfxItemSet& rSet ) SAL_OVERRIDE;
455 : virtual void Reset( const SfxItemSet& rSet ) SAL_OVERRIDE;
456 :
457 : static SfxTabPage* Create( Window* pParent,
458 : const SfxItemSet& rAttrSet);
459 :
460 : void SetMetric(FieldUnit eSet);
461 : void SetModified(sal_Bool bRepaint = sal_True);
462 : virtual void PageCreated(SfxAllItemSet aSet) SAL_OVERRIDE;
463 : };
464 :
465 : #endif
466 :
467 :
468 :
469 :
470 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|