bump product version to 4.1.6.2
[LibreOffice.git] / sfx2 / source / sidebar / ControlFactory.cxx
blob3c0c02ae64cde6edbe1ae1ce91e1107646e8038f
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 #include "sidebar/ControlFactory.hxx"
20 #include "MenuButton.hxx"
21 #include "TabItem.hxx"
22 #include "sfx2/sidebar/SidebarToolBox.hxx"
23 #include "ToolBoxBackground.hxx"
24 #include "CustomImageRadioButton.hxx"
25 #include <vcl/toolbox.hxx>
28 namespace sfx2 { namespace sidebar {
31 CheckBox* ControlFactory::CreateMenuButton (Window* pParentWindow)
33 return new MenuButton(pParentWindow);
39 ImageRadioButton* ControlFactory::CreateTabItem (Window* pParentWindow)
41 return new TabItem(pParentWindow);
47 SidebarToolBox* ControlFactory::CreateToolBox (
48 Window* pParentWindow,
49 const ResId& rResId)
51 SidebarToolBox* pToolBox = new SidebarToolBox(pParentWindow, rResId, NULL);
52 pToolBox->SetBorderWindow(pParentWindow);
54 pToolBox->Invalidate();
56 return pToolBox;
62 SidebarToolBox* ControlFactory::CreateToolBox (
63 Window* pParentWindow,
64 const ResId& rResId,
65 const cssu::Reference<css::frame::XFrame>& rxFrame)
67 SidebarToolBox* pToolBox = new SidebarToolBox(pParentWindow, rResId, rxFrame);
68 pToolBox->SetBorderWindow(pParentWindow);
70 pToolBox->Invalidate();
72 return pToolBox;
78 Window* ControlFactory::CreateToolBoxBackground (
79 Window* pParentWindow,
80 const bool bShowBorder)
82 ToolBoxBackground* pBorderWindow = new ToolBoxBackground(pParentWindow, bShowBorder);
83 pBorderWindow->Show();
84 return pBorderWindow;
90 ImageRadioButton* ControlFactory::CreateCustomImageRadionButton(
91 Window* pParentWindow,
92 const ResId& rResId )
94 return new CustomImageRadioButton(
95 pParentWindow,
96 rResId );
99 } } // end of namespace sfx2::sidebar