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_SW_SOURCE_UIBASE_INC_REGIONSW_HXX
20 : #define INCLUDED_SW_SOURCE_UIBASE_INC_REGIONSW_HXX
21 :
22 : #include <hintids.hxx>
23 : #include <vcl/field.hxx>
24 : #include <vcl/lstbox.hxx>
25 : #include <vcl/edit.hxx>
26 : #include <vcl/button.hxx>
27 : #include <vcl/fixed.hxx>
28 : #include <vcl/combobox.hxx>
29 : #include <vcl/group.hxx>
30 : #include <vcl/layout.hxx>
31 : #include <svtools/treelistbox.hxx>
32 : #include <sfx2/basedlgs.hxx>
33 : #include <sfx2/tabdlg.hxx>
34 : #include <editeng/brushitem.hxx>
35 :
36 : #include <condedit.hxx>
37 : #include <section.hxx>
38 : #include <fmtclds.hxx>
39 : #include <fmtftntx.hxx>
40 : #include <fmtclbl.hxx>
41 : #include <numberingtypelistbox.hxx>
42 : #include <editeng/frmdiritem.hxx>
43 : #include <vcl/image.hxx>
44 : #include <svx/paraprev.hxx>
45 : #include <editeng/lrspitem.hxx>
46 :
47 : #include <boost/ptr_container/ptr_set.hpp>
48 :
49 : class SwWrtShell;
50 :
51 : namespace sfx2
52 : {
53 : class DocumentInserter;
54 : class FileDialogHelper;
55 : }
56 :
57 : // dialog "edit regions"
58 : class SectRepr;
59 : typedef SectRepr* SectReprPtr;
60 : typedef boost::ptr_set<SectRepr> SectReprArr;
61 :
62 : class SwEditRegionDlg : public SfxModalDialog
63 : {
64 : VclPtr<Edit> m_pCurName;
65 : VclPtr<SvTreeListBox> m_pTree;
66 :
67 : VclPtr<TriStateBox> m_pFileCB;
68 : VclPtr<CheckBox> m_pDDECB;
69 : VclPtr<VclContainer> m_pDDEFrame;
70 : VclPtr<FixedText> m_pFileNameFT;
71 : VclPtr<FixedText> m_pDDECommandFT;
72 : VclPtr<Edit> m_pFileNameED;
73 : VclPtr<PushButton> m_pFilePB;
74 : VclPtr<FixedText> m_pSubRegionFT;
75 : VclPtr<ComboBox> m_pSubRegionED;
76 : bool m_bSubRegionsFilled;
77 :
78 : VclPtr<TriStateBox> m_pProtectCB;
79 : VclPtr<CheckBox> m_pPasswdCB;
80 : VclPtr<PushButton> m_pPasswdPB;
81 :
82 : VclPtr<TriStateBox> m_pHideCB;
83 : VclPtr<FixedText> m_pConditionFT;
84 : VclPtr<ConditionEdit> m_pConditionED;
85 :
86 : // #114856# edit in readonly sections
87 : VclPtr<TriStateBox> m_pEditInReadonlyCB;
88 :
89 : VclPtr<OKButton> m_pOK;
90 : VclPtr<PushButton> m_pOptionsPB;
91 : VclPtr<PushButton> m_pDismiss;
92 : ImageList aImageIL;
93 :
94 : SwWrtShell& rSh;
95 : SectReprArr aSectReprArr;
96 : const SwSection* pCurrSect;
97 : sfx2::DocumentInserter* m_pDocInserter;
98 : VclPtr<vcl::Window> m_pOldDefDlgParent;
99 :
100 : bool bDontCheckPasswd :1;
101 : bool bWeb :1;
102 :
103 : Image BuildBitmap(bool bProtect, bool bHidden);
104 :
105 : void RecurseList( const SwSectionFormat* pFormat, SvTreeListEntry* pEntry);
106 : size_t FindArrPos(const SwSectionFormat* pFormat);
107 :
108 : DECL_LINK( GetFirstEntryHdl, SvTreeListBox * );
109 : DECL_LINK( DeselectHdl, SvTreeListBox * );
110 :
111 : DECL_LINK(OkHdl, void *);
112 : DECL_LINK(NameEditHdl, void *);
113 : DECL_LINK( ConditionEditHdl, Edit * );
114 :
115 : DECL_LINK( ChangePasswdHdl, Button * );
116 : DECL_LINK( ChangeProtectHdl, TriStateBox * );
117 : DECL_LINK( ChangeHideHdl, TriStateBox * );
118 : // #114856# edit in readonly sections
119 : DECL_LINK( ChangeEditInReadonlyHdl, TriStateBox * );
120 : DECL_LINK(ChangeDismissHdl, void *);
121 : DECL_LINK( UseFileHdl, CheckBox* );
122 : DECL_LINK(FileSearchHdl, void *);
123 : DECL_LINK(OptionsHdl, void *);
124 : DECL_LINK( FileNameHdl, Edit* );
125 : DECL_LINK( DDEHdl, CheckBox* );
126 : DECL_LINK( DlgClosedHdl, sfx2::FileDialogHelper* );
127 : DECL_LINK( SubRegionEventHdl, VclWindowEvent * );
128 :
129 : bool CheckPasswd(CheckBox* pBox = 0);
130 :
131 : public:
132 : SwEditRegionDlg( vcl::Window* pParent, SwWrtShell& rWrtSh );
133 : virtual ~SwEditRegionDlg();
134 : virtual void dispose() SAL_OVERRIDE;
135 :
136 : void SelectSection(const OUString& rSectionName);
137 :
138 : };
139 :
140 : // dialog "insert region"
141 : class SwInsertSectionTabPage : public SfxTabPage
142 : {
143 : VclPtr<ComboBox> m_pCurName;
144 :
145 : VclPtr<CheckBox> m_pFileCB;
146 : VclPtr<CheckBox> m_pDDECB;
147 : VclPtr<FixedText> m_pDDECommandFT;
148 : VclPtr<FixedText> m_pFileNameFT;
149 : VclPtr<Edit> m_pFileNameED;
150 : VclPtr<PushButton> m_pFilePB;
151 : VclPtr<FixedText> m_pSubRegionFT;
152 : VclPtr<ComboBox> m_pSubRegionED;
153 :
154 : VclPtr<CheckBox> m_pProtectCB;
155 : VclPtr<CheckBox> m_pPasswdCB;
156 : VclPtr<PushButton> m_pPasswdPB;
157 :
158 : VclPtr<CheckBox> m_pHideCB;
159 : VclPtr<FixedText> m_pConditionFT;
160 : VclPtr<ConditionEdit> m_pConditionED;
161 :
162 : // #114856# edit in readonly sections
163 : VclPtr<CheckBox> m_pEditInReadonlyCB;
164 :
165 : OUString m_sFileName;
166 : OUString m_sFilterName;
167 : OUString m_sFilePasswd;
168 :
169 : ::com::sun::star::uno::Sequence <sal_Int8 > m_aNewPasswd;
170 : SwWrtShell* m_pWrtSh;
171 : sfx2::DocumentInserter* m_pDocInserter;
172 : VclPtr<vcl::Window> m_pOldDefDlgParent;
173 :
174 : DECL_LINK( ChangeHideHdl, CheckBox * );
175 : DECL_LINK( ChangeProtectHdl, CheckBox * );
176 : DECL_LINK( ChangePasswdHdl, Button * );
177 : DECL_LINK(NameEditHdl, void *);
178 : DECL_LINK( UseFileHdl, CheckBox* );
179 : DECL_LINK(FileSearchHdl, void *);
180 : DECL_LINK( DDEHdl, CheckBox* );
181 : DECL_LINK( DlgClosedHdl, sfx2::FileDialogHelper* );
182 :
183 : public:
184 : SwInsertSectionTabPage(vcl::Window *pParent, const SfxItemSet &rAttrSet);
185 : virtual ~SwInsertSectionTabPage();
186 : virtual void dispose() SAL_OVERRIDE;
187 :
188 : void SetWrtShell(SwWrtShell& rSh);
189 :
190 : virtual bool FillItemSet( SfxItemSet* ) SAL_OVERRIDE;
191 : virtual void Reset( const SfxItemSet* ) SAL_OVERRIDE;
192 :
193 : static VclPtr<SfxTabPage> Create( vcl::Window* pParent,
194 : const SfxItemSet* rAttrSet);
195 : };
196 :
197 : class SwSectionFootnoteEndTabPage : public SfxTabPage
198 : {
199 : VclPtr<CheckBox> pFootnoteNtAtTextEndCB;
200 :
201 : VclPtr<CheckBox> pFootnoteNtNumCB;
202 : VclPtr<FixedText> pFootnoteOffsetLbl;
203 : VclPtr<NumericField> pFootnoteOffsetField;
204 :
205 : VclPtr<CheckBox> pFootnoteNtNumFormatCB;
206 : VclPtr<FixedText> pFootnotePrefixFT;
207 : VclPtr<Edit> pFootnotePrefixED;
208 : VclPtr<SwNumberingTypeListBox> pFootnoteNumViewBox;
209 : VclPtr<FixedText> pFootnoteSuffixFT;
210 : VclPtr<Edit> pFootnoteSuffixED;
211 :
212 : VclPtr<CheckBox> pEndNtAtTextEndCB;
213 :
214 : VclPtr<CheckBox> pEndNtNumCB;
215 : VclPtr<FixedText> pEndOffsetLbl;
216 : VclPtr<NumericField> pEndOffsetField;
217 :
218 : VclPtr<CheckBox> pEndNtNumFormatCB;
219 : VclPtr<FixedText> pEndPrefixFT;
220 : VclPtr<Edit> pEndPrefixED;
221 : VclPtr<SwNumberingTypeListBox> pEndNumViewBox;
222 : VclPtr<FixedText> pEndSuffixFT;
223 : VclPtr<Edit> pEndSuffixED;
224 :
225 : DECL_LINK( FootEndHdl, CheckBox * );
226 : void ResetState( bool bFootnote, const SwFormatFootnoteEndAtTextEnd& );
227 :
228 : public:
229 : SwSectionFootnoteEndTabPage( vcl::Window *pParent, const SfxItemSet &rAttrSet );
230 : virtual ~SwSectionFootnoteEndTabPage();
231 : virtual void dispose() SAL_OVERRIDE;
232 :
233 : virtual bool FillItemSet( SfxItemSet* ) SAL_OVERRIDE;
234 : virtual void Reset( const SfxItemSet* ) SAL_OVERRIDE;
235 :
236 : static VclPtr<SfxTabPage> Create( vcl::Window* pParent,
237 : const SfxItemSet* rAttrSet);
238 : };
239 :
240 : class SwSectionIndentTabPage : public SfxTabPage
241 : {
242 : VclPtr<MetricField> m_pBeforeMF;
243 : VclPtr<MetricField> m_pAfterMF;
244 : VclPtr<SvxParaPrevWindow> m_pPreviewWin;
245 :
246 : DECL_LINK(IndentModifyHdl, void *);
247 : public:
248 : SwSectionIndentTabPage( vcl::Window *pParent, const SfxItemSet &rAttrSet );
249 : virtual ~SwSectionIndentTabPage();
250 : virtual void dispose() SAL_OVERRIDE;
251 :
252 : virtual bool FillItemSet( SfxItemSet* ) SAL_OVERRIDE;
253 : virtual void Reset( const SfxItemSet* ) SAL_OVERRIDE;
254 :
255 : static VclPtr<SfxTabPage> Create( vcl::Window* pParent,
256 : const SfxItemSet* rAttrSet);
257 :
258 : void SetWrtShell(SwWrtShell& rSh);
259 : };
260 :
261 : class SwInsertSectionTabDialog : public SfxTabDialog
262 : {
263 : SwWrtShell& rWrtSh;
264 : ::std::unique_ptr<SwSectionData> m_pSectionData;
265 :
266 : sal_uInt16 m_nSectionPageId;
267 : sal_uInt16 m_nColumnPageId;
268 : sal_uInt16 m_nBackPageId;
269 : sal_uInt16 m_nNotePageId;
270 : sal_uInt16 m_nIndentPage;
271 :
272 : protected:
273 : virtual void PageCreated( sal_uInt16 nId, SfxTabPage &rPage ) SAL_OVERRIDE;
274 : virtual short Ok() SAL_OVERRIDE;
275 : public:
276 : SwInsertSectionTabDialog(vcl::Window* pParent, const SfxItemSet& rSet, SwWrtShell& rSh);
277 : virtual ~SwInsertSectionTabDialog();
278 :
279 : void SetSectionData(SwSectionData const& rSect);
280 0 : SwSectionData * GetSectionData() { return m_pSectionData.get(); }
281 : };
282 :
283 : class SwSectionPropertyTabDialog : public SfxTabDialog
284 : {
285 : SwWrtShell& rWrtSh;
286 :
287 : sal_uInt16 m_nColumnPageId;
288 : sal_uInt16 m_nBackPageId;
289 : sal_uInt16 m_nNotePageId;
290 : sal_uInt16 m_nIndentPage;
291 :
292 : protected:
293 : virtual void PageCreated( sal_uInt16 nId, SfxTabPage &rPage ) SAL_OVERRIDE;
294 : public:
295 : SwSectionPropertyTabDialog(vcl::Window* pParent, const SfxItemSet& rSet, SwWrtShell& rSh);
296 : virtual ~SwSectionPropertyTabDialog();
297 : };
298 :
299 : #endif
300 :
301 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|