summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/namedlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-04-10 10:04:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-04-10 12:14:27 +0100
commitb21824ba4e1e1448c859b8c3b29de6047cba0842 (patch)
treef0843b72049154cdb09268f024038d75d1afabc5 /sc/source/ui/inc/namedlg.hxx
parent92e74798a753b5eb595a5964cc8efe70e3a6e56b (diff)
adapt code to manage names dialog .ui conversion
Change-Id: I67d587c0241a1d8377aee199a30bfcc919e3faad
Diffstat (limited to 'sc/source/ui/inc/namedlg.hxx')
-rw-r--r--sc/source/ui/inc/namedlg.hxx47
1 files changed, 19 insertions, 28 deletions
diff --git a/sc/source/ui/inc/namedlg.hxx b/sc/source/ui/inc/namedlg.hxx
index 79a254a4f914..b6ed1968fb7d 100644
--- a/sc/source/ui/inc/namedlg.hxx
+++ b/sc/source/ui/inc/namedlg.hxx
@@ -46,37 +46,30 @@ class ScDocument;
class ScNameDlg : public ScAnyRefDlg
{
private:
- Edit maEdName;
- formula::RefEdit maEdAssign;
- formula::RefButton aRbAssign;
- ListBox maLbScope;
-
- DisclosureButton maBtnMore;
- CheckBox maBtnPrintArea;
- CheckBox maBtnColHeader;
- CheckBox maBtnCriteria;
- CheckBox maBtnRowHeader;
-
- PushButton maBtnAdd;
- PushButton maBtnDelete;
- HelpButton maBtnHelp;
- PushButton maBtnOk;
- PushButton maBtnCancel;
-
- FixedText maFtScope;
- FixedText maFtRange;
- FixedText maFtName;
- FixedLine maFlDiv;
- FixedText maFtInfo;
-
- SvxSimpleTableContainer maNameMgrCtrl;
- ScRangeManagerTable* mpRangeManagerTable;
+ Edit* m_pEdName;
+ formula::RefEdit* m_pEdAssign;
+ formula::RefButton* m_pRbAssign;
+ ListBox* m_pLbScope;
+
+ CheckBox* m_pBtnPrintArea;
+ CheckBox* m_pBtnColHeader;
+ CheckBox* m_pBtnCriteria;
+ CheckBox* m_pBtnRowHeader;
+
+ PushButton* m_pBtnAdd;
+ PushButton* m_pBtnDelete;
+ PushButton* m_pBtnOk;
+ PushButton* m_pBtnCancel;
+
+ FixedText* m_pFtInfo;
+
+ ScRangeManagerTable* m_pRangeManagerTable;
const OUString maGlobalNameStr;
const OUString maErrInvalidNameStr;
const OUString maErrNameInUse;
- const OUString maStrInfoDefault;
const OUString maStrMultiSelect;
+ OUString maStrInfoDefault;
ScViewData* mpViewData;
ScDocument* mpDoc;
@@ -111,7 +104,6 @@ private:
void NameSelected();
void ScopeChanged();
void NameModified();
- void MorePushed();
void SelectionChanged();
@@ -125,7 +117,6 @@ private:
DECL_LINK( AssignGetFocusHdl, void * );
DECL_LINK( SelectionChangedHdl_Impl, void* );
DECL_LINK( ScopeChangedHdl, void* );
- DECL_LINK( MoreBtnHdl, void* );
protected:
virtual void RefInputDone( sal_Bool bForced = sal_False );