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 _OPTPAGE_HXX
20 : #define _OPTPAGE_HXX
21 : #include <sfx2/tabdlg.hxx>
22 :
23 : #include <vcl/group.hxx>
24 :
25 : #include <vcl/button.hxx>
26 :
27 : #include <vcl/lstbox.hxx>
28 :
29 : #include <vcl/field.hxx>
30 :
31 : #include <vcl/fixed.hxx>
32 : #include <svtools/ctrlbox.hxx>
33 : #include <svx/fntctrl.hxx>
34 : #include <fontcfg.hxx>
35 : class SfxPrinter;
36 : class SwStdFontConfig;
37 : class SwWrtShell;
38 : class FontList;
39 :
40 : class SwContentOptPage : public SfxTabPage
41 : {
42 : //visual aids
43 : FixedLine aLineFL;
44 : CheckBox aCrossCB;
45 :
46 : //view
47 : FixedLine aWindowFL;
48 : CheckBox aHScrollBox;
49 : CheckBox aVScrollBox;
50 : CheckBox aAnyRulerCB;
51 : CheckBox aHRulerCBox;
52 : ListBox aHMetric;
53 : CheckBox aVRulerCBox;
54 : CheckBox aVRulerRightCBox;
55 : ListBox aVMetric;
56 : CheckBox aSmoothCBox;
57 :
58 : //display
59 : FixedLine aDispFL;
60 : CheckBox aGrfCB;
61 : CheckBox aTblCB;
62 : CheckBox aDrwCB;
63 : CheckBox aFldNameCB;
64 : CheckBox aPostItCB;
65 :
66 : FixedLine aSettingsFL;
67 : FixedText aMetricFT;
68 : ListBox aMetricLB;
69 :
70 : DECL_LINK(VertRulerHdl, CheckBox*);
71 : DECL_LINK(AnyRulerHdl, CheckBox*);
72 : public:
73 : SwContentOptPage( Window* pParent,
74 : const SfxItemSet& rSet );
75 : ~SwContentOptPage();
76 :
77 : static SfxTabPage* Create( Window* pParent,
78 : const SfxItemSet& rAttrSet);
79 :
80 : virtual sal_Bool FillItemSet( SfxItemSet& rSet );
81 : virtual void Reset( const SfxItemSet& rSet );
82 :
83 : };
84 :
85 : /*--------------------------------------------------------
86 : TabPage printer settings additions
87 : --------------------------------------------------------- */
88 0 : class SwAddPrinterTabPage : public SfxTabPage
89 : {
90 : CheckBox* m_pGrfCB;
91 : CheckBox* m_pCtrlFldCB;
92 : CheckBox* m_pBackgroundCB;
93 : CheckBox* m_pBlackFontCB;
94 : CheckBox* m_pPrintHiddenTextCB;
95 : CheckBox* m_pPrintTextPlaceholderCB;
96 :
97 : VclFrame* m_pPagesFrame;
98 : CheckBox* m_pLeftPageCB;
99 : CheckBox* m_pRightPageCB;
100 : CheckBox* m_pProspectCB;
101 : CheckBox* m_pProspectCB_RTL;
102 :
103 : VclFrame* m_pCommentsFrame;
104 : RadioButton* m_pNoRB;
105 : RadioButton* m_pOnlyRB;
106 : RadioButton* m_pEndRB;
107 : RadioButton* m_pEndPageRB;
108 :
109 : CheckBox* m_pPrintEmptyPagesCB;
110 : CheckBox* m_pPaperFromSetupCB;
111 : ListBox* m_pFaxLB;
112 :
113 : String sNone;
114 :
115 : sal_Bool bAttrModified;
116 : sal_Bool bPreview;
117 :
118 : void Init();
119 : DECL_LINK(AutoClickHdl, void *);
120 : DECL_LINK(SelectHdl, void *);
121 :
122 :
123 : SwAddPrinterTabPage( Window* pParent,
124 : const SfxItemSet& rSet );
125 : public:
126 :
127 : static SfxTabPage* Create( Window* pParent,
128 : const SfxItemSet& rAttrSet );
129 :
130 : virtual sal_Bool FillItemSet( SfxItemSet& rSet );
131 : virtual void Reset( const SfxItemSet& rSet );
132 : void SetFax( const std::vector<String>& );
133 : void SelectFax( const String& );
134 : void SetPreview(sal_Bool bPrev);
135 : virtual void PageCreated (SfxAllItemSet aSet);
136 :
137 : };
138 :
139 : class SwStdFontTabPage : public SfxTabPage
140 : {
141 : FixedLine aStdChrFL ;
142 :
143 : FixedText aTypeFT;
144 :
145 : FixedText aStandardLbl;
146 : ComboBox aStandardBox;
147 :
148 : FixedText aHeightFT;
149 : FontSizeBox aStandardHeightLB;
150 :
151 : FixedText aTitleLbl ;
152 : ComboBox aTitleBox ;
153 : FontSizeBox aTitleHeightLB;
154 :
155 : FixedText aListLbl ;
156 : ComboBox aListBox ;
157 : FontSizeBox aListHeightLB;
158 :
159 : FixedText aLabelLbl ;
160 : ComboBox aLabelBox ;
161 : FontSizeBox aLabelHeightLB;
162 :
163 : FixedText aIdxLbl ;
164 : ComboBox aIdxBox ;
165 : FontSizeBox aIndexHeightLB;
166 :
167 : CheckBox aDocOnlyCB ;
168 : PushButton aStandardPB;
169 :
170 : String sShellStd;
171 : String sShellTitle;
172 : String sShellList;
173 : String sShellLabel;
174 : String sShellIndex;
175 :
176 : SfxPrinter* pPrt;
177 : FontList* pFontList;
178 : SwStdFontConfig* pFontConfig;
179 : SwWrtShell* pWrtShell;
180 : LanguageType eLanguage;
181 : // only defaults were there? they were signed with the boxes
182 : sal_Bool bListDefault :1;
183 : sal_Bool bSetListDefault :1;
184 : sal_Bool bLabelDefault :1;
185 : sal_Bool bSetLabelDefault :1;
186 : sal_Bool bIdxDefault :1;
187 : sal_Bool bSetIdxDefault :1;
188 : sal_Bool bDeletePrinter :1;
189 :
190 : sal_Bool bListHeightDefault :1;
191 : sal_Bool bSetListHeightDefault :1;
192 : sal_Bool bLabelHeightDefault :1;
193 : sal_Bool bSetLabelHeightDefault :1;
194 : sal_Bool bIndexHeightDefault :1;
195 : sal_Bool bSetIndexHeightDefault :1;
196 :
197 : sal_uInt8 nFontGroup; //fontcfg.hxx: FONT_GROUP_[STANDARD|CJK|CTL]
198 :
199 : String sScriptWestern;
200 : String sScriptAsian;
201 : String sScriptComplex;
202 :
203 : DECL_LINK(StandardHdl, void *);
204 : DECL_LINK( ModifyHdl, ComboBox * );
205 : DECL_LINK( ModifyHeightHdl, FontSizeBox * );
206 : DECL_LINK( LoseFocusHdl, ComboBox * );
207 :
208 : SwStdFontTabPage( Window* pParent,
209 : const SfxItemSet& rSet );
210 : ~SwStdFontTabPage();
211 :
212 : public:
213 : static SfxTabPage* Create( Window* pParent,
214 : const SfxItemSet& rAttrSet );
215 :
216 : virtual sal_Bool FillItemSet( SfxItemSet& rSet );
217 : virtual void Reset( const SfxItemSet& rSet );
218 :
219 0 : void SetFontMode(sal_uInt8 nGroup) {nFontGroup = nGroup;}
220 : virtual void PageCreated (SfxAllItemSet aSet);
221 : };
222 :
223 : class SwTableOptionsTabPage : public SfxTabPage
224 : {
225 : FixedLine aTableFL;
226 : CheckBox aHeaderCB;
227 : CheckBox aRepeatHeaderCB;
228 : CheckBox aDontSplitCB;
229 : CheckBox aBorderCB;
230 :
231 : FixedLine aSeparatorFL;
232 :
233 : FixedLine aTableInsertFL;
234 : CheckBox aNumFormattingCB;
235 : CheckBox aNumFmtFormattingCB;
236 : CheckBox aNumAlignmentCB;
237 :
238 : FixedLine aMoveFL;
239 : FixedText aMoveFT;
240 : FixedText aRowMoveFT;
241 : MetricField aRowMoveMF;
242 : FixedText aColMoveFT;
243 : MetricField aColMoveMF;
244 :
245 : FixedText aInsertFT;
246 : FixedText aRowInsertFT;
247 : MetricField aRowInsertMF;
248 : FixedText aColInsertFT;
249 : MetricField aColInsertMF;
250 :
251 : FixedText aHandlingFT;
252 : RadioButton aFixRB;
253 : RadioButton aFixPropRB;
254 : RadioButton aVarRB;
255 : FixedText aFixFT;
256 : FixedText aFixPropFT;
257 : FixedText aVarFT;
258 :
259 : SwWrtShell* pWrtShell;
260 : sal_Bool bHTMLMode;
261 :
262 : DECL_LINK(CheckBoxHdl, void *);
263 :
264 :
265 : SwTableOptionsTabPage( Window* pParent,
266 : const SfxItemSet& rSet );
267 : ~SwTableOptionsTabPage();
268 :
269 : public:
270 :
271 : static SfxTabPage* Create( Window* pParent,
272 : const SfxItemSet& rAttrSet );
273 :
274 : virtual sal_Bool FillItemSet( SfxItemSet& rSet );
275 : virtual void Reset( const SfxItemSet& rSet );
276 :
277 0 : void SetWrtShell(SwWrtShell* pSh) {pWrtShell = pSh;}
278 : virtual void PageCreated (SfxAllItemSet aSet);
279 :
280 : };
281 :
282 : /*--------------------------------------------------
283 : TabPage for ShadowCrsr
284 : --------------------------------------------------*/
285 : class SwShdwCrsrOptionsTabPage : public SfxTabPage
286 : {
287 : //nonprinting characters
288 : FixedLine aUnprintFL;
289 : CheckBox aParaCB;
290 : CheckBox aSHyphCB;
291 : CheckBox aSpacesCB;
292 : CheckBox aHSpacesCB;
293 : CheckBox aTabCB;
294 : CheckBox aBreakCB;
295 : CheckBox aCharHiddenCB;
296 : CheckBox aFldHiddenCB;
297 : CheckBox aFldHiddenParaCB;
298 :
299 : FixedLine aSeparatorFL;
300 :
301 : FixedLine aFlagFL;
302 : CheckBox aOnOffCB;
303 :
304 : FixedText aFillModeFT;
305 : RadioButton aFillMarginRB;
306 : RadioButton aFillIndentRB;
307 : RadioButton aFillTabRB;
308 : RadioButton aFillSpaceRB;
309 :
310 : FixedLine aCrsrOptFL;
311 : CheckBox aCrsrInProtCB;
312 :
313 : FixedLine m_aLayoutOptionsFL;
314 : CheckBox m_aMathBaselineAlignmentCB;
315 :
316 : SwWrtShell * m_pWrtShell;
317 :
318 :
319 : SwShdwCrsrOptionsTabPage( Window* pParent, const SfxItemSet& rSet );
320 : ~SwShdwCrsrOptionsTabPage();
321 :
322 : public:
323 :
324 : static SfxTabPage* Create( Window* pParent, const SfxItemSet& rAttrSet );
325 :
326 : virtual sal_Bool FillItemSet( SfxItemSet& rSet );
327 : virtual void Reset( const SfxItemSet& rSet );
328 :
329 0 : void SetWrtShell( SwWrtShell * pSh ) { m_pWrtShell = pSh; }
330 : virtual void PageCreated( SfxAllItemSet aSet );
331 : };
332 :
333 : /*-----------------------------------------------------------------------
334 : Description: mark preview
335 : -----------------------------------------------------------------------*/
336 : class SwMarkPreview : public Window
337 : {
338 : Color m_aBgCol; // background
339 : Color m_aTransCol; // transparency
340 : Color m_aMarkCol; // marks
341 : Color m_aLineCol; // general lines
342 : Color m_aShadowCol; // shadow
343 : Color m_aTxtCol; // text
344 : Color m_aPrintAreaCol; // frame for print area
345 :
346 : Rectangle aPage;
347 : Rectangle aLeftPagePrtArea;
348 : Rectangle aRightPagePrtArea;
349 :
350 : sal_uInt16 nMarkPos;
351 :
352 : using OutputDevice::DrawRect;
353 : void DrawRect(const Rectangle &rRect, const Color &rFillColor, const Color &rLineColor);
354 :
355 : void Paint(const Rectangle&);
356 : void PaintPage(const Rectangle &rRect);
357 : void InitColors( void );
358 :
359 : protected:
360 : virtual void DataChanged( const DataChangedEvent& rDCEvt );
361 :
362 : public:
363 : SwMarkPreview(Window* pParent, const ResId& rResID);
364 : virtual ~SwMarkPreview();
365 :
366 0 : inline void SetColor(const Color& rCol) { m_aMarkCol = rCol; }
367 0 : inline void SetMarkPos(sal_uInt16 nPos) { nMarkPos = nPos; }
368 : };
369 :
370 : /*-----------------------------------------------------------------------
371 : Description: redlining options
372 : -----------------------------------------------------------------------*/
373 : class SwRedlineOptionsTabPage : public SfxTabPage
374 : {
375 : FixedLine aInsertFL;
376 :
377 : FixedText aInsertFT;
378 : FixedText aInsertAttrFT;
379 : ListBox aInsertLB;
380 : FixedText aInsertColorFT;
381 : ColorListBox aInsertColorLB;
382 : SvxFontPrevWindow aInsertedPreviewWN;
383 :
384 : FixedText aDeletedFT;
385 : FixedText aDeletedAttrFT;
386 : ListBox aDeletedLB;
387 : FixedText aDeletedColorFT;
388 : ColorListBox aDeletedColorLB;
389 : SvxFontPrevWindow aDeletedPreviewWN;
390 :
391 : FixedText aChangedFT;
392 : FixedText aChangedAttrFT;
393 : ListBox aChangedLB;
394 : FixedText aChangedColorFT;
395 : ColorListBox aChangedColorLB;
396 : SvxFontPrevWindow aChangedPreviewWN;
397 :
398 : FixedLine aChangedFL;
399 :
400 : FixedText aMarkPosFT;
401 : ListBox aMarkPosLB;
402 : FixedText aMarkColorFT;
403 : ColorListBox aMarkColorLB;
404 : SwMarkPreview aMarkPreviewWN;
405 :
406 : String sAuthor;
407 : String sNone;
408 :
409 : SwRedlineOptionsTabPage( Window* pParent, const SfxItemSet& rSet );
410 : ~SwRedlineOptionsTabPage();
411 :
412 : DECL_LINK( AttribHdl, ListBox *pLB );
413 : DECL_LINK(ChangedMaskPrevHdl, void * = 0);
414 : DECL_LINK( ColorHdl, ColorListBox *pColorLB );
415 :
416 : void InitFontStyle(SvxFontPrevWindow& rExampleWin);
417 :
418 : public:
419 :
420 : static SfxTabPage* Create( Window* pParent, const SfxItemSet& rAttrSet );
421 :
422 : virtual sal_Bool FillItemSet( SfxItemSet& rSet );
423 : virtual void Reset( const SfxItemSet& rSet );
424 : };
425 :
426 : /*-------------------------------------------------------
427 : TabPage test settings for SW
428 : --------------------------------------------------------- */
429 :
430 : #ifdef DBG_UTIL
431 :
432 : class SwTestTabPage : public SfxTabPage
433 : {
434 : public:
435 : SwTestTabPage( Window* pParent,
436 : const SfxItemSet& rSet );
437 :
438 : static SfxTabPage* Create( Window* pParent,
439 : const SfxItemSet& rAttrSet );
440 :
441 : virtual sal_Bool FillItemSet( SfxItemSet& rSet );
442 : virtual void Reset( const SfxItemSet& rSet );
443 :
444 : private:
445 : FixedLine aTestFL;
446 : CheckBox aTest1CBox;
447 : CheckBox aTest2CBox;
448 : CheckBox aTest3CBox;
449 : CheckBox aTest4CBox;
450 : CheckBox aTest5CBox;
451 : CheckBox aTest6CBox;
452 : CheckBox aTest7CBox;
453 : CheckBox aTest8CBox;
454 : CheckBox aTest9CBox;
455 : CheckBox aTest10CBox;
456 :
457 : sal_Bool bAttrModified;
458 :
459 : void Init();
460 : DECL_LINK(AutoClickHdl, void *);
461 :
462 : };
463 : #endif // DBG_UTIL
464 :
465 : class SwCompareOptionsTabPage : public SfxTabPage
466 : {
467 : FixedLine aComparisonFL;
468 : RadioButton aAutoRB;
469 : RadioButton aWordRB;
470 : RadioButton aCharRB;
471 :
472 : FixedLine aSettingsFL;
473 : CheckBox aRsidCB;
474 : CheckBox aIgnoreCB;
475 : NumericField aLenNF;
476 :
477 : SwCompareOptionsTabPage( Window* pParent, const SfxItemSet& rSet );
478 : ~SwCompareOptionsTabPage();
479 :
480 : DECL_LINK(ComparisonHdl, void *);
481 : DECL_LINK(IgnoreHdl, void *);
482 :
483 : public:
484 :
485 : static SfxTabPage* Create( Window* pParent, const SfxItemSet& rAttrSet );
486 :
487 : virtual sal_Bool FillItemSet( SfxItemSet& rSet );
488 : virtual void Reset( const SfxItemSet& rSet );
489 : };
490 :
491 : #endif
492 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|