summaryrefslogtreecommitdiff
path: root/svx/source/sidebar/paragraph/ParaPropertyPanel.hxx
blob: e1701e3c9e970f37ec5d10a83cf24f2eeb7c6628 (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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   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 .
 */
#ifndef SVX_SIDEBAR_PARA_PROPERTY_PANEL_HXX
#define SVX_SIDEBAR_PARA_PROPERTY_PANEL_HXX

#include <vcl/ctrl.hxx>
#include <sfx2/sidebar/ControllerItem.hxx>
#include <sfx2/sidebar/IContextChangeReceiver.hxx>
#include <editeng/lspcitem.hxx>
#include <svtools/ctrlbox.hxx>
#include <svx/tbxcolorupdate.hxx>
#include <svx/relfld.hxx>
#include <editeng/svxenum.hxx>
#include <editeng/fhgtitem.hxx>

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

#include <boost/scoped_ptr.hpp>

#include <svx/sidebar/ColorPopup.hxx>
#include <vcl/vclenum.hxx>
#include <vcl/fixed.hxx>
#include <svl/poolitem.hxx>
#include <tools/fldunit.hxx>

#include "ParaBulletsPopup.hxx"
#include "ParaNumberingPopup.hxx"
#include "ParaLineSpacingPopup.hxx"

class FloatingWindow;
class ToolBox;

namespace css = ::com::sun::star;
namespace cssu = ::com::sun::star::uno;


namespace svx { namespace sidebar {

class PopupControl;
class PopupContainer;

class ParaPropertyPanel
    : public Control,
      public ::sfx2::sidebar::IContextChangeReceiver,
      public ::sfx2::sidebar::ControllerItem::ItemUpdateReceiverInterface
{
public:
    static ParaPropertyPanel* 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();

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

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

    void ShowMenu (void);
    sal_uInt16 GetBulletTypeIndex(){ return mnBulletTypeIndex; }
    sal_uInt16 GetNumTypeIndex(){ return mnNumTypeIndex; }
    FieldUnit GetCurrentUnit( SfxItemState eState, const SfxPoolItem* pState );

    void EndSpacingPopupMode (void);
    void EndBulletsPopupMode (void);
    void EndNumberingPopupMode (void);

private:
    /**********************************************************
     **
     ** UI controls
     **
    ***********************************************************/
    //Alignment
    ::boost::scoped_ptr<Window>             maAlignToolBoxBackground;
    ::boost::scoped_ptr<ToolBox>            maAlignToolBox;
    ::boost::scoped_ptr<Window>             maTBxVertAlignBackground;
    ::boost::scoped_ptr<ToolBox>            maTBxVertAlign;
    //NumBullet&Backcolor
    ::boost::scoped_ptr<Window>             maTBxNumBulletBackground;
    ::boost::scoped_ptr<ToolBox>            maTBxNumBullet;
    ::boost::scoped_ptr<Window>             maTBxBackColorBackground;
    ::boost::scoped_ptr<ToolBox>            maTBxBackColor;
    //Paragraph spacing
    ::boost::scoped_ptr<FixedText>          maFTUL;
    ::boost::scoped_ptr<Window>             maTbxUL_IncDecBackground;
    ::boost::scoped_ptr<ToolBox>            maTbxUL_IncDec;
    ::boost::scoped_ptr<SvxRelativeField>   maTopDist;
    ::boost::scoped_ptr<SvxRelativeField>   maBottomDist;
    //Line spacing
    ::boost::scoped_ptr<Window>             maLineSPTbxBackground;
    ::boost::scoped_ptr<ToolBox>            maLineSPTbx;
    //Indent
    ::boost::scoped_ptr<FixedText>          maFTIndent;
    ::boost::scoped_ptr<Window>             maTbxIndent_IncDecBackground;
    ::boost::scoped_ptr<ToolBox>            maTbxIndent_IncDec;
    ::boost::scoped_ptr<Window>             maTbxProDemoteBackground;
    ::boost::scoped_ptr<ToolBox>            maTbxProDemote;
    ::boost::scoped_ptr<SvxRelativeField>   maLeftIndent;
    ::boost::scoped_ptr<SvxRelativeField>   maRightIndent;
    ::boost::scoped_ptr<SvxRelativeField>   maFLineIndent;
    ::boost::scoped_ptr< ::svx::ToolboxButtonColorUpdater > mpColorUpdater;

    /**********************************************************
     **
     ** Resources
     **
    ***********************************************************/
    FixedImage  maFISpace1;
    FixedImage  maFISpace2;
    FixedImage  maFIndent1;
    FixedImage  maFIndent2;
    FixedImage  maFIndent3;

    Image  maSpace1;
    Image  maSpace2;
    Image  maSpace3;
    Image  maIndent1;
    Image  maIndent2;
    Image  maIndent3;

    Image  maIndHang;
    Image  maParInc;
    Image  maParDec;

    ImageList   maNumBImageList;
    ImageList   maNumBImageListH;
    ImageList   maNumBImageListRTL;
    Image       maImgBackColorHigh;
    Image       maImgBackColor;

    /****************************************************************
    **
    ** Data Member
    **
    *****************************************************************/
    long                maTxtLeft;
    //Line spacing
    SvxLineSpacingItem  *mpLnSPItem;
    SfxItemState            meLnSpState;
    bool                    mbOutLineLeft;
    bool                    mbOutLineRight;
    long                    maUpper;
    long                    maLower;

    sal_uInt16          mnBulletTypeIndex;
    sal_uInt16          mnNumTypeIndex;
    Color               maColor;
    bool                    mbColorAvailable;
    FieldUnit                       m_eMetricUnit;
    FieldUnit                       m_last_eMetricUnit;
    SfxMapUnit                      m_eLRSpaceUnit;
    SfxMapUnit                      m_eULSpaceUnit;
    /****************************************************************
    **
    ** Controll Items
    **
    *****************************************************************/

    ::sfx2::sidebar::ControllerItem  maLeftAlignControl;
    ::sfx2::sidebar::ControllerItem  maCenterAlignControl;
    ::sfx2::sidebar::ControllerItem  maRightAlignControl;
    ::sfx2::sidebar::ControllerItem  maJustifyAlignControl;
    ::sfx2::sidebar::ControllerItem  maLRSpaceControl;
    ::sfx2::sidebar::ControllerItem  maLNSpaceControl;
    ::sfx2::sidebar::ControllerItem  maULSpaceControl;
    ::sfx2::sidebar::ControllerItem  maOutLineLeftControl;
    ::sfx2::sidebar::ControllerItem  maOutLineRightControl;
    ::sfx2::sidebar::ControllerItem  maDecIndentControl;
    ::sfx2::sidebar::ControllerItem  maIncIndentControl;
    ::sfx2::sidebar::ControllerItem  maVertTop;
    ::sfx2::sidebar::ControllerItem  maVertCenter;
    ::sfx2::sidebar::ControllerItem  maVertBottom;
    ::sfx2::sidebar::ControllerItem  maBulletOnOff;
    ::sfx2::sidebar::ControllerItem  maNumberOnOff;
    ::sfx2::sidebar::ControllerItem  maBackColorControl;
    ::sfx2::sidebar::ControllerItem  m_aMetricCtl;
    ::sfx2::sidebar::ControllerItem  maBulletNumRuleIndex;
    ::sfx2::sidebar::ControllerItem  maNumNumRuleIndex;

    cssu::Reference<css::frame::XFrame> mxFrame;
    ::sfx2::sidebar::EnumContext maContext;
    SfxBindings* mpBindings;
    ParaLineSpacingPopup maLineSpacePopup;
    ParaBulletsPopup maBulletsPopup;
    ParaNumberingPopup maNumberingPopup;
    ColorPopup maBGColorPopup;
    cssu::Reference<css::ui::XSidebar> mxSidebar;


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

    void InitImageList(::boost::scoped_ptr<ToolBox>& rTbx, ImageList& rImglst, ImageList& rImgHlst);

    DECL_LINK(AlignStyleModifyHdl_Impl, ToolBox*);
    DECL_LINK(VertTbxSelectHandler, ToolBox*);
    DECL_LINK(NumBTbxSelectHandler, ToolBox*);
    DECL_LINK(ModifyIndentHdl_Impl, void*);
    DECL_LINK(ClickIndent_IncDec_Hdl_Impl, ToolBox*);
    DECL_LINK(ClickProDemote_Hdl_Impl, ToolBox*);
    DECL_LINK(ULSpaceHdl_Impl, void*);
    DECL_LINK(ClickUL_IncDec_Hdl_Impl, ToolBox*);
    DECL_LINK(ImplPopupModeEndHdl, FloatingWindow* );

    void VertStateChanged(sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState);
    void ParaBKGStateChanged(sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState);
    void StateChangedAlignmentImpl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState );
    void StateChangedIndentImpl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState );
    void StateChangedLnSPImpl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState );
    void StateChangedULImpl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState );
    void StateChangeOutLineImpl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState );
    void StateChangeIncDecImpl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState );
    // Add toggle state for numbering and bullet icons
    void StateChangeBulletNumImpl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState );
    //Modified for Numbering&Bullets Dialog UX Enh
    //Handing the transferred the num rule index data of the current selection
    void StateChangeBulletNumRuleImpl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState );

    void initial();
    void ReSize(bool bSize);


    PopupControl* CreateLineSpacingControl (PopupContainer* pParent);
    PopupControl* CreateBulletsPopupControl (PopupContainer* pParent);
    PopupControl* CreateNumberingPopupControl (PopupContainer* pParent);
    PopupControl* CreateBGColorPopupControl (PopupContainer* pParent);
    DECL_LINK(ClickLineSPDropDownHdl_Impl, ToolBox*);
    DECL_LINK(NumBTbxDDHandler, ToolBox*);
    DECL_LINK(ToolBoxBackColorDDHandler, ToolBox *);

    void InitToolBoxAlign();
    void InitToolBoxVertAlign();
    void InitToolBoxIndent();
    void InitToolBoxBGColor();
    void InitToolBoxBulletsNumbering();
    void InitToolBoxSpacing();
    void InitToolBoxLineSpacing();

    void SetBGColor (const String& rsColorName, const Color aColor);
};

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

#endif