update credits
[LibreOffice.git] / svx / source / sidebar / insert / InsertPropertyPanel.hxx
blobbd58a3a0f25675145c4cabab77cac0c01a8e3435
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 #ifndef SVX_SIDEBAR_INSERT_PROPERTY_PAGE_HXX
19 #define SVX_SIDEBAR_INSERT_PROPERTY_PAGE_HXX
21 #include <boost/scoped_ptr.hpp>
23 #include <vcl/ctrl.hxx>
24 #include <com/sun/star/frame/XFrame.hpp>
25 #include <com/sun/star/frame/XDispatch.hpp>
26 #include <com/sun/star/frame/XToolbarController.hpp>
28 #include <map>
31 namespace css = ::com::sun::star;
32 namespace cssu = ::com::sun::star::uno;
34 class ToolBox;
36 namespace svx { namespace sidebar {
38 /** This panel provides buttons for inserting shapes into a document.
40 class InsertPropertyPanel
41 : public Control
43 public:
44 InsertPropertyPanel (
45 Window* pParent,
46 const cssu::Reference<css::frame::XFrame>& rxFrame);
47 virtual ~InsertPropertyPanel (void);
49 private:
50 ::boost::scoped_ptr<Window> mpStandardShapesBackground;
51 ::boost::scoped_ptr<ToolBox> mpStandardShapesToolBox;
52 ::boost::scoped_ptr<Window> mpCustomShapesBackground;
53 ::boost::scoped_ptr<ToolBox> mpCustomShapesToolBox;
54 const cssu::Reference<css::frame::XFrame> mxFrame;
56 DECL_LINK(WindowEventListener, VclSimpleEvent*);
60 } } // end of namespace ::svx::sidebar
62 #endif