Bump version to 6.4-15
[LibreOffice.git] / include / svx / tbcontrl.hxx
blob9e6c387d2dda6f1b9f91badd3759b5edd6286f6b
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 <svl/style.hxx>
134 #include <sfx2/tbxctrl.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 SvxStyleBox_Impl;
149 class PaletteManager;
151 namespace svx
153 class ToolboxButtonColorUpdater;
156 class SVX_DLLPUBLIC SvxStyleToolBoxControl final : public SfxToolBoxControl
158 struct Impl;
159 std::unique_ptr<Impl> pImpl;
161 public:
162 SFX_DECL_TOOLBOX_CONTROL();
164 SvxStyleToolBoxControl(sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rToolBox);
165 virtual ~SvxStyleToolBoxControl() override;
167 virtual VclPtr<vcl::Window> CreateItemWindow(vcl::Window* pParent) override;
169 virtual void StateChanged(sal_uInt16 nSID, SfxItemState eState,
170 const SfxPoolItem* pState) override;
172 DECL_LINK( VisibilityNotification, SvxStyleBox_Impl&, void );
174 private:
175 // XInitialization
176 virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& aArguments) override;
178 // XUpdatable
179 virtual void SAL_CALL update() override;
181 // XComponent
182 virtual void SAL_CALL dispose() override;
184 #define MAX_FAMILIES 5
186 SfxStyleSheetBasePool* pStyleSheetPool;
187 SfxStyleControllerItem_Impl* pBoundItems[MAX_FAMILIES];
188 css::uno::Reference<css::lang::XComponent> m_xBoundItems[MAX_FAMILIES];
189 std::unique_ptr<SfxTemplateItem> pFamilyState[MAX_FAMILIES];
190 sal_uInt16 nActFamily; // Id in the ToolBox = Position - 1
192 SVX_DLLPRIVATE void Update();
193 SVX_DLLPRIVATE void FillStyleBox();
194 SVX_DLLPRIVATE void SelectStyle(const OUString& rStyleName);
196 friend class SfxStyleControllerItem_Impl;
198 SVX_DLLPRIVATE void SetFamilyState(sal_uInt16 nIdx, const SfxTemplateItem* pItem);
199 SVX_DLLPRIVATE SfxStyleFamily GetActFamily() const;
202 typedef std::function<void(const OUString&, const NamedColor&)> ColorSelectFunction;
204 class SVX_DLLPUBLIC SvxColorToolBoxControl final : public cppu::ImplInheritanceHelper< svt::PopupWindowController,
205 css::frame::XSubToolbarController >
207 std::unique_ptr<svx::ToolboxButtonColorUpdater> m_xBtnUpdater;
208 std::shared_ptr<PaletteManager> m_xPaletteManager;
209 ColorStatus m_aColorStatus;
210 bool m_bSplitButton;
211 sal_uInt16 m_nSlotId;
212 ColorSelectFunction m_aColorSelectFunction;
213 DECL_LINK(SelectedHdl, const NamedColor&, void);
214 public:
215 explicit SvxColorToolBoxControl( const css::uno::Reference<css::uno::XComponentContext>& rContext );
216 virtual ~SvxColorToolBoxControl() override;
218 // XInitialization
219 virtual void SAL_CALL initialize( const css::uno::Sequence<css::uno::Any>& rArguments ) override;
221 // XUpdatable
222 virtual void SAL_CALL update() override;
224 // XStatusListener
225 virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& rEvent ) override;
227 // XToolbarController
228 virtual void SAL_CALL execute( sal_Int16 nSelectModifier ) override;
230 using svt::ToolboxController::createPopupWindow;
231 virtual VclPtr<vcl::Window> createPopupWindow( vcl::Window* pParent ) override;
233 // XSubToolbarController
234 virtual sal_Bool SAL_CALL opensSubToolbar() override;
235 virtual OUString SAL_CALL getSubToolbarName() override;
236 virtual void SAL_CALL functionSelected( const OUString& rCommand ) override;
237 virtual void SAL_CALL updateImage() override;
239 // XServiceInfo
240 virtual OUString SAL_CALL getImplementationName() override;
241 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
243 void setColorSelectFunction(const ColorSelectFunction& aColorSelectFunction);
244 void EnsurePaletteManager();
247 class SVX_DLLPUBLIC SvxSimpleUndoRedoController final : public SfxToolBoxControl
249 private:
250 OUString aDefaultText;
252 public:
253 SFX_DECL_TOOLBOX_CONTROL();
254 SvxSimpleUndoRedoController(sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rToolBox);
255 virtual ~SvxSimpleUndoRedoController() override;
257 virtual void StateChanged(sal_uInt16 nSID, SfxItemState eState,
258 const SfxPoolItem* pState) override;
261 class SVX_DLLPUBLIC SvxCurrencyToolBoxControl final : public svt::PopupWindowController
263 private:
264 OUString m_aFormatString;
265 LanguageType m_eLanguage;
266 sal_uInt32 m_nFormatKey;
267 public:
268 static void GetCurrencySymbols( std::vector<OUString>& rList, bool bFlag,
269 std::vector<sal_uInt16>& rCurrencyList );
271 explicit SvxCurrencyToolBoxControl( const css::uno::Reference<css::uno::XComponentContext>& rContext );
272 virtual ~SvxCurrencyToolBoxControl() override;
274 // XToolbarController
275 virtual void SAL_CALL execute( sal_Int16 nSelectModifier ) override;
277 using svt::ToolboxController::createPopupWindow;
278 virtual VclPtr<vcl::Window> createPopupWindow( vcl::Window* pParent ) override;
280 // XServiceInfo
281 virtual OUString SAL_CALL getImplementationName() override;
282 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
284 // XInitialization
285 virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& rArguments ) override;
288 #endif // INCLUDED_SVX_TBCONTRL_HXX
290 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */