Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / include / sfx2 / sidebar / SidebarToolBox.hxx
blob6e2d053a31dbb6522747d4478352bc5fe873a37f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
19 #ifndef INCLUDED_SFX2_SIDEBAR_SIDEBARTOOLBOX_HXX
20 #define INCLUDED_SFX2_SIDEBAR_SIDEBARTOOLBOX_HXX
22 #include <sfx2/dllapi.h>
23 #include <sfx2/sidebar/SidebarToolBox.hxx>
24 #include <vcl/toolbox.hxx>
25 #include <com/sun/star/frame/XDispatch.hpp>
26 #include <com/sun/star/frame/XFrame.hpp>
27 #include <com/sun/star/frame/XToolbarController.hpp>
28 #include <com/sun/star/util/URL.hpp>
29 #include <map>
32 namespace sfx2 { namespace sidebar {
34 /** The sidebar tool box has two responsibilities:
35 1. Coordinated location, size, and other states with its parent
36 background window.
37 2. Create and handle tool bar controller for its items.
39 class SFX2_DLLPUBLIC SidebarToolBox : public ToolBox
41 public:
42 SidebarToolBox(vcl::Window* pParentWindow);
43 virtual ~SidebarToolBox();
44 virtual void dispose() override;
46 using ToolBox::InsertItem;
47 virtual void InsertItem(const OUString& rCommand,
48 const css::uno::Reference<css::frame::XFrame>& rFrame,
49 ToolBoxItemBits nBits = ToolBoxItemBits::NONE,
50 const Size& rRequestedSize = Size(),
51 sal_uInt16 nPos = TOOLBOX_APPEND) override;
53 virtual bool Notify (NotifyEvent& rEvent) override;
55 void SetController(const sal_uInt16 nItemId,
56 const css::uno::Reference<css::frame::XToolbarController>& rxController);
58 css::uno::Reference<css::frame::XToolbarController> GetFirstController();
60 private:
61 typedef std::map<sal_uInt16, css::uno::Reference<css::frame::XToolbarController>> ControllerContainer;
62 ControllerContainer maControllers;
63 bool mbAreHandlersRegistered;
65 DECL_LINK_TYPED(DropDownClickHandler, ToolBox*, void);
66 DECL_LINK_TYPED(ClickHandler, ToolBox*, void);
67 DECL_LINK_TYPED(DoubleClickHandler, ToolBox*, void);
68 DECL_LINK_TYPED(SelectHandler, ToolBox*, void);
70 css::uno::Reference<css::frame::XToolbarController> GetControllerForItemId(const sal_uInt16 nItemId) const;
72 void CreateController(const sal_uInt16 nItemId,
73 const css::uno::Reference<css::frame::XFrame>& rxFrame,
74 const sal_Int32 nItemWidth = 0);
75 void RegisterHandlers();
79 } } // end of namespace sfx2::sidebar
81 #endif
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */