summaryrefslogtreecommitdiff
path: root/sw/source/ui/inc/regionsw.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-04-26 11:07:08 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-04-26 13:40:06 +0100
commitf5e003050c65669d53d0d4d2208b2b4d1b699a86 (patch)
treef923bde1de06c01c55d5c5c883ceeba90ab4b16d /sw/source/ui/inc/regionsw.hxx
parent64dafbe584fe7644ec29b96b6a9a9588ba4619bd (diff)
convert edit section dialog to .ui
Change-Id: I7467b0d9f32c0a006bedf88f6658ffffcd28db5f
Diffstat (limited to 'sw/source/ui/inc/regionsw.hxx')
-rw-r--r--sw/source/ui/inc/regionsw.hxx57
1 files changed, 26 insertions, 31 deletions
diff --git a/sw/source/ui/inc/regionsw.hxx b/sw/source/ui/inc/regionsw.hxx
index ef8657324ab5..14265da12b72 100644
--- a/sw/source/ui/inc/regionsw.hxx
+++ b/sw/source/ui/inc/regionsw.hxx
@@ -27,6 +27,7 @@
#include <vcl/fixed.hxx>
#include <vcl/combobox.hxx>
#include <vcl/group.hxx>
+#include <vcl/layout.hxx>
#include <svtools/treelistbox.hxx>
#include <sfx2/basedlgs.hxx>
#include <sfx2/tabdlg.hxx>
@@ -62,40 +63,34 @@ typedef boost::ptr_set<SectRepr> SectReprArr;
class SwEditRegionDlg : public SfxModalDialog
{
- FixedLine aNameFL;
- Edit aCurName;
- SvTreeListBox aTree;
-
- FixedLine aLinkFL;
- TriStateBox aFileCB;
- CheckBox aDDECB;
- FixedText aFileNameFT;
- FixedText aDDECommandFT;
- Edit aFileNameED;
- PushButton aFilePB;
- FixedText aSubRegionFT;
- ComboBox aSubRegionED;
- bool bSubRegionsFilled;
-
- FixedLine aProtectFL;
- TriStateBox aProtectCB;
- CheckBox aPasswdCB;
- PushButton aPasswdPB;
-
- FixedLine aHideFL;
- TriStateBox aHideCB;
- FixedText aConditionFT;
- ConditionEdit aConditionED;
+ Edit* m_pCurName;
+ SvTreeListBox* m_pTree;
+
+ TriStateBox* m_pFileCB;
+ CheckBox* m_pDDECB;
+ VclContainer* m_pDDEFrame;
+ FixedText* m_pFileNameFT;
+ FixedText* m_pDDECommandFT;
+ Edit* m_pFileNameED;
+ PushButton* m_pFilePB;
+ FixedText* m_pSubRegionFT;
+ ComboBox* m_pSubRegionED;
+ bool m_bSubRegionsFilled;
+
+ TriStateBox* m_pProtectCB;
+ CheckBox* m_pPasswdCB;
+ PushButton* m_pPasswdPB;
+
+ TriStateBox* m_pHideCB;
+ FixedText* m_pConditionFT;
+ ConditionEdit* m_pConditionED;
// #114856# edit in readonly sections
- FixedLine aPropertiesFL;
- TriStateBox aEditInReadonlyCB;
+ TriStateBox* m_pEditInReadonlyCB;
- OKButton aOK;
- CancelButton aCancel;
- PushButton aOptionsPB;
- PushButton aDismiss;
- HelpButton aHelp;
+ OKButton* m_pOK;
+ PushButton* m_pOptionsPB;
+ PushButton* m_pDismiss;
ImageList aImageIL;
SwWrtShell& rSh;