diff options
author | gt <gt@openoffice.org> | 2001-09-05 06:59:33 +0000 |
---|---|---|
committer | gt <gt@openoffice.org> | 2001-09-05 06:59:33 +0000 |
commit | 13a3ac4b9b4d2b8274624a318c9f199fae8a82b7 (patch) | |
tree | 0a37378cd810705e0334665d77d62d2a0702efa1 /sfx2/source/inc/templdgi.hxx | |
parent | da96df7606a1bbad1b874a0376c39482f809727e (diff) |
#90729# ExecuteDrop asynchronous and enabled DEL-key
Diffstat (limited to 'sfx2/source/inc/templdgi.hxx')
-rw-r--r-- | sfx2/source/inc/templdgi.hxx | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/sfx2/source/inc/templdgi.hxx b/sfx2/source/inc/templdgi.hxx index c8a903ae0db2..df4eb28af94e 100644 --- a/sfx2/source/inc/templdgi.hxx +++ b/sfx2/source/inc/templdgi.hxx @@ -2,9 +2,9 @@ * * $RCSfile: templdgi.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: dv $ $Date: 2001-07-26 12:09:13 $ + * last change: $Author: gt $ $Date: 2001-09-05 07:59:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -107,6 +107,9 @@ class SfxDockingWindow; class DropListBox_Impl : public SvTreeListBox { +private: + DECL_LINK( OnAsyncExecuteDrop, SvLBoxEntry* ); + DECL_LINK( OnAsyncExecuteError, void* ); protected: SvLBoxEntry* pPreDropEntry; SfxCommonTemplateDialog_Impl* pDialog; @@ -120,12 +123,14 @@ public: SvTreeListBox( pParent, nWinBits ), pDialog( pD ), pPreDropEntry( NULL ) {} - virtual void MouseButtonDown( const MouseEvent& rMEvt ); + virtual void MouseButtonDown( const MouseEvent& rMEvt ); virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ); virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ); - USHORT GetModifier() const { return nModifier; } - SvLBoxEntry* GetPreDropEntry() const { return pPreDropEntry; } + USHORT GetModifier() const { return nModifier; } + SvLBoxEntry* GetPreDropEntry() const { return pPreDropEntry; } + + virtual long Notify( NotifyEvent& rNEvt ); }; // class SfxActionListBox ------------------------------------------------ |