Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / svx / tbcontrl.hxx
blob21c21f5e0c10800897897d5d97e677d7c662e767
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 <rsc/rscsfx.hxx>
134 #include <svl/lstner.hxx>
135 #include <sfx2/tbxctrl.hxx>
136 #include <svx/strarray.hxx>
137 #include <svx/svxdllapi.h>
138 #include <com/sun/star/awt/FontDescriptor.hpp>
139 #include <svx/colorwindow.hxx>
140 #include <svx/PaletteManager.hxx>
141 #include <memory>
143 // important in the tbxctrls.hxx created with HeDaBu !!!
144 class SvxLineItem;
145 class SvxBoxInfoItem;
146 class SvxFontItem;
147 class SfxStyleControllerItem_Impl;
148 class SfxStyleSheetBasePool;
149 class SfxTemplateItem;
150 class SvxStyleBox_Impl;
152 namespace svx
154 class ToolboxButtonColorUpdater;
157 class SVX_DLLPUBLIC SvxStyleToolBoxControl : public SfxToolBoxControl
159 struct Impl;
160 std::unique_ptr<Impl> pImpl;
162 public:
163 SFX_DECL_TOOLBOX_CONTROL();
165 SvxStyleToolBoxControl(sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rToolBox);
166 virtual ~SvxStyleToolBoxControl() override;
168 virtual VclPtr<vcl::Window> CreateItemWindow(vcl::Window* pParent) override;
170 virtual void StateChanged(sal_uInt16 nSID, SfxItemState eState,
171 const SfxPoolItem* pState) override;
173 DECL_LINK( VisibilityNotification, SvxStyleBox_Impl&, void );
174 protected:
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 private:
186 #define MAX_FAMILIES 5
188 SfxStyleSheetBasePool* pStyleSheetPool;
189 SfxStyleControllerItem_Impl* pBoundItems[MAX_FAMILIES];
190 css::uno::Reference<css::lang::XComponent> m_xBoundItems[MAX_FAMILIES];
191 SfxTemplateItem* pFamilyState[MAX_FAMILIES];
192 sal_uInt16 nActFamily; // Id in the ToolBox = Position - 1
194 SVX_DLLPRIVATE void Update();
195 SVX_DLLPRIVATE void FillStyleBox();
196 SVX_DLLPRIVATE void SelectStyle(const OUString& rStyleName);
198 friend class SfxStyleControllerItem_Impl;
200 SVX_DLLPRIVATE void SetFamilyState(sal_uInt16 nIdx, const SfxTemplateItem* pItem);
201 SVX_DLLPRIVATE SfxStyleFamily GetActFamily();
204 typedef std::function<void(const OUString&, const NamedColor&)> ColorSelectFunction;
206 class SVX_DLLPUBLIC SvxColorToolBoxControl : public cppu::ImplInheritanceHelper< SfxToolBoxControl,
207 css::frame::XSubToolbarController >
209 std::unique_ptr<svx::ToolboxButtonColorUpdater> m_xBtnUpdater;
210 std::unique_ptr<PaletteManager> m_xPaletteManager;
211 BorderColorStatus m_aBorderColorStatus;
212 bool m_bSplitButton;
213 ColorSelectFunction m_aColorSelectFunction;
214 DECL_LINK(SelectedHdl, const NamedColor&, void);
215 public:
216 SFX_DECL_TOOLBOX_CONTROL();
217 SvxColorToolBoxControl(sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rToolBox);
218 virtual ~SvxColorToolBoxControl() override;
220 // XStatusListener
221 virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& rEvent ) override;
223 virtual VclPtr<SfxPopupWindow> CreatePopupWindow() override;
224 virtual void Select(sal_uInt16 nSelectModifier) override;
226 // XSubToolbarController
227 virtual sal_Bool SAL_CALL opensSubToolbar() override;
228 virtual OUString SAL_CALL getSubToolbarName() override;
229 virtual void SAL_CALL functionSelected( const OUString& rCommand ) override;
230 virtual void SAL_CALL updateImage() override;
232 void setColorSelectFunction(const ColorSelectFunction& aColorSelectFunction);
233 void EnsurePaletteManager();
236 class SVX_DLLPUBLIC SvxSimpleUndoRedoController : public SfxToolBoxControl
238 private:
239 OUString aDefaultText;
241 public:
242 SFX_DECL_TOOLBOX_CONTROL();
243 SvxSimpleUndoRedoController(sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rToolBox);
244 virtual ~SvxSimpleUndoRedoController() override;
246 virtual void StateChanged(sal_uInt16 nSID, SfxItemState eState,
247 const SfxPoolItem* pState) override;
250 class SVX_DLLPUBLIC SvxCurrencyToolBoxControl : public SfxToolBoxControl
252 private:
253 OUString m_aFormatString;
254 LanguageType m_eLanguage;
255 sal_uInt32 m_nFormatKey;
256 public:
257 static void GetCurrencySymbols( std::vector<OUString>& rList, bool bFlag,
258 std::vector<sal_uInt16>& rCurrencyList );
259 SFX_DECL_TOOLBOX_CONTROL();
260 SvxCurrencyToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rBox );
261 virtual ~SvxCurrencyToolBoxControl() override;
262 virtual void Select( sal_uInt16 nSelectModifier ) override;
263 virtual VclPtr<SfxPopupWindow> CreatePopupWindow() override;
265 // XInitialization
266 virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& rArguments ) override;
271 #endif // INCLUDED_SVX_TBCONTRL_HXX
273 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */