diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/tbxctrl.hxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/sfx2/tbxctrl.hxx b/include/sfx2/tbxctrl.hxx index 49b69bbcfcb5..fe1453a0a28c 100644 --- a/include/sfx2/tbxctrl.hxx +++ b/include/sfx2/tbxctrl.hxx @@ -315,6 +315,21 @@ protected: virtual VclPtr<SfxPopupWindow> CreatePopupWindow() SAL_OVERRIDE; }; +class SfxSaveAsToolBoxControl : public SfxToolBoxControl +{ +public: + // We don't use SFX_DECL_TOOLBOX_CONTROL() here as we need to have this + // RegisterControl() marked as SFX2_DLLPUBLIC + static SfxToolBoxControl* CreateImpl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox &rTbx ); + static void SFX2_DLLPUBLIC RegisterControl(sal_uInt16 nSlotId = 0, SfxModule *pMod=NULL); + + SfxSaveAsToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rBox ); + virtual ~SfxSaveAsToolBoxControl(); + +protected: + virtual VclPtr<SfxPopupWindow> CreatePopupWindow() SAL_OVERRIDE; +}; + class SfxReloadToolBoxControl_Impl : public SfxToolBoxControl { protected: |