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
,
51 SidebarToolBox
* pToolBox
= new SidebarToolBox(pParentWindow
, rResId
, NULL
);
52 pToolBox
->SetBorderWindow(pParentWindow
);
54 pToolBox
->Invalidate();
62 SidebarToolBox
* ControlFactory::CreateToolBox (
63 Window
* pParentWindow
,
65 const cssu::Reference
<css::frame::XFrame
>& rxFrame
)
67 SidebarToolBox
* pToolBox
= new SidebarToolBox(pParentWindow
, rResId
, rxFrame
);
68 pToolBox
->SetBorderWindow(pParentWindow
);
70 pToolBox
->Invalidate();
78 Window
* ControlFactory::CreateToolBoxBackground (
79 Window
* pParentWindow
,
80 const bool bShowBorder
)
82 ToolBoxBackground
* pBorderWindow
= new ToolBoxBackground(pParentWindow
, bShowBorder
);
83 pBorderWindow
->Show();
90 ImageRadioButton
* ControlFactory::CreateCustomImageRadionButton(
91 Window
* pParentWindow
,
94 return new CustomImageRadioButton(
99 } } // end of namespace sfx2::sidebar