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 : Edit* m_pCurName;
65 : SvTreeListBox* m_pTree;
66 :
67 : TriStateBox* m_pFileCB;
68 : CheckBox* m_pDDECB;
69 : VclContainer* m_pDDEFrame;
70 : FixedText* m_pFileNameFT;
71 : FixedText* m_pDDECommandFT;
72 : Edit* m_pFileNameED;
73 : PushButton* m_pFilePB;
74 : FixedText* m_pSubRegionFT;
75 : ComboBox* m_pSubRegionED;
76 : bool m_bSubRegionsFilled;
77 :
78 : TriStateBox* m_pProtectCB;
79 : CheckBox* m_pPasswdCB;
80 : PushButton* m_pPasswdPB;
81 :
82 : TriStateBox* m_pHideCB;
83 : FixedText* m_pConditionFT;
84 : ConditionEdit* m_pConditionED;
85 :
86 : // #114856# edit in readonly sections
87 : TriStateBox* m_pEditInReadonlyCB;
88 :
89 : OKButton* m_pOK;
90 : PushButton* m_pOptionsPB;
91 : PushButton* m_pDismiss;
92 : ImageList aImageIL;
93 :
94 : SwWrtShell& rSh;
95 : SectReprArr aSectReprArr;
96 : const SwSection* pCurrSect;
97 : sfx2::DocumentInserter* m_pDocInserter;
98 : 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 SwSectionFmt* pFmt, SvTreeListEntry* pEntry);
106 : sal_uInt16 FindArrPos(const SwSectionFmt* pFmt);
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 :
135 : void SelectSection(const OUString& rSectionName);
136 :
137 : };
138 :
139 : // dialog "insert region"
140 : class SwInsertSectionTabPage : public SfxTabPage
141 : {
142 : ComboBox* m_pCurName;
143 :
144 : CheckBox* m_pFileCB;
145 : CheckBox* m_pDDECB;
146 : FixedText* m_pDDECommandFT;
147 : FixedText* m_pFileNameFT;
148 : Edit* m_pFileNameED;
149 : PushButton* m_pFilePB;
150 : FixedText* m_pSubRegionFT;
151 : ComboBox* m_pSubRegionED;
152 :
153 : CheckBox* m_pProtectCB;
154 : CheckBox* m_pPasswdCB;
155 : PushButton* m_pPasswdPB;
156 :
157 : CheckBox* m_pHideCB;
158 : FixedText* m_pConditionFT;
159 : ConditionEdit* m_pConditionED;
160 :
161 : // #114856# edit in readonly sections
162 : CheckBox* m_pEditInReadonlyCB;
163 :
164 : OUString m_sFileName;
165 : OUString m_sFilterName;
166 : OUString m_sFilePasswd;
167 :
168 : ::com::sun::star::uno::Sequence <sal_Int8 > m_aNewPasswd;
169 : SwWrtShell* m_pWrtSh;
170 : sfx2::DocumentInserter* m_pDocInserter;
171 : vcl::Window* m_pOldDefDlgParent;
172 :
173 : DECL_LINK( ChangeHideHdl, CheckBox * );
174 : // #114856# edit in readonly sections
175 : DECL_LINK(ChangeEditInReadonlyHdl, void *);
176 : DECL_LINK( ChangeProtectHdl, CheckBox * );
177 : DECL_LINK( ChangePasswdHdl, Button * );
178 : DECL_LINK(NameEditHdl, void *);
179 : DECL_LINK( UseFileHdl, CheckBox* );
180 : DECL_LINK(FileSearchHdl, void *);
181 : DECL_LINK( DDEHdl, CheckBox* );
182 : DECL_LINK( DlgClosedHdl, sfx2::FileDialogHelper* );
183 :
184 : public:
185 : SwInsertSectionTabPage(vcl::Window *pParent, const SfxItemSet &rAttrSet);
186 : virtual ~SwInsertSectionTabPage();
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 SfxTabPage* Create( vcl::Window* pParent,
194 : const SfxItemSet* rAttrSet);
195 : };
196 :
197 : class SwSectionFtnEndTabPage : public SfxTabPage
198 : {
199 : CheckBox* pFtnNtAtTextEndCB;
200 :
201 : CheckBox* pFtnNtNumCB;
202 : FixedText* pFtnOffsetLbl;
203 : NumericField* pFtnOffsetFld;
204 :
205 : CheckBox* pFtnNtNumFmtCB;
206 : FixedText* pFtnPrefixFT;
207 : Edit* pFtnPrefixED;
208 : SwNumberingTypeListBox* pFtnNumViewBox;
209 : FixedText* pFtnSuffixFT;
210 : Edit* pFtnSuffixED;
211 :
212 : CheckBox* pEndNtAtTextEndCB;
213 :
214 : CheckBox* pEndNtNumCB;
215 : FixedText* pEndOffsetLbl;
216 : NumericField* pEndOffsetFld;
217 :
218 : CheckBox* pEndNtNumFmtCB;
219 : FixedText* pEndPrefixFT;
220 : Edit* pEndPrefixED;
221 : SwNumberingTypeListBox* pEndNumViewBox;
222 : FixedText* pEndSuffixFT;
223 : Edit* pEndSuffixED;
224 :
225 : DECL_LINK( FootEndHdl, CheckBox * );
226 : void ResetState( bool bFtn, const SwFmtFtnEndAtTxtEnd& );
227 :
228 : public:
229 : SwSectionFtnEndTabPage( vcl::Window *pParent, const SfxItemSet &rAttrSet );
230 : virtual ~SwSectionFtnEndTabPage();
231 :
232 : virtual bool FillItemSet( SfxItemSet* ) SAL_OVERRIDE;
233 : virtual void Reset( const SfxItemSet* ) SAL_OVERRIDE;
234 :
235 : static SfxTabPage* Create( vcl::Window* pParent,
236 : const SfxItemSet* rAttrSet);
237 : };
238 :
239 : class SwSectionIndentTabPage : public SfxTabPage
240 : {
241 : MetricField* m_pBeforeMF;
242 : MetricField* m_pAfterMF;
243 : SvxParaPrevWindow* m_pPreviewWin;
244 :
245 : DECL_LINK(IndentModifyHdl, void *);
246 : public:
247 : SwSectionIndentTabPage( vcl::Window *pParent, const SfxItemSet &rAttrSet );
248 : virtual ~SwSectionIndentTabPage();
249 :
250 : virtual bool FillItemSet( SfxItemSet* ) SAL_OVERRIDE;
251 : virtual void Reset( const SfxItemSet* ) SAL_OVERRIDE;
252 :
253 : static SfxTabPage* Create( vcl::Window* pParent,
254 : const SfxItemSet* rAttrSet);
255 :
256 : void SetWrtShell(SwWrtShell& rSh);
257 : };
258 :
259 : class SwInsertSectionTabDialog : public SfxTabDialog
260 : {
261 : SwWrtShell& rWrtSh;
262 : ::std::unique_ptr<SwSectionData> m_pSectionData;
263 :
264 : sal_uInt16 m_nSectionPageId;
265 : sal_uInt16 m_nColumnPageId;
266 : sal_uInt16 m_nBackPageId;
267 : sal_uInt16 m_nNotePageId;
268 : sal_uInt16 m_nIndentPage;
269 :
270 : protected:
271 : virtual void PageCreated( sal_uInt16 nId, SfxTabPage &rPage ) SAL_OVERRIDE;
272 : virtual short Ok() SAL_OVERRIDE;
273 : public:
274 : SwInsertSectionTabDialog(vcl::Window* pParent, const SfxItemSet& rSet, SwWrtShell& rSh);
275 : virtual ~SwInsertSectionTabDialog();
276 :
277 : void SetSectionData(SwSectionData const& rSect);
278 0 : SwSectionData * GetSectionData() { return m_pSectionData.get(); }
279 : };
280 :
281 : class SwSectionPropertyTabDialog : public SfxTabDialog
282 : {
283 : SwWrtShell& rWrtSh;
284 :
285 : sal_uInt16 m_nColumnPageId;
286 : sal_uInt16 m_nBackPageId;
287 : sal_uInt16 m_nNotePageId;
288 : sal_uInt16 m_nIndentPage;
289 :
290 : protected:
291 : virtual void PageCreated( sal_uInt16 nId, SfxTabPage &rPage ) SAL_OVERRIDE;
292 : public:
293 : SwSectionPropertyTabDialog(vcl::Window* pParent, const SfxItemSet& rSet, SwWrtShell& rSh);
294 : virtual ~SwSectionPropertyTabDialog();
295 : };
296 :
297 : #endif
298 :
299 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|