Version 7.1.7.1, tag libreoffice-7.1.7.1
[LibreOffice.git] / svx / source / inc / StylesPreviewToolBoxControl.hxx
blobc7ac3f9953b63cc876797f04731ef7fe63074da3
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 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;
36 css::uno::Reference<css::frame::XDispatchProvider> m_xDispatchProvider;
38 std::vector<std::pair<OUString, OUString>> m_aDefaultStyles;
40 public:
41 StylesPreviewToolBoxControl();
42 virtual ~StylesPreviewToolBoxControl() override;
44 // XStatusListener
45 virtual void SAL_CALL statusChanged(const css::frame::FeatureStateEvent& rEvent) override;
47 // XToolbarController
48 virtual css::uno::Reference<css::awt::XWindow>
49 SAL_CALL createItemWindow(const css::uno::Reference<css::awt::XWindow>& rParent) override;
51 // XInitialization
52 virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& aArguments) override;
54 // XComponent
55 virtual void SAL_CALL dispose() override;
57 // XUpdatable
58 virtual void SAL_CALL update() override;
60 // XServiceInfo
61 virtual OUString SAL_CALL getImplementationName() override;
62 virtual sal_Bool SAL_CALL supportsService(const OUString& rServiceName) override;
63 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
65 private:
66 void InitializeStyles(const css::uno::Reference<css::frame::XModel>& xModel);
69 #endif
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */