diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-01-14 11:30:55 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-01-14 14:34:46 +0100 |
commit | 85307c10d3ca4d7c9ed3fa1ca3700a6330b09da8 (patch) | |
tree | aa29b3fb22d729f38009e12b8879b749d6f40053 /sw/inc | |
parent | a41fe32ba989cad3b6e2e20793b3fff469230eb6 (diff) |
rework PageColumnPopup to be a PopupWindowController
Change-Id: I00d0ce6001f2eb3076c699bca7c64a72b94716c9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86751
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/PageColumnPopup.hxx | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/sw/inc/PageColumnPopup.hxx b/sw/inc/PageColumnPopup.hxx index b0df45df4a96..a16b2893c807 100644 --- a/sw/inc/PageColumnPopup.hxx +++ b/sw/inc/PageColumnPopup.hxx @@ -19,18 +19,24 @@ #ifndef INCLUDED_SW_INC_PAGECOLUMNPOPUP_HXX #define INCLUDED_SW_INC_PAGECOLUMNPOPUP_HXX -#include <sfx2/tbxctrl.hxx> +#include <svtools/popupwindowcontroller.hxx> #include "swdllapi.h" -class PageColumnPopup final : public SfxToolBoxControl +class PageColumnPopup final : public svt::PopupWindowController { public: - SFX_DECL_TOOLBOX_CONTROL(); - - PageColumnPopup(sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx); + PageColumnPopup(const css::uno::Reference<css::uno::XComponentContext>& rContext); virtual ~PageColumnPopup() override; - virtual VclPtr<SfxPopupWindow> CreatePopupWindow() override; + using svt::ToolboxController::createPopupWindow; + virtual VclPtr<vcl::Window> createPopupWindow( vcl::Window* pParent ) override; + + // XServiceInfo + virtual OUString SAL_CALL getImplementationName() override; + virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override; + + // XInitialization + virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& rArguments ) override; }; #endif |