diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-03-23 15:22:08 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-03-23 15:22:08 +0000 |
commit | 9c543eafc2cdcf3e08a98d67410fcf5d78ba1898 (patch) | |
tree | 23a1a82ecd3fb8f9b26b51b1e020fc8e353dc66c /sfx2/inc | |
parent | 27b3a04c7875a2087a86b20d46e48190ca6fed82 (diff) |
INTEGRATION: CWS fwkfinal2 (1.11.94); FILE MERGED
2005/03/15 11:56:47 cd 1.11.94.1: #i42261# Support keyboard shortcuts in url box
Diffstat (limited to 'sfx2/inc')
-rw-r--r-- | sfx2/inc/inettbc.hxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sfx2/inc/inettbc.hxx b/sfx2/inc/inettbc.hxx index 1a49ebbbd7a4..bdce166e17ee 100644 --- a/sfx2/inc/inettbc.hxx +++ b/sfx2/inc/inettbc.hxx @@ -2,9 +2,9 @@ * * $RCSfile: inettbc.hxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: rt $ $Date: 2005-01-27 10:18:30 $ + * last change: $Author: vg $ $Date: 2005-03-23 16:22:08 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -69,6 +69,9 @@ #ifndef _COMBOBOX_HXX //autogen #include <vcl/combobox.hxx> #endif +#ifndef INCLUDED_SVTOOLS_ACCELERATOREXECUTE_HXX +#include <svtools/acceleratorexecute.hxx> +#endif #if _SOLAR__PRIVATE @@ -78,11 +81,14 @@ class SvtURLBox; class SfxURLToolBoxControl_Impl : public SfxToolBoxControl { private: + ::svt::AcceleratorExecute* pAccExec; + SvtURLBox* GetURLBox() const; void OpenURL( const String& rName, BOOL bNew ) const; DECL_LINK( OpenHdl, void* ); DECL_LINK( SelectHdl, void* ); + DECL_LINK( WindowEventListener, VclSimpleEvent* ); struct ExecuteInfo { @@ -98,6 +104,7 @@ public: SFX_DECL_TOOLBOX_CONTROL(); SfxURLToolBoxControl_Impl( USHORT nSlotId, USHORT nId, ToolBox& rBox ); + virtual ~SfxURLToolBoxControl_Impl(); virtual Window* CreateItemWindow( Window* pParent ); virtual void StateChanged( USHORT nSID, SfxItemState eState, const SfxPoolItem* pState ); |