diff options
Diffstat (limited to 'sc/source/ui/inc/simpref.hxx')
-rw-r--r-- | sc/source/ui/inc/simpref.hxx | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/sc/source/ui/inc/simpref.hxx b/sc/source/ui/inc/simpref.hxx index 62a2310f7630..1da3e1558123 100644 --- a/sc/source/ui/inc/simpref.hxx +++ b/sc/source/ui/inc/simpref.hxx @@ -2,9 +2,9 @@ * * $RCSfile: simpref.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:45:00 $ + * last change: $Author: nn $ $Date: 2000-11-09 19:55:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -99,8 +99,11 @@ class ScDocument; class ScSimpleRefDlg: public ScAnyRefDlg { private: - Link aCloseHdl; + Link aDoneHdl; + Link aAbortedHdl; + Link aChangeHdl; + FixedText aFtAssign; ScRefEdit aEdAssign; ScRefButton aRbAssign; @@ -116,6 +119,8 @@ private: ScRange theCurArea; BOOL bCloseFlag; BOOL bAutoReOpen; + BOOL bCloseOnButtonUp; + void Init(); DECL_LINK( CancelBtnHdl, void * ); @@ -144,6 +149,10 @@ public: virtual void FillInfo(SfxChildWinInfo&) const; void SetCloseHdl( const Link& rLink ); + void SetUnoLinks( const Link& rDone, const Link& rAbort, + const Link& rChange ); + + void SetFlags( BOOL bSetCloseOnButtonUp ); void SetAutoReOpen(BOOL bFlag) {bAutoReOpen=bFlag;} |