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 : #ifndef _COLUMN_HXX
21 : #define _COLUMN_HXX
22 :
23 :
24 : #include <vcl/fixed.hxx>
25 : #include <vcl/field.hxx>
26 : #include <vcl/image.hxx>
27 : #include <vcl/group.hxx>
28 : #include <vcl/lstbox.hxx>
29 : #include <vcl/button.hxx>
30 : #include <vcl/timer.hxx>
31 : #include <vcl/button.hxx>
32 : #include <svtools/ctrlbox.hxx>
33 : #include <svtools/valueset.hxx>
34 : #include <sfx2/basedlgs.hxx>
35 : #include <sfx2/tabdlg.hxx>
36 : #include <fmtclbl.hxx>
37 : #include <colex.hxx>
38 : #include <prcntfld.hxx>
39 :
40 : const int nMaxCols = 99;
41 : class SwColMgr;
42 : class SwWrtShell;
43 : class SwColumnPage;
44 :
45 : class SwColumnDlg : public SfxModalDialog
46 : {
47 : ListBox* m_pApplyToLB;
48 :
49 : SwWrtShell& rWrtShell;
50 : SwColumnPage* pTabPage;
51 : SfxItemSet* pPageSet;
52 : SfxItemSet* pSectionSet;
53 : SfxItemSet* pSelectionSet;
54 : SfxItemSet* pFrameSet;
55 :
56 : long nOldSelection;
57 : long nSelectionWidth;
58 : long nPageWidth;
59 :
60 : sal_Bool bPageChanged : 1;
61 : sal_Bool bSectionChanged : 1;
62 : sal_Bool bSelSectionChanged : 1;
63 : sal_Bool bFrameChanged : 1;
64 :
65 :
66 : DECL_LINK(ObjectHdl, ListBox*);
67 : DECL_LINK(OkHdl, void *);
68 :
69 : public:
70 : SwColumnDlg(Window* pParent, SwWrtShell& rSh);
71 : virtual ~SwColumnDlg();
72 :
73 : SwWrtShell& GetWrtShell() { return rWrtShell; }
74 : };
75 :
76 0 : class ColumnValueSet : public ValueSet
77 : {
78 : public:
79 : ColumnValueSet(Window* pParent, const ResId& rResId)
80 : : ValueSet(pParent, rResId)
81 : {
82 : }
83 0 : ColumnValueSet(Window* pParent)
84 0 : : ValueSet(pParent, WB_TABSTOP | WB_ITEMBORDER | WB_DOUBLEBORDER)
85 : {
86 0 : }
87 : virtual void UserDraw( const UserDrawEvent& rUDEvt );
88 : virtual void DataChanged( const DataChangedEvent& rDCEvt );
89 : };
90 :
91 : /*--------------------------------------------------------------------
92 : Description: column dialog now as TabPage
93 : --------------------------------------------------------------------*/
94 : class SwColumnPage : public SfxTabPage
95 : {
96 : NumericField* m_pCLNrEdt;
97 : ColumnValueSet* m_pDefaultVS;
98 : CheckBox* m_pBalanceColsCB;
99 :
100 : PushButton* m_pBtnBack;
101 : FixedText* m_pLbl1;
102 : PercentFieldWrap aEd1;
103 : FixedText* m_pLbl2;
104 : PercentFieldWrap aEd2;
105 : FixedText* m_pLbl3;
106 : PercentFieldWrap aEd3;
107 : PushButton* m_pBtnNext;
108 : PercentFieldWrap aDistEd1;
109 : PercentFieldWrap aDistEd2;
110 : CheckBox* m_pAutoWidthBox;
111 :
112 : FixedText* m_pLineTypeLbl;
113 : LineListBox* m_pLineTypeDLB;
114 : FixedText* m_pLineWidthLbl;
115 : MetricField* m_pLineWidthEdit;
116 : FixedText* m_pLineColorLbl;
117 : ColorListBox* m_pLineColorDLB;
118 : FixedText* m_pLineHeightLbl;
119 : MetricField* m_pLineHeightEdit;
120 : FixedText* m_pLinePosLbl;
121 : ListBox* m_pLinePosDLB;
122 :
123 : FixedText* m_pTextDirectionFT;
124 : ListBox* m_pTextDirectionLB;
125 :
126 : // Example
127 : SwColExample* m_pPgeExampleWN;
128 : SwColumnOnlyExample* m_pFrmExampleWN;
129 :
130 : SwColMgr* pColMgr;
131 :
132 : sal_uInt16 nFirstVis;
133 : sal_uInt16 nCols;
134 : long nColWidth[nMaxCols];
135 : long nColDist[nMaxCols];
136 : sal_uInt16 nMinWidth;
137 : PercentFieldWrap* pModifiedField;
138 : sal_Bool bFormat;
139 : sal_Bool bFrm;
140 : sal_Bool bHtmlMode;
141 : sal_Bool bLockUpdate;
142 :
143 : // Handler
144 : DECL_LINK( ColModify, NumericField * );
145 : DECL_LINK( GapModify, PercentFieldWrap * );
146 : DECL_LINK( EdModify, PercentFieldWrap * );
147 : DECL_LINK( AutoWidthHdl, CheckBox * );
148 : DECL_LINK( SetDefaultsHdl, ValueSet * );
149 :
150 : DECL_LINK(Up, void *);
151 : DECL_LINK(Down, void *);
152 : DECL_LINK( UpdateColMgr, void* );
153 : void Apply(Button *);
154 : void Timeout();
155 :
156 : void Update();
157 : void UpdateCols();
158 : void Init();
159 : void ResetColWidth();
160 : void SetLabels( sal_uInt16 nVis );
161 :
162 : using SfxTabPage::ActivatePage;
163 : using SfxTabPage::DeactivatePage;
164 :
165 : virtual void ActivatePage(const SfxItemSet& rSet);
166 : virtual int DeactivatePage(SfxItemSet *pSet);
167 :
168 : SwColumnPage(Window *pParent, const SfxItemSet &rSet);
169 :
170 : public:
171 : virtual ~SwColumnPage();
172 :
173 : static SfxTabPage *Create(Window *pParent, const SfxItemSet &rSet);
174 : static sal_uInt16* GetRanges();
175 :
176 : virtual sal_Bool FillItemSet(SfxItemSet &rSet);
177 : virtual void Reset(const SfxItemSet &rSet);
178 :
179 : void SetFrmMode(sal_Bool bMod);
180 : void SetPageWidth(long nPageWidth);
181 :
182 0 : void SetFormatUsed(sal_Bool bFmt)
183 : {
184 0 : bFormat = bFmt;
185 0 : }
186 :
187 0 : void ShowBalance(sal_Bool bShow)
188 : {
189 0 : m_pBalanceColsCB->Show(bShow);
190 0 : }
191 :
192 : void SetInSection(sal_Bool bSet);
193 :
194 0 : void ActivateColumnControl()
195 : {
196 0 : m_pCLNrEdt->GrabFocus();
197 0 : }
198 : };
199 :
200 : #endif
201 :
202 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|