Bump version to 6.4-15
[LibreOffice.git] / svx / source / inc / StylesPreviewToolBoxControl.hxx
blob8de721ab00323ee3f61fcf4c0a0617d0080f4277
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SVX_SOURCE_INC_STYLES_PREVIEW_TOOLBOX_CONTROL_HXX
21 #define INCLUDED_SVX_SOURCE_INC_STYLES_PREVIEW_TOOLBOX_CONTROL_HXX
23 #include <svx/svxdllapi.h>
24 #include <sfx2/tbxctrl.hxx>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include "StylesPreviewWindow.hxx"
27 #include <com/sun/star/frame/XFrame.hpp>
28 #include <com/sun/star/frame/XDispatchProvider.hpp>
30 class SVX_DLLPUBLIC StylesPreviewToolBoxControl final
31 : public cppu::ImplInheritanceHelper<svt::ToolboxController, css::lang::XServiceInfo>
33 VclPtr<StylesPreviewWindow_Impl> m_xVclBox;
34 std::unique_ptr<StylesPreviewWindow_Base> m_xWeldBox;
35 StylesPreviewWindow_Base* m_pBox;
37 css::uno::Reference<css::frame::XDispatchProvider> m_xDispatchProvider;
39 std::vector<std::pair<OUString, OUString>> m_aDefaultStyles;
41 public:
42 StylesPreviewToolBoxControl();
43 virtual ~StylesPreviewToolBoxControl() override;
45 // XStatusListener
46 virtual void SAL_CALL statusChanged(const css::frame::FeatureStateEvent& rEvent) override;
48 // XToolbarController
49 virtual css::uno::Reference<css::awt::XWindow>
50 SAL_CALL createItemWindow(const css::uno::Reference<css::awt::XWindow>& rParent) override;
52 // XInitialization
53 virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& aArguments) override;
55 // XComponent
56 virtual void SAL_CALL dispose() override;
58 // XUpdatable
59 virtual void SAL_CALL update() override;
61 // XServiceInfo
62 virtual OUString SAL_CALL getImplementationName() override;
63 virtual sal_Bool SAL_CALL supportsService(const OUString& rServiceName) override;
64 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
66 private:
67 void InitializeStyles(const css::uno::Reference<css::frame::XModel>& xModel);
70 #endif
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */