Line data Source code
1 : /*
2 : * This file is part of the LibreOffice project.
3 : *
4 : * This Source Code Form is subject to the terms of the Mozilla Public
5 : * License, v. 2.0. If a copy of the MPL was not distributed with this
6 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 : *
8 : * This file incorporates work covered by the following license notice:
9 : *
10 : * Licensed to the Apache Software Foundation (ASF) under one or more
11 : * contributor license agreements. See the NOTICE file distributed
12 : * with this work for additional information regarding copyright
13 : * ownership. The ASF licenses this file to you under the Apache
14 : * License, Version 2.0 (the "License"); you may not use this file
15 : * except in compliance with the License. You may obtain a copy of
16 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
17 : */
18 : #include "TextUnderlineControl.hxx"
19 : #include "TextPropertyPanel.hrc"
20 : #include <sfx2/sidebar/ResourceDefinitions.hrc>
21 : #include <svx/dialogs.hrc>
22 : #include <svx/dialmgr.hxx>
23 : #include <sfx2/dispatch.hxx>
24 : #include <sfx2/sidebar/Theme.hxx>
25 : #include <editeng/udlnitem.hxx>
26 : #include <vcl/settings.hxx>
27 :
28 : namespace svx { namespace sidebar {
29 :
30 0 : TextUnderlineControl::TextUnderlineControl (
31 : Window* pParent,
32 : svx::sidebar::TextPropertyPanel& rPanel,
33 : SfxBindings* pBindings)
34 0 : : svx::sidebar::PopupControl( pParent,SVX_RES(RID_POPUPPANEL_TEXTPAGE_UNDERLINE))
35 : , mrTextPropertyPanel(rPanel)
36 : , mpBindings(pBindings)
37 0 : , maVSUnderline( this, SVX_RES(VS_UNDERLINE))
38 0 : , maPBOptions (this, SVX_RES(PB_OPTIONS) )
39 :
40 0 : , maIMGSingle (SVX_RES(IMG_SINGLE))
41 0 : , maIMGDouble (SVX_RES(IMG_DOUBLE))
42 0 : , maIMGBold (SVX_RES(IMG_BOLD2))
43 0 : , maIMGDot (SVX_RES(IMG_DOT))
44 0 : , maIMGDotBold (SVX_RES(IMG_DOT_BOLD))
45 0 : , maIMGDash (SVX_RES(IMG_DASH))
46 0 : , maIMGDashLong (SVX_RES(IMG_DASH_LONG))
47 0 : , maIMGDashDot (SVX_RES(IMG_DASH_DOT))
48 0 : , maIMGDashDotDot (SVX_RES(IMG_DASH_DOT_DOT))
49 0 : , maIMGWave (SVX_RES(IMG_WAVE))
50 :
51 0 : , maIMGSingleSel (SVX_RES(IMG_SINGLE_SEL))
52 0 : , maIMGDoubleSel (SVX_RES(IMG_DOUBLE_SEL))
53 0 : , maIMGBoldSel (SVX_RES(IMG_BOLD2_SEL))
54 0 : , maIMGDotSel (SVX_RES(IMG_DOT_SEL))
55 0 : , maIMGDotBoldSel (SVX_RES(IMG_DOT_BOLD_SEL))
56 0 : , maIMGDashSel (SVX_RES(IMG_DASH_SEL))
57 0 : , maIMGDashLongSel (SVX_RES(IMG_DASH_LONG_SEL))
58 0 : , maIMGDashDotSel (SVX_RES(IMG_DASH_DOT_SEL))
59 0 : , maIMGDashDotDotSel (SVX_RES(IMG_DASH_DOT_DOT_SEL))
60 0 : , maIMGWaveSel (SVX_RES(IMG_WAVE_SEL))
61 :
62 : {
63 0 : initial();
64 0 : FreeResource();
65 0 : }
66 :
67 0 : void TextUnderlineControl::initial()
68 : {
69 0 : maVSUnderline.SetColor(GetSettings().GetStyleSettings().GetHighContrastMode()?
70 0 : GetSettings().GetStyleSettings().GetMenuColor():
71 0 : sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground ));
72 0 : maVSUnderline.SetBackground(GetSettings().GetStyleSettings().GetHighContrastMode()?
73 0 : GetSettings().GetStyleSettings().GetMenuColor():
74 0 : sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground ));
75 :
76 0 : Link aLink = LINK( this, TextUnderlineControl, PBClickHdl ) ;
77 0 : maPBOptions.SetClickHdl(aLink);
78 :
79 0 : maVSUnderline.SetStyle( maVSUnderline.GetStyle()| WB_3DLOOK | WB_NO_DIRECTSELECT );
80 :
81 : // 'none' item
82 0 : maVSUnderline.SetStyle( maVSUnderline.GetStyle()| WB_NONEFIELD | WB_MENUSTYLEVALUESET );
83 0 : maVSUnderline.SetText( SVX_RESSTR(STR_WITHOUT) );
84 :
85 0 : maVSUnderline.InsertItem(1, maIMGSingle, SVX_RESSTR(STR_SINGLE));
86 0 : maVSUnderline.SetItemData(1, (void*)(sal_uInt64)UNDERLINE_SINGLE);
87 :
88 0 : maVSUnderline.InsertItem(2, maIMGDouble, SVX_RESSTR(STR_DOUBLE));
89 0 : maVSUnderline.SetItemData(2, (void*)(sal_uInt64)UNDERLINE_DOUBLE);
90 :
91 0 : maVSUnderline.InsertItem(3, maIMGBold, SVX_RESSTR(STR_BOLD));
92 0 : maVSUnderline.SetItemData(3,(void*)(sal_uInt64)UNDERLINE_BOLD);
93 :
94 0 : maVSUnderline.InsertItem(4, maIMGDot, SVX_RESSTR(STR_DOT));
95 0 : maVSUnderline.SetItemData(4,(void*)(sal_uInt64)UNDERLINE_DOTTED);
96 :
97 0 : maVSUnderline.InsertItem(5, maIMGDotBold, SVX_RESSTR(STR_DOT_BOLD));
98 0 : maVSUnderline.SetItemData(5,(void*)(sal_uInt64)UNDERLINE_BOLDDOTTED);
99 :
100 0 : maVSUnderline.InsertItem(6, maIMGDash, SVX_RESSTR(STR_DASH));
101 0 : maVSUnderline.SetItemData(6,(void*)(sal_uInt64)UNDERLINE_DASH);
102 :
103 0 : maVSUnderline.InsertItem(7, maIMGDashLong, SVX_RESSTR(STR_DASH_LONG));
104 0 : maVSUnderline.SetItemData(7,(void*)(sal_uInt64)UNDERLINE_LONGDASH);
105 :
106 0 : maVSUnderline.InsertItem(8, maIMGDashDot, SVX_RESSTR(STR_DASH_DOT));
107 0 : maVSUnderline.SetItemData(8,(void*)(sal_uInt64)UNDERLINE_DASHDOT);
108 :
109 0 : maVSUnderline.InsertItem(9, maIMGDashDotDot, SVX_RESSTR(STR_DASH_DOT_DOT));
110 0 : maVSUnderline.SetItemData(9,(void*)(sal_uInt64)UNDERLINE_DASHDOTDOT);
111 :
112 0 : maVSUnderline.InsertItem(10, maIMGWave, SVX_RESSTR(STR_WAVE));
113 0 : maVSUnderline.SetItemData(10,(void*)(sal_uInt64)UNDERLINE_WAVE);
114 :
115 0 : maVSUnderline.SetColCount( 1 );
116 0 : aLink = LINK( this, TextUnderlineControl, VSSelectHdl ) ;
117 0 : maVSUnderline.SetSelectHdl(aLink);
118 :
119 0 : maVSUnderline.StartSelection();
120 0 : maVSUnderline.Show();
121 0 : }
122 :
123 :
124 0 : void TextUnderlineControl::Rearrange(FontUnderline eLine)
125 : {
126 0 : maVSUnderline.SetItemImage(1, maIMGSingle);
127 0 : maVSUnderline.SetItemImage(2, maIMGDouble );
128 0 : maVSUnderline.SetItemImage(3, maIMGBold);
129 0 : maVSUnderline.SetItemImage(4, maIMGDot);
130 0 : maVSUnderline.SetItemImage(5, maIMGDotBold);
131 0 : maVSUnderline.SetItemImage(6, maIMGDash);
132 0 : maVSUnderline.SetItemImage(7, maIMGDashLong);
133 0 : maVSUnderline.SetItemImage(8, maIMGDashDot);
134 0 : maVSUnderline.SetItemImage(9, maIMGDashDotDot);
135 0 : maVSUnderline.SetItemImage(10, maIMGWave);
136 :
137 0 : switch(eLine)
138 : {
139 : case UNDERLINE_SINGLE:
140 0 : maVSUnderline.SetItemImage(1, maIMGSingleSel);
141 0 : maVSUnderline.SelectItem(1);
142 0 : maVSUnderline.GrabFocus();
143 0 : break;
144 : case UNDERLINE_DOUBLE:
145 0 : maVSUnderline.SetItemImage(2, maIMGDoubleSel);
146 0 : maVSUnderline.SelectItem(2);
147 0 : maVSUnderline.GrabFocus();
148 0 : break;
149 : case UNDERLINE_BOLD:
150 0 : maVSUnderline.SetItemImage(3, maIMGBoldSel);
151 0 : maVSUnderline.SelectItem(3);
152 0 : maVSUnderline.GrabFocus();
153 0 : break;
154 : case UNDERLINE_DOTTED:
155 0 : maVSUnderline.SetItemImage(4, maIMGDotSel);
156 0 : maVSUnderline.SelectItem(4);
157 0 : maVSUnderline.GrabFocus();
158 0 : break;
159 : case UNDERLINE_BOLDDOTTED:
160 0 : maVSUnderline.SetItemImage(5, maIMGDotBoldSel);
161 0 : maVSUnderline.SelectItem(5);
162 0 : maVSUnderline.GrabFocus();
163 0 : break;
164 : case UNDERLINE_DASH:
165 0 : maVSUnderline.SetItemImage(6, maIMGDashSel);
166 0 : maVSUnderline.SelectItem(6);
167 0 : maVSUnderline.GrabFocus();
168 0 : break;
169 : case UNDERLINE_LONGDASH:
170 0 : maVSUnderline.SetItemImage(7, maIMGDashLongSel);
171 0 : maVSUnderline.SelectItem(7);
172 0 : maVSUnderline.GrabFocus();
173 0 : break;
174 : case UNDERLINE_DASHDOT:
175 0 : maVSUnderline.SetItemImage(8, maIMGDashDotSel);
176 0 : maVSUnderline.SelectItem(8);
177 0 : maVSUnderline.GrabFocus();
178 0 : break;
179 : case UNDERLINE_DASHDOTDOT:
180 0 : maVSUnderline.SetItemImage(9, maIMGDashDotDotSel);
181 0 : maVSUnderline.SelectItem(9);
182 0 : maVSUnderline.GrabFocus();
183 0 : break;
184 : case UNDERLINE_WAVE:
185 0 : maVSUnderline.SetItemImage(10, maIMGWaveSel);
186 0 : maVSUnderline.SelectItem(10);
187 0 : maVSUnderline.GrabFocus();
188 0 : break;
189 : case UNDERLINE_NONE:
190 0 : maVSUnderline.SelectItem(0);
191 0 : maVSUnderline.GrabFocus();
192 0 : break;
193 : default:
194 0 : maVSUnderline.SelectItem(1);
195 0 : maVSUnderline.SetNoSelection();
196 0 : maPBOptions.GrabFocus();
197 : }
198 0 : maVSUnderline.StartSelection();
199 0 : }
200 :
201 :
202 0 : IMPL_LINK(TextUnderlineControl, VSSelectHdl, void *, pControl)
203 : {
204 0 : if ( pControl == &maVSUnderline )
205 : {
206 0 : const sal_uInt16 iPos = maVSUnderline.GetSelectItemId();
207 : const FontUnderline eUnderline = ( iPos == 0 )
208 : ? UNDERLINE_NONE
209 0 : : (FontUnderline)(sal_uInt64)maVSUnderline.GetItemData( iPos );
210 :
211 0 : SvxUnderlineItem aLineItem(eUnderline, SID_ATTR_CHAR_UNDERLINE);
212 :
213 0 : aLineItem.SetColor(mrTextPropertyPanel.GetUnderlineColor());
214 0 : mpBindings->GetDispatcher()->Execute(SID_ATTR_CHAR_UNDERLINE, SFX_CALLMODE_RECORD, &aLineItem, 0L);
215 0 : mrTextPropertyPanel.EndUnderlinePopupMode();
216 : }
217 0 : return( 0L );
218 : }
219 :
220 0 : IMPL_LINK(TextUnderlineControl, PBClickHdl, PushButton *, pPBtn)
221 : {
222 0 : if(pPBtn == &maPBOptions)
223 : {
224 0 : if (mpBindings)
225 : {
226 0 : SfxDispatcher* pDisp = mpBindings->GetDispatcher();
227 0 : pDisp->Execute( SID_CHAR_DLG_EFFECT, SFX_CALLMODE_ASYNCHRON );
228 : }
229 0 : mrTextPropertyPanel.EndUnderlinePopupMode();
230 : }
231 0 : return 0;
232 : }
233 :
234 : }}
|