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