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_FRMPAGE_HXX
21 : #define INCLUDED_SW_SOURCE_UIBASE_INC_FRMPAGE_HXX
22 :
23 : #include <vcl/fixed.hxx>
24 : #include <vcl/button.hxx>
25 : #include <vcl/lstbox.hxx>
26 : #include <vcl/field.hxx>
27 : #include <sfx2/tabdlg.hxx>
28 : #include <svx/swframeposstrings.hxx>
29 : #include <swtypes.hxx>
30 : #include <bmpwin.hxx>
31 : #include <svx/swframeexample.hxx>
32 : #include <prcntfld.hxx>
33 : #include <globals.hrc>
34 :
35 : namespace sfx2{class FileDialogHelper;}
36 : class SwWrtShell;
37 : struct FrmMap;
38 : // OD 12.11.2003 #i22341#
39 : struct SwPosition;
40 :
41 : // frame dialog
42 : class SwFrmPage: public SfxTabPage
43 : {
44 : // size
45 : VclPtr<FixedText> m_pWidthFT;
46 : VclPtr<FixedText> m_pWidthAutoFT;
47 : PercentField m_aWidthED;
48 : VclPtr<CheckBox> m_pRelWidthCB;
49 : VclPtr<ListBox> m_pRelWidthRelationLB;
50 : VclPtr<CheckBox> m_pAutoWidthCB;
51 :
52 : VclPtr<FixedText> m_pHeightFT;
53 : VclPtr<FixedText> m_pHeightAutoFT;
54 : PercentField m_aHeightED;
55 : VclPtr<CheckBox> m_pRelHeightCB;
56 : VclPtr<ListBox> m_pRelHeightRelationLB;
57 : VclPtr<CheckBox> m_pAutoHeightCB;
58 :
59 : VclPtr<CheckBox> m_pFixedRatioCB;
60 : VclPtr<PushButton> m_pRealSizeBT;
61 :
62 : // anchor
63 : VclPtr<VclContainer> m_pAnchorFrame;
64 : VclPtr<RadioButton> m_pAnchorAtPageRB;
65 : VclPtr<RadioButton> m_pAnchorAtParaRB;
66 : VclPtr<RadioButton> m_pAnchorAtCharRB;
67 : VclPtr<RadioButton> m_pAnchorAsCharRB;
68 : VclPtr<RadioButton> m_pAnchorAtFrameRB;
69 :
70 : // position
71 : VclPtr<FixedText> m_pHorizontalFT;
72 : VclPtr<ListBox> m_pHorizontalDLB;
73 : VclPtr<FixedText> m_pAtHorzPosFT;
74 : VclPtr<MetricField> m_pAtHorzPosED;
75 : VclPtr<FixedText> m_pHoriRelationFT;
76 : VclPtr<ListBox> m_pHoriRelationLB;
77 :
78 : VclPtr<CheckBox> m_pMirrorPagesCB;
79 :
80 : VclPtr<FixedText> m_pVerticalFT;
81 : VclPtr<ListBox> m_pVerticalDLB;
82 : VclPtr<FixedText> m_pAtVertPosFT;
83 : VclPtr<MetricField> m_pAtVertPosED;
84 : VclPtr<FixedText> m_pVertRelationFT;
85 : VclPtr<ListBox> m_pVertRelationLB;
86 : // #i18732# - check box for new option 'FollowTextFlow'
87 : VclPtr<CheckBox> m_pFollowTextFlowCB;
88 :
89 : // example
90 : VclPtr<SvxSwFrameExample> m_pExampleWN;
91 :
92 : //'string provider'
93 : SvxSwFramePosString aFramePosString;
94 :
95 : bool bAtHorzPosModified;
96 : bool bAtVertPosModified;
97 :
98 : bool bFormat;
99 : bool bNew;
100 : bool bNoModifyHdl;
101 : bool bIsVerticalFrame; //current frame is in vertical environment - strings are exchanged
102 : // --> OD 2009-08-31 #mongolianlayou#
103 : bool bIsVerticalL2R;
104 : bool bIsInRightToLeft; // current frame is in right-to-left environment - strings are exchanged
105 : bool bHtmlMode;
106 : sal_uInt16 nHtmlMode;
107 : OUString sDlgType;
108 : Size aGrfSize;
109 : SwTwips nUpperBorder;
110 : SwTwips nLowerBorder;
111 : double fWidthHeightRatio; //width-to-height ratio to support the KeepRatio button
112 :
113 : // OD 12.11.2003 #i22341# - keep content position of character for
114 : // to character anchored objects.
115 : const SwPosition* mpToCharContentPos;
116 :
117 : // old alignment
118 : sal_Int16 nOldH;
119 : sal_Int16 nOldHRel;
120 : sal_Int16 nOldV;
121 : sal_Int16 nOldVRel;
122 :
123 : FrmMap* pVMap;
124 : FrmMap* pHMap;
125 :
126 : bool m_bAllowVertPositioning;
127 : bool m_bIsMathOLE;
128 : bool m_bIsMathBaselineAlignment;
129 :
130 : virtual void ActivatePage(const SfxItemSet& rSet) SAL_OVERRIDE;
131 : virtual sfxpg DeactivatePage(SfxItemSet *pSet) SAL_OVERRIDE;
132 :
133 : DECL_LINK(RangeModifyHdl, void *);
134 : DECL_LINK(AnchorTypeHdl, void *);
135 : DECL_LINK( PosHdl, ListBox * );
136 : DECL_LINK( RelHdl, ListBox * );
137 : void InitPos(RndStdIds eId, sal_Int16 nH, sal_Int16 nHRel,
138 : sal_Int16 nV, sal_Int16 nVRel,
139 : long nX, long nY);
140 :
141 : DECL_LINK(RealSizeHdl, void *);
142 : DECL_LINK( RelSizeClickHdl, CheckBox * );
143 : DECL_LINK(MirrorHdl, void *);
144 :
145 : DECL_LINK( AutoWidthClickHdl, void* );
146 : DECL_LINK( AutoHeightClickHdl, void* );
147 :
148 : // update example
149 : void UpdateExample();
150 : DECL_LINK( ModifyHdl, Edit * );
151 :
152 : void Init(const SfxItemSet& rSet, bool bReset = false);
153 : // OD 12.11.2003 #i22341# - adjustment to handle maps, that are ambigous
154 : // in the alignment.
155 : sal_Int32 FillPosLB( const FrmMap* _pMap,
156 : const sal_Int16 _nAlign,
157 : const sal_Int16 _nRel,
158 : ListBox& _rLB );
159 : // OD 14.11.2003 #i22341# - adjustment to handle maps, that are ambigous
160 : // in their string entries.
161 : sal_uLong FillRelLB( const FrmMap* _pMap,
162 : const sal_uInt16 _nLBSelPos,
163 : const sal_Int16 _nAlign,
164 : const sal_Int16 _nRel,
165 : ListBox& _rLB,
166 : FixedText& _rFT );
167 : sal_Int32 GetMapPos( const FrmMap *pMap, ListBox &rAlignLB );
168 : static sal_Int16 GetAlignment(FrmMap *pMap, sal_Int32 nMapPos, ListBox &rAlignLB, ListBox &rRelationLB);
169 : static sal_Int16 GetRelation(FrmMap *pMap, ListBox &rRelationLB);
170 : RndStdIds GetAnchor();
171 :
172 : void setOptimalFrmWidth();
173 : void setOptimalRelWidth();
174 :
175 : void EnableGraficMode(); // hides auto check boxes and re-org controls for "Real Size" button
176 :
177 : SwWrtShell *getFrmDlgParentShell();
178 :
179 : using SfxTabPage::ActivatePage;
180 : using SfxTabPage::DeactivatePage;
181 :
182 : static const sal_uInt16 aPageRg[];
183 :
184 : public:
185 : SwFrmPage(vcl::Window *pParent, const SfxItemSet &rSet);
186 : virtual ~SwFrmPage();
187 : virtual void dispose() SAL_OVERRIDE;
188 :
189 : static VclPtr<SfxTabPage> Create(vcl::Window *pParent, const SfxItemSet *rSet);
190 0 : static const sal_uInt16* GetRanges() { return aPageRg; }
191 :
192 : virtual bool FillItemSet(SfxItemSet *rSet) SAL_OVERRIDE;
193 : virtual void Reset(const SfxItemSet *rSet) SAL_OVERRIDE;
194 :
195 0 : void SetNewFrame(bool bNewFrame) { bNew = bNewFrame; }
196 : void SetFormatUsed(bool bFormat);
197 0 : void SetFrmType(const OUString &rType) { sDlgType = rType; }
198 0 : inline bool IsInGraficMode() { return sDlgType == "PictureDialog" || sDlgType == "ObjectDialog"; }
199 : void EnableVerticalPositioning( bool bEnable );
200 : };
201 :
202 : class SwGrfExtPage: public SfxTabPage
203 : {
204 : // mirror
205 : VclPtr<VclContainer> m_pMirror;
206 : VclPtr<CheckBox> m_pMirrorVertBox;
207 : VclPtr<CheckBox> m_pMirrorHorzBox;
208 : VclPtr<RadioButton> m_pAllPagesRB;
209 : VclPtr<RadioButton> m_pLeftPagesRB;
210 : VclPtr<RadioButton> m_pRightPagesRB;
211 : VclPtr<BmpWindow> m_pBmpWin;
212 :
213 : VclPtr<Edit> m_pConnectED;
214 : VclPtr<PushButton> m_pBrowseBT;
215 :
216 : OUString aFilterName;
217 : OUString aGrfName, aNewGrfName;
218 :
219 : ::sfx2::FileDialogHelper* pGrfDlg;
220 :
221 : bool bHtmlMode;
222 :
223 : // handler for mirroring
224 : DECL_LINK(MirrorHdl, void *);
225 : DECL_LINK(BrowseHdl, void *);
226 :
227 : virtual void ActivatePage(const SfxItemSet& rSet) SAL_OVERRIDE;
228 : virtual ~SwGrfExtPage();
229 : virtual void dispose() SAL_OVERRIDE;
230 :
231 : using SfxTabPage::ActivatePage;
232 : using SfxTabPage::DeactivatePage;
233 :
234 : public:
235 : SwGrfExtPage(vcl::Window *pParent, const SfxItemSet &rSet);
236 :
237 : static VclPtr<SfxTabPage> Create(vcl::Window *pParent, const SfxItemSet *rSet);
238 :
239 : virtual bool FillItemSet(SfxItemSet *rSet) SAL_OVERRIDE;
240 : virtual void Reset(const SfxItemSet *rSet) SAL_OVERRIDE;
241 : virtual sfxpg DeactivatePage(SfxItemSet *pSet) SAL_OVERRIDE;
242 : };
243 :
244 : class SwFrmURLPage : public SfxTabPage
245 : {
246 : // hyperlink
247 : VclPtr<Edit> pURLED;
248 : VclPtr<PushButton> pSearchPB;
249 : VclPtr<Edit> pNameED;
250 : VclPtr<ComboBox> pFrameCB;
251 :
252 : // image map
253 : VclPtr<CheckBox> pServerCB;
254 : VclPtr<CheckBox> pClientCB;
255 :
256 : DECL_LINK(InsertFileHdl, void *);
257 :
258 : using SfxTabPage::ActivatePage;
259 : using SfxTabPage::DeactivatePage;
260 :
261 : public:
262 : SwFrmURLPage(vcl::Window *pParent, const SfxItemSet &rSet);
263 : virtual ~SwFrmURLPage();
264 : virtual void dispose() SAL_OVERRIDE;
265 :
266 : static VclPtr<SfxTabPage> Create(vcl::Window *pParent, const SfxItemSet *rSet);
267 :
268 : virtual bool FillItemSet(SfxItemSet *rSet) SAL_OVERRIDE;
269 : virtual void Reset(const SfxItemSet *rSet) SAL_OVERRIDE;
270 : };
271 :
272 : class SwFrmAddPage : public SfxTabPage
273 : {
274 : VclPtr<VclContainer> pNameFrame;
275 : VclPtr<FixedText> pNameFT;
276 : VclPtr<Edit> pNameED;
277 : VclPtr<FixedText> pAltNameFT;
278 : VclPtr<Edit> pAltNameED;
279 : VclPtr<FixedText> pPrevFT;
280 : VclPtr<ListBox> pPrevLB;
281 : VclPtr<FixedText> pNextFT;
282 : VclPtr<ListBox> pNextLB;
283 :
284 : VclPtr<VclContainer> pProtectFrame;
285 : VclPtr<CheckBox> pProtectContentCB;
286 : VclPtr<CheckBox> pProtectFrameCB;
287 : VclPtr<CheckBox> pProtectSizeCB;
288 :
289 : VclPtr<VclContainer> m_pContentAlignFrame;
290 : VclPtr<ListBox> m_pVertAlignLB;
291 :
292 : VclPtr<VclContainer> pPropertiesFrame;
293 : VclPtr<CheckBox> pEditInReadonlyCB;
294 : VclPtr<CheckBox> pPrintFrameCB;
295 : VclPtr<FixedText> pTextFlowFT;
296 : VclPtr<ListBox> pTextFlowLB;
297 :
298 : SwWrtShell* pWrtSh;
299 :
300 : OUString sDlgType;
301 : bool bHtmlMode;
302 : bool bFormat;
303 : bool bNew;
304 :
305 : DECL_LINK(EditModifyHdl, void *);
306 : DECL_LINK(ChainModifyHdl, ListBox*);
307 :
308 : static const sal_uInt16 aAddPgRg[];
309 :
310 : public:
311 : SwFrmAddPage(vcl::Window *pParent, const SfxItemSet &rSet);
312 : virtual ~SwFrmAddPage();
313 : virtual void dispose() SAL_OVERRIDE;
314 :
315 : static VclPtr<SfxTabPage> Create(vcl::Window *pParent, const SfxItemSet *rSet);
316 0 : static const sal_uInt16* GetRanges() { return aAddPgRg; }
317 :
318 : virtual bool FillItemSet(SfxItemSet *rSet) SAL_OVERRIDE;
319 : virtual void Reset(const SfxItemSet *rSet) SAL_OVERRIDE;
320 :
321 : void SetFormatUsed(bool bFormat);
322 0 : void SetFrmType(const OUString &rType) { sDlgType = rType; }
323 0 : void SetNewFrame(bool bNewFrame) { bNew = bNewFrame; }
324 0 : void SetShell(SwWrtShell* pSh) { pWrtSh = pSh; }
325 :
326 : };
327 :
328 : #endif // INCLUDED_SW_SOURCE_UIBASE_INC_FRMPAGE_HXX
329 :
330 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|