summaryrefslogtreecommitdiff
path: root/svx/source/sidebar/text/TextPropertyPanel.hxx
blob: 05a9c8889f6e73aaa039f815eb4a22ec10f10544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/**************************************************************
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 *************************************************************/

#ifndef SVX_SIDEBAR_TEXT_PROPERTY_PAGE_HXX
#define SVX_SIDEBAR_TEXT_PROPERTY_PAGE_HXX

#include <vcl/ctrl.hxx>
#include <sfx2/sidebar/SidebarPanelBase.hxx>
#include <sfx2/sidebar/ControllerItem.hxx>
#include <sfx2/sidebar/IContextChangeReceiver.hxx>

#include <svtools/ctrlbox.hxx>
#include <svx/tbxcolorupdate.hxx>
#include <editeng/svxenum.hxx>
#include <editeng/fhgtitem.hxx>

//#include <com/sun/star/ui/XUIElement.hpp>
#include <com/sun/star/ui/XSidebar.hpp>

#include <boost/scoped_ptr.hpp>
#include "TextCharacterSpacingPopup.hxx"
#include "TextUnderlinePopup.hxx"
#include <svx/sidebar/ColorPopup.hxx>
#include <vcl/vclenum.hxx>

class FloatingWindow;
class ToolBox;

namespace svx { namespace sidebar {

class SvxSBFontNameBox;
class PopupControl;
class PopupContainer;

class TextPropertyPanel
    : public Control,
       public ::sfx2::sidebar::IContextChangeReceiver,
      public ::sfx2::sidebar::ControllerItem::ItemUpdateReceiverInterface
{
public:
    static TextPropertyPanel* Create (
        Window* pParent,
        const cssu::Reference<css::frame::XFrame>& rxFrame,
        SfxBindings* pBindings,
        const cssu::Reference<css::ui::XSidebar>& rxSidebar);

    virtual void DataChanged (const DataChangedEvent& rEvent);
    SfxBindings* GetBindings();
    ::sfx2::sidebar::ControllerItem& GetSpaceController();
    long GetSelFontSize();
    void SetSpacing(long nKern);
    void EndSpacingPopupMode (void);
    void EndUnderlinePopupMode (void);
    Color GetFontColor (void) const;
    void SetFontColor (const String& rsColorName,const Color aColor);
    Color GetBrushColor (void) const;
    void SetBrushColor (const String& rsColorName,const Color aColor);
    void SetUnderline(FontUnderline eUnderline);
    Color& GetUnderlineColor();
    void SetDefaultUnderline(FontUnderline eUnderline);


    enum ColorType
    {
        FONT_COLOR = 1,
        BACK_COLOR = 2
    };

    virtual void HandleContextChange (
        const ::sfx2::sidebar::EnumContext aContext);

    virtual void NotifyItemUpdate(
        const sal_uInt16 nSId,
        const SfxItemState eState,
        const SfxPoolItem* pState);

private:
    //ui controls
    ::boost::scoped_ptr<SvxSBFontNameBox> mpFontNameBox;
    FontSizeBox maFontSizeBox;
    ::boost::scoped_ptr<Window> mpToolBoxIncDecBackground;
    ::boost::scoped_ptr<ToolBox> mpToolBoxIncDec;
    ::boost::scoped_ptr<Window> mpToolBoxFontBackground;
    ::boost::scoped_ptr<ToolBox> mpToolBoxFont;
    ::boost::scoped_ptr<Window> mpToolBoxFontColorBackground;
    ::boost::scoped_ptr<ToolBox> mpToolBoxFontColor;
    ::boost::scoped_ptr<Window> mpToolBoxScriptBackground;
    ::boost::scoped_ptr<ToolBox> mpToolBoxScript;
    ::boost::scoped_ptr<Window> mpToolBoxScriptSwBackground;
    ::boost::scoped_ptr<ToolBox> mpToolBoxScriptSw;
    ::boost::scoped_ptr<Window> mpToolBoxSpacingBackground;
    ::boost::scoped_ptr<ToolBox> mpToolBoxSpacing;
    ::boost::scoped_ptr<Window> mpToolBoxHighlightBackground;
    ::boost::scoped_ptr<ToolBox> mpToolBoxHighlight;
    ::boost::scoped_ptr<ToolboxButtonColorUpdater> mpFontColorUpdater;
    ::boost::scoped_ptr<ToolboxButtonColorUpdater> mpHighlightUpdater;

    //control items
    ::sfx2::sidebar::ControllerItem maFontNameControl;
    ::sfx2::sidebar::ControllerItem maFontSizeControl;
    ::sfx2::sidebar::ControllerItem maWeightControl;
    ::sfx2::sidebar::ControllerItem maItalicControl;
    ::sfx2::sidebar::ControllerItem maUnderlineControl;
    ::sfx2::sidebar::ControllerItem maStrikeControl;
    ::sfx2::sidebar::ControllerItem maShadowControl;
    ::sfx2::sidebar::ControllerItem maFontColorControl;
    ::sfx2::sidebar::ControllerItem maScriptControlSw;
    ::sfx2::sidebar::ControllerItem maSuperScriptControl;
    ::sfx2::sidebar::ControllerItem maSubScriptControl;
    ::sfx2::sidebar::ControllerItem maSpacingControl;
    ::sfx2::sidebar::ControllerItem maHighlightControl;
    ::sfx2::sidebar::ControllerItem maSDFontGrow;
    ::sfx2::sidebar::ControllerItem maSDFontShrink;

    //Images
    Image   maImgIncrease;
    Image   maImgDecrease;
    Image   maImgBold;
    Image   maImgItalic;
    Image   maImgUnderline;
    Image   maImgStrike;
    Image   maImgShadow;
    Image   maImgFontColor;
    Image   maImgSupScript;
    Image   maImgSubScript;
    Image   maImgHighlight;

    Image               maImgNormalIcon;

    Image   maImgIncreaseHigh;
    Image   maImgDecreaseHigh;
    Image   maImgBoldHigh;
    Image   maImgItalicHigh;
    Image   maImgUnderlineHigh;
    Image   maImgStrikeHigh;
    Image   maImgShadowHigh;
    Image   maImgFontColorHigh;
    Image   maImgSupScriptHigh;
    Image   maImgSubScriptHigh;
    Image   maImgHighlightHigh;

    FontWeight                  meWeight;
    FontItalic                  meItalic;
    FontUnderline               meUnderline;
    Color                       meUnderlineColor;  //
    bool                        mbShadow;
    FontStrikeout               meStrike;
    bool mbWeightAvailable;
    bool mbPostureAvailable;
    Color                       maColor;
    bool mbColorAvailable;
    Color                       maBackColor;
    bool mbBackColorAvailable;
    ColorType meColorType;
    SvxEscapement               meEscape;  //for sw
    bool                        mbSuper;
    bool                        mbSub;
    bool                        mbKernAvailable;
    bool                        mbKernLBAvailable;
    long                        mlKerning;
    SvxFontHeightItem*          mpHeightItem;

    const FontList* mpFontList;
    bool mbMustDelete;
    bool mbFocusOnFontSizeCtrl;
    TextCharacterSpacingPopup maCharSpacePopup;
    TextUnderlinePopup maUnderlinePopup;
    ColorPopup maFontColorPopup;
    ColorPopup maBrushColorPopup;

    cssu::Reference<css::frame::XFrame> mxFrame;
    ::sfx2::sidebar::EnumContext maContext;
    SfxBindings* mpBindings;
    cssu::Reference<css::ui::XSidebar> mxSidebar;

    TextPropertyPanel (
        Window* pParent,
        const cssu::Reference<css::frame::XFrame>& rxFrame,
        SfxBindings* pBindings,
        const cssu::Reference<css::ui::XSidebar>& rxSidebar);
    virtual ~TextPropertyPanel (void);


    PopupControl* CreateCharacterSpacingControl (PopupContainer* pParent);
    PopupControl* CreateFontColorPopupControl (PopupContainer* pParent);
    PopupControl* CreateBrushColorPopupControl (PopupContainer* pParent);
    PopupControl* CreateUnderlinePopupControl (PopupContainer* pParent);
    DECL_LINK(SpacingClickHdl, ToolBox*);
    DECL_LINK(ToolBoxFontColorDropHdl, ToolBox *); //for new color picker
    DECL_LINK(ToolBoxHighlightDropHdl, ToolBox *);
    DECL_LINK(ToolBoxUnderlineClickHdl, ToolBox* );

    void Initialize (void);
    void SetupIcons (void);
    void InitToolBoxFont();
    void InitToolBoxIncDec();
    void InitToolBoxFontColor();
    void InitToolBoxScript();
    void InitToolBoxHighlight();
    void InitToolBoxSpacing();

    void UpdateFontBold();
    void UpdateFontItalic();
    void UpdateFontUnderline();
    void UpdateFontStrikeOut();
    void UpdateFontShadowed();
    void UpdateFontScript();

    DECL_LINK(FontSelHdl, FontNameBox *);
    DECL_LINK(FontSizeModifyHdl, FontSizeBox *);
    DECL_LINK(FontSizeSelHdl, FontSizeBox *);
    DECL_LINK(FontSizeLoseFocus, FontSizeBox *);
    DECL_LINK(ToolboxFontSelectHandler, ToolBox *);
    DECL_LINK(ToolboxIncDecSelectHdl, ToolBox *);
    DECL_LINK(ImplPopupModeEndHdl, FloatingWindow* );
    DECL_LINK(ToolBoxSwScriptSelectHdl, ToolBox *);
    DECL_LINK(ToolBoxScriptSelectHdl, ToolBox *);



    void TextStyleChanged();

    Image GetIcon (const ::rtl::OUString& rsURL);
};

} } // end of namespace ::svx::sidebar

#endif