summaryrefslogtreecommitdiffstats
path: root/sw/source/ui/inc/insfnote.hxx
diff options
context:
space:
mode:
authorJack Leigh <leighman@gmx.se>2012-11-29 00:07:04 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-11-30 15:34:51 +0000
commit99d0ddf89c1c13f6b897d6b11009b777c6d735ca (patch)
tree1d3eebe76c20759dd549b5f989664ee6a599ecad /sw/source/ui/inc/insfnote.hxx
parentFind a more sensible place for css (diff)
downloadcore-99d0ddf89c1c13f6b897d6b11009b777c6d735ca.tar.gz
core-99d0ddf89c1c13f6b897d6b11009b777c6d735ca.zip
migrate 'Insert Footnote' dialog to .ui file
Conflicts: sw/source/ui/misc/insfnote.src Change-Id: If16285d85bca187b2e929f0327b15f103b5d786f
Diffstat (limited to 'sw/source/ui/inc/insfnote.hxx')
-rw-r--r--sw/source/ui/inc/insfnote.hxx38
1 files changed, 19 insertions, 19 deletions
diff --git a/sw/source/ui/inc/insfnote.hxx b/sw/source/ui/inc/insfnote.hxx
index 53253a2354b3..71ee27acd303 100644
--- a/sw/source/ui/inc/insfnote.hxx
+++ b/sw/source/ui/inc/insfnote.hxx
@@ -28,6 +28,8 @@
class SwWrtShell;
+class VclFrame;
+
class SwInsFootNoteDlg: public SvxStandardDialog
{
SwWrtShell &rSh;
@@ -37,28 +39,26 @@ class SwInsFootNoteDlg: public SvxStandardDialog
CharSet eCharSet;
sal_Bool bExtCharAvailable;
sal_Bool bEdit;
- FixedLine aNumberFL;
- RadioButton aNumberAutoBtn;
- RadioButton aNumberCharBtn;
- Edit aNumberCharEdit;
- PushButton aNumberExtChar;
+
+ VclFrame* m_pNumberFrame;
+ RadioButton* m_pNumberAutoBtn;
+ RadioButton* m_pNumberCharBtn;
+ Edit* m_pNumberCharEdit;
+ PushButton* m_pNumberExtChar;
// everything for the selection footnote/endnote
- FixedLine aTypeFL;
- RadioButton aFtnBtn;
- RadioButton aEndNoteBtn;
+ RadioButton* m_pFtnBtn;
+ RadioButton* m_pEndNoteBtn;
- OKButton aOkBtn;
- CancelButton aCancelBtn;
- HelpButton aHelpBtn;
- ImageButton aPrevBT;
- ImageButton aNextBT;
+ PushButton* m_pOkBtn;
+ PushButton* m_pPrevBT;
+ PushButton* m_pNextBT;
DECL_LINK(NumberCharHdl, void *);
- DECL_LINK( NumberEditHdl, void * );
+ DECL_LINK(NumberEditHdl, void *);
DECL_LINK(NumberAutoBtnHdl, void *);
DECL_LINK(NumberExtCharHdl, void *);
- DECL_LINK( NextPrevHdl, Button * );
+ DECL_LINK(NextPrevHdl, Button *);
virtual void Apply();
@@ -69,13 +69,13 @@ public:
~SwInsFootNoteDlg();
CharSet GetCharSet() { return eCharSet; }
- sal_Bool IsExtCharAvailable() { return bExtCharAvailable; }
+ sal_Bool IsExtCharAvailable() { return bExtCharAvailable; }
String GetFontName() { return aFontName; }
- sal_Bool IsEndNote() { return aEndNoteBtn.IsChecked(); }
+ sal_Bool IsEndNote() { return m_pEndNoteBtn->IsChecked(); }
String GetStr()
{
- if ( aNumberCharBtn.IsChecked() )
- return aNumberCharEdit.GetText();
+ if ( m_pNumberCharBtn->IsChecked() )
+ return m_pNumberCharEdit->GetText();
else
return String();
}