tdf#151073 - enable firebird for appstore build w/o experimental mode
[LibreOffice.git] / include / svx / tbcontrl.hxx
blob194db28a51f0a9cf8e8523394a5865fd18676c0c
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_SVX_TBCONTRL_HXX
20 #define INCLUDED_SVX_TBCONTRL_HXX
22 /*--------------------------------------------------------------*\
24 Description:
25 -------------
26 ToolBox-Controller for:
27 Font-Name, Font-Height, Font-Color
28 Fore-/Background color /-patterns
29 Frames, Lines
30 (indentation-)templates
32 Use:
33 ----------
34 SvxFontNameToolBoxControl
35 -------------------------
36 Item type: SvxFontItem
37 Execute-Id: SID_ATTR_CHAR_FONT
38 -> SvxFontItem
39 Additional information
40 from DocShell: SvxFontListItem (SID_ATTR_CHAR_FONTLIST)
42 SvxColorToolBoxControl
43 ----------------------
44 Item type: SvxColorItem
45 SvxLineItem
46 SfxBoolItem
47 XLineColorItem
48 and XFillColorItem
50 for font color (writer, ...)
51 Execute-Id SID_ATTR_CHAR_COLOR2
52 and SID_ATTR_CHAR_COLOR_EXT
54 for font color
55 (calc/impress/draw and writer drawing objects)
56 Execute-Id SID_ATTR_CHAR_COLOR
58 for character background color (writer)
59 Execute-Id SID_ATTR_CHAR_COLOR_BACKGROUND
60 and SID_ATTR_CHAR_COLOR_BACKGROUND_EXT
62 for paragraph background color (writer)
63 and cell background color (calc)
64 Execute-Id SID_BACKGROUND_COLOR
66 for table/cell border color (writer, calc)
67 Execute-Id SID_FRAME_LINECOLOR
69 for 3D extrusion
70 Execute-Id SID_EXTRUSION_3D_COLOR
72 for line color
73 Execute-Id SID_ATTR_LINE_COLOR
75 for area fill color
76 Execute-Id SID_ATTR_FILL_COLOR
78 SvxPatternToolBoxControl
79 ------------------------
80 Item type: SvxBrushItem
81 Execute-Id: SID_BACKGROUND_PATTERN
82 -> SvxBrushItem
83 Additional information
84 from DocShell: presently none
85 in future: color palette
86 Note: Analysis of BrushItem:
87 Brush-FillColor() is misused as switch,
88 to distinguish whether a new style
89 or a new color has been set
91 GetFillColor() == COL_BLACK -> GetStyle() ,
92 GetFillColor() == COL_WHITE -> GetColor()
94 SvxFrameToolBoxControl
95 ----------------------
96 Item type: SvxBoxItem
97 Execute-Id: SID_ATTR_BORDER
98 -> SvxBoxItem & SvxBoxInfoItem
99 Additional information
100 from DocShell: none
101 Note: provides, depending on chosen ValueSet-Item,
102 only SvxBoxItem or additionally SvxBoxInfoItem
103 If the Controller in SfxUInt16Item receives a
104 value != 0, paragraph mode will be switched on,
105 i.e. the last line will be hidden.
106 A value == 0 switches again to Table mode.
108 SvxFrameLineStyleToolBoxControl
109 -------------------------------
110 Item type: SvxLineItem
111 Execute-Id: SID_FRAME_LINESTYLE
112 -> SvxLineItem
113 Additional information
114 from DocShell: none
115 Note: provides a SvxLineItem, which provides a SvxBorderLine
116 without color information.
118 SvxStyleToolBoxControl
119 ----------------------
120 Item type: SfxTemplateItem
121 Execute-Id: SID_TEMPLATE_APPLY
122 -> StyleName (SfxStringItem)
123 -> eStyleFamily (SfxUInt16Item)
124 Additional information
125 from DocShell: none
126 Note: Switch family by Invalidate
127 at the Bindings (->SfxStyleControllerItem)
129 \*--------------------------------------------------------------*/
131 // ITEMID_... defines in the *.cxx
133 #include <config_options.h>
134 #include <svl/style.hxx>
135 #include <svx/svxdllapi.h>
136 #include <com/sun/star/frame/XSubToolbarController.hpp>
137 #include <svtools/popupwindowcontroller.hxx>
138 #include <svx/colorwindow.hxx>
139 #include <memory>
141 // important in the tbxctrls.hxx created with HeDaBu !!!
142 class SvxLineItem;
143 class SvxBoxInfoItem;
144 class SvxFontItem;
145 class SfxStyleControllerItem_Impl;
146 class SfxStyleSheetBasePool;
147 class SfxTemplateItem;
148 class PaletteManager;
150 namespace svx
152 class ToolboxButtonColorUpdaterBase;
155 class SvxStyleToolBoxControl final : public cppu::ImplInheritanceHelper<svt::ToolboxController,
156 css::lang::XServiceInfo>
158 struct Impl;
159 std::unique_ptr<Impl> pImpl;
161 public:
162 SvxStyleToolBoxControl();
163 virtual ~SvxStyleToolBoxControl() override;
165 // XStatusListener
166 virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& rEvent ) override;
168 // XToolbarController
169 virtual css::uno::Reference<css::awt::XWindow> SAL_CALL createItemWindow(const css::uno::Reference<css::awt::XWindow>& rParent) override;
171 // XInitialization
172 virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& aArguments) override;
174 // XUpdatable
175 virtual void SAL_CALL update() override;
177 // XComponent
178 virtual void SAL_CALL dispose() override;
180 // XServiceInfo
181 virtual OUString SAL_CALL getImplementationName() override;
182 virtual sal_Bool SAL_CALL supportsService(const OUString& rServiceName) override;
183 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
185 private:
186 #define MAX_FAMILIES 5
188 SfxStyleSheetBasePool* pStyleSheetPool;
189 rtl::Reference<SfxStyleControllerItem_Impl> m_xBoundItems[MAX_FAMILIES];
190 std::unique_ptr<SfxTemplateItem> pFamilyState[MAX_FAMILIES];
191 sal_uInt16 nActFamily; // Id in the ToolBox = Position - 1
193 void Update();
194 void FillStyleBox();
195 void SelectStyle(const OUString& rStyleName);
197 friend class SfxStyleControllerItem_Impl;
199 void SetFamilyState(sal_uInt16 nIdx, const SfxTemplateItem* pItem);
200 SfxStyleFamily GetActFamily() const;
203 typedef std::function<void(const OUString&, const svx::NamedThemedColor&)> ColorSelectFunction;
205 class SVXCORE_DLLPUBLIC SvxColorToolBoxControl final : public cppu::ImplInheritanceHelper< svt::PopupWindowController,
206 css::frame::XSubToolbarController >
208 std::unique_ptr<svx::ToolboxButtonColorUpdaterBase> m_xBtnUpdater;
209 std::shared_ptr<PaletteManager> m_xPaletteManager;
210 ColorStatus m_aColorStatus;
211 bool m_bSplitButton;
212 sal_uInt16 m_nSlotId;
213 ColorSelectFunction m_aColorSelectFunction;
214 DECL_DLLPRIVATE_LINK(SelectedHdl, const NamedColor&, void);
216 weld::Window* GetParentFrame() const;
218 public:
219 explicit SvxColorToolBoxControl( const css::uno::Reference<css::uno::XComponentContext>& rContext );
220 virtual ~SvxColorToolBoxControl() override;
222 // XInitialization
223 virtual void SAL_CALL initialize( const css::uno::Sequence<css::uno::Any>& rArguments ) override;
225 // XUpdatable
226 virtual void SAL_CALL update() override;
228 // XStatusListener
229 virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& rEvent ) override;
231 // XToolbarController
232 virtual void SAL_CALL execute( sal_Int16 nSelectModifier ) override;
234 virtual VclPtr<vcl::Window> createVclPopupWindow( vcl::Window* pParent ) override;
235 virtual std::unique_ptr<WeldToolbarPopup> weldPopupWindow() override;
237 // XSubToolbarController
238 virtual sal_Bool SAL_CALL opensSubToolbar() override;
239 virtual OUString SAL_CALL getSubToolbarName() override;
240 virtual void SAL_CALL functionSelected( const OUString& rCommand ) override;
241 virtual void SAL_CALL updateImage() override;
243 // XServiceInfo
244 virtual OUString SAL_CALL getImplementationName() override;
245 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
247 void setColorSelectFunction(const ColorSelectFunction& aColorSelectFunction);
248 void EnsurePaletteManager();
251 class UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC) SvxCurrencyToolBoxControl final : public svt::PopupWindowController
253 private:
254 OUString m_aFormatString;
255 LanguageType m_eLanguage;
256 sal_uInt32 m_nFormatKey;
258 public:
259 static void GetCurrencySymbols( std::vector<OUString>& rList, bool bFlag,
260 std::vector<sal_uInt16>& rCurrencyList );
262 explicit SvxCurrencyToolBoxControl( const css::uno::Reference<css::uno::XComponentContext>& rContext );
263 virtual ~SvxCurrencyToolBoxControl() override;
265 // XToolbarController
266 virtual void SAL_CALL execute( sal_Int16 nSelectModifier ) override;
268 virtual VclPtr<vcl::Window> createVclPopupWindow( vcl::Window* pParent ) override;
269 virtual std::unique_ptr<WeldToolbarPopup> weldPopupWindow() override;
271 // XServiceInfo
272 virtual OUString SAL_CALL getImplementationName() override;
273 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
275 // XInitialization
276 virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& rArguments ) override;
279 #endif // INCLUDED_SVX_TBCONTRL_HXX
281 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */