summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/simpref.hxx
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2000-11-09 18:56:06 +0000
committerNiklas Nebel <nn@openoffice.org>2000-11-09 18:56:06 +0000
commitc7eb1252fc8eebea33eb780bf2cb6cd9274cf847 (patch)
tree36912c819c1d5ff9c7dac671c70df84fbd0bb2bf /sc/source/ui/inc/simpref.hxx
parentc70eb2d73c992edb0f46ce2366f38cdcbcf7f2aa (diff)
#80170# links / flags for use with api
Diffstat (limited to 'sc/source/ui/inc/simpref.hxx')
-rw-r--r--sc/source/ui/inc/simpref.hxx15
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;}