Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 :
21 : #include "toolpaneldrawer.hxx"
22 : #include "toolpaneldrawerpeer.hxx"
23 : #include "svtools/svtresid.hxx"
24 : #include "svtools/svtools.hrc"
25 :
26 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
27 :
28 : #include <vcl/lineinfo.hxx>
29 : #include <vcl/image.hxx>
30 : #include <vcl/svapp.hxx>
31 : #include <vcl/vclevent.hxx>
32 : #include <vcl/settings.hxx>
33 :
34 :
35 : namespace svt
36 : {
37 :
38 :
39 : using ::com::sun::star::uno::Reference;
40 : using ::com::sun::star::awt::XWindowPeer;
41 : namespace AccessibleRole = ::com::sun::star::accessibility::AccessibleRole;
42 :
43 : static const int s_nIndentationWidth = 16;
44 :
45 :
46 : //= DrawerVisualization
47 :
48 :
49 0 : DrawerVisualization::DrawerVisualization( ToolPanelDrawer& i_rParent )
50 : :Window( &i_rParent )
51 0 : ,m_rDrawer( i_rParent )
52 : {
53 0 : SetMouseTransparent( true );
54 0 : Show();
55 0 : SetAccessibleRole( AccessibleRole::LABEL );
56 0 : }
57 :
58 :
59 0 : DrawerVisualization::~DrawerVisualization()
60 : {
61 0 : }
62 :
63 :
64 0 : void DrawerVisualization::Paint( const Rectangle& i_rBoundingBox )
65 : {
66 0 : Window::Paint( i_rBoundingBox );
67 0 : m_rDrawer.Paint();
68 0 : }
69 :
70 :
71 : //= ToolPanelDrawer
72 :
73 :
74 0 : ToolPanelDrawer::ToolPanelDrawer( Window& i_rParent, const OUString& i_rTitle )
75 : :Window( &i_rParent, WB_TABSTOP )
76 0 : ,m_pPaintDevice( new VirtualDevice( *this ) )
77 : ,m_aVisualization( *this )
78 : ,m_bFocused( false )
79 0 : ,m_bExpanded( false )
80 : {
81 0 : EnableMapMode( false );
82 0 : SetBackground( Wallpaper() );
83 0 : SetPointer( POINTER_REFHAND );
84 :
85 0 : SetAccessibleRole( AccessibleRole::LIST_ITEM );
86 :
87 0 : SetText( i_rTitle );
88 0 : SetAccessibleName( i_rTitle );
89 0 : SetAccessibleDescription( i_rTitle );
90 :
91 0 : m_aVisualization.SetAccessibleName( i_rTitle );
92 0 : m_aVisualization.SetAccessibleDescription( i_rTitle );
93 0 : }
94 :
95 :
96 0 : ToolPanelDrawer::~ToolPanelDrawer()
97 : {
98 0 : }
99 :
100 :
101 0 : long ToolPanelDrawer::GetPreferredHeightPixel() const
102 : {
103 0 : Rectangle aTitleBarBox( impl_calcTitleBarBox( impl_calcTextBoundingBox() ) );
104 0 : return aTitleBarBox.GetHeight();
105 : }
106 :
107 :
108 0 : void ToolPanelDrawer::Paint()
109 : {
110 0 : m_pPaintDevice->SetMapMode( GetMapMode() );
111 0 : m_pPaintDevice->SetOutputSize( GetOutputSizePixel() );
112 0 : m_pPaintDevice->SetSettings( GetSettings() );
113 0 : m_pPaintDevice->SetDrawMode( GetDrawMode() );
114 :
115 0 : const Rectangle aTextBox( impl_calcTextBoundingBox() );
116 0 : impl_paintBackground( impl_calcTitleBarBox( aTextBox ) );
117 :
118 0 : Rectangle aFocusBox( impl_paintExpansionIndicator( aTextBox ) );
119 :
120 0 : m_pPaintDevice->DrawText( aTextBox, GetText(), impl_getTextStyle() );
121 :
122 0 : aFocusBox.Union( aTextBox );
123 0 : aFocusBox.Left() += 2;
124 0 : impl_paintFocusIndicator( aFocusBox );
125 :
126 : m_aVisualization.DrawOutDev(
127 0 : Point(), GetOutputSizePixel(),
128 0 : Point(), GetOutputSizePixel(),
129 0 : *m_pPaintDevice
130 0 : );
131 0 : }
132 :
133 :
134 0 : Rectangle ToolPanelDrawer::impl_paintExpansionIndicator( const Rectangle& i_rTextBox )
135 : {
136 0 : Rectangle aExpansionIndicatorArea;
137 :
138 0 : Image aImage( impl_getExpansionIndicator() );
139 0 : const int nHeight( aImage.GetSizePixel().Height() );
140 0 : if ( nHeight > 0 )
141 : {
142 : Point aPosition(
143 : 0,
144 0 : i_rTextBox.Top() + ( GetTextHeight() - nHeight ) / 2
145 0 : );
146 0 : m_pPaintDevice->DrawImage( aPosition, aImage );
147 :
148 0 : aExpansionIndicatorArea = Rectangle( aPosition, aImage.GetSizePixel() );
149 : }
150 :
151 0 : return aExpansionIndicatorArea;
152 : }
153 :
154 :
155 0 : Image ToolPanelDrawer::impl_getExpansionIndicator() const
156 : {
157 0 : sal_uInt16 nResourceId = 0;
158 0 : if ( m_bExpanded )
159 0 : nResourceId = IMG_TRIANGLE_DOWN;
160 : else
161 0 : nResourceId = IMG_TRIANGLE_RIGHT;
162 0 : return Image( SvtResId( nResourceId ) );
163 : }
164 :
165 :
166 0 : sal_uInt16 ToolPanelDrawer::impl_getTextStyle() const
167 : {
168 : const sal_uInt16 nBasicStyle = TEXT_DRAW_LEFT
169 : | TEXT_DRAW_TOP
170 0 : | TEXT_DRAW_WORDBREAK;
171 :
172 0 : if ( IsEnabled() )
173 0 : return nBasicStyle;
174 :
175 0 : return nBasicStyle | TEXT_DRAW_DISABLE;
176 : }
177 :
178 :
179 0 : void ToolPanelDrawer::impl_paintBackground( const Rectangle& i_rTitleBarBox )
180 : {
181 0 : m_pPaintDevice->SetFillColor( GetSettings().GetStyleSettings().GetDialogColor() );
182 0 : m_pPaintDevice->DrawRect( i_rTitleBarBox );
183 :
184 0 : m_pPaintDevice->SetFillColor();
185 0 : m_pPaintDevice->SetLineColor( GetSettings().GetStyleSettings().GetLightColor() );
186 0 : m_pPaintDevice->DrawLine( i_rTitleBarBox.TopLeft(), i_rTitleBarBox.TopRight() );
187 0 : m_pPaintDevice->DrawLine( i_rTitleBarBox.TopLeft(), i_rTitleBarBox.BottomLeft() );
188 :
189 0 : m_pPaintDevice->SetLineColor( GetSettings().GetStyleSettings().GetShadowColor() );
190 0 : m_pPaintDevice->DrawLine( i_rTitleBarBox.BottomLeft(), i_rTitleBarBox.BottomRight() );
191 0 : m_pPaintDevice->DrawLine( i_rTitleBarBox.TopRight(), i_rTitleBarBox.BottomRight() );
192 0 : }
193 :
194 :
195 0 : void ToolPanelDrawer::impl_paintFocusIndicator( const Rectangle& i_rTextBox )
196 : {
197 0 : if ( m_bFocused )
198 : {
199 0 : const Rectangle aTextPixelBox( m_pPaintDevice->LogicToPixel( i_rTextBox ) );
200 :
201 0 : m_pPaintDevice->EnableMapMode( false );
202 0 : m_pPaintDevice->SetFillColor();
203 :
204 0 : Rectangle aBox( i_rTextBox );
205 0 : aBox.Top() -= 1;
206 0 : aBox.Bottom() += 1;
207 :
208 0 : m_pPaintDevice->DrawRect( aTextPixelBox );
209 :
210 0 : LineInfo aDottedStyle( LINE_DASH );
211 0 : aDottedStyle.SetDashCount( 0 );
212 0 : aDottedStyle.SetDotCount( 1 );
213 0 : aDottedStyle.SetDotLen( 1 );
214 0 : aDottedStyle.SetDistance( 1 );
215 :
216 0 : m_pPaintDevice->SetLineColor( COL_BLACK );
217 0 : m_pPaintDevice->DrawPolyLine( Polygon( aTextPixelBox ), aDottedStyle );
218 0 : m_pPaintDevice->EnableMapMode( false );
219 : }
220 : else
221 0 : HideFocus();
222 0 : }
223 :
224 :
225 0 : void ToolPanelDrawer::GetFocus()
226 : {
227 0 : m_bFocused = true;
228 0 : Invalidate();
229 0 : }
230 :
231 :
232 0 : void ToolPanelDrawer::LoseFocus()
233 : {
234 0 : m_bFocused = false;
235 0 : Invalidate();
236 0 : }
237 :
238 :
239 0 : void ToolPanelDrawer::Resize()
240 : {
241 0 : Window::Resize();
242 0 : m_aVisualization.SetPosSizePixel( Point(), GetOutputSizePixel() );
243 0 : }
244 :
245 :
246 0 : void ToolPanelDrawer::MouseButtonDown( const MouseEvent& i_rMouseEvent )
247 : {
248 : // consume this event, and do not forward to the base class - it would sent a NotifyEvent, which in turn, when
249 : // we live in a DockingWindow, would start undocking
250 : (void)i_rMouseEvent;
251 0 : }
252 :
253 :
254 0 : void ToolPanelDrawer::DataChanged( const DataChangedEvent& i_rEvent )
255 : {
256 0 : Window::DataChanged( i_rEvent );
257 :
258 0 : switch ( i_rEvent.GetType() )
259 : {
260 : case DATACHANGED_SETTINGS:
261 0 : if ( ( i_rEvent.GetFlags() & SETTINGS_STYLE ) == 0 )
262 0 : break;
263 0 : SetSettings( Application::GetSettings() );
264 0 : m_pPaintDevice.reset( new VirtualDevice( *this ) );
265 :
266 : // fall through.
267 :
268 : case DATACHANGED_FONTS:
269 : case DATACHANGED_FONTSUBSTITUTION:
270 : {
271 0 : const StyleSettings& rStyleSettings( GetSettings().GetStyleSettings() );
272 :
273 : // Font.
274 0 : Font aFont = rStyleSettings.GetAppFont();
275 0 : if ( IsControlFont() )
276 0 : aFont.Merge( GetControlFont() );
277 0 : SetZoomedPointFont( aFont );
278 :
279 : // Color.
280 0 : Color aColor;
281 0 : if ( IsControlForeground() )
282 0 : aColor = GetControlForeground();
283 : else
284 0 : aColor = rStyleSettings.GetButtonTextColor();
285 0 : SetTextColor( aColor );
286 0 : SetTextFillColor();
287 :
288 0 : Invalidate();
289 : }
290 0 : break;
291 : }
292 0 : }
293 :
294 :
295 0 : Reference< XWindowPeer > ToolPanelDrawer::GetComponentInterface( sal_Bool i_bCreate )
296 : {
297 0 : Reference< XWindowPeer > xWindowPeer( Window::GetComponentInterface( sal_False ) );
298 0 : if ( !xWindowPeer.is() && i_bCreate )
299 : {
300 0 : xWindowPeer.set( new ToolPanelDrawerPeer() );
301 0 : SetComponentInterface( xWindowPeer );
302 : }
303 0 : return xWindowPeer;
304 : }
305 :
306 :
307 0 : Rectangle ToolPanelDrawer::impl_calcTextBoundingBox() const
308 : {
309 0 : Font aFont( GetFont() );
310 0 : if ( m_bExpanded )
311 0 : aFont.SetWeight( m_bExpanded ? WEIGHT_BOLD : WEIGHT_NORMAL );
312 0 : m_pPaintDevice->SetFont( aFont );
313 :
314 0 : int nAvailableWidth = m_pPaintDevice->GetTextWidth( GetText() );
315 :
316 : Rectangle aTextBox(
317 : Point(),
318 : Size(
319 : nAvailableWidth,
320 0 : GetSettings().GetStyleSettings().GetTitleHeight()
321 : )
322 0 : );
323 0 : aTextBox.Top() += ( aTextBox.GetHeight() - GetTextHeight() ) / 2;
324 0 : aTextBox.Left() += s_nIndentationWidth;
325 0 : aTextBox.Right() -= 1;
326 :
327 0 : aTextBox = m_pPaintDevice->GetTextRect( aTextBox, GetText(), impl_getTextStyle() );
328 0 : return aTextBox;
329 : }
330 :
331 :
332 0 : Rectangle ToolPanelDrawer::impl_calcTitleBarBox( const Rectangle& i_rTextBox ) const
333 : {
334 0 : Rectangle aTitleBarBox( i_rTextBox );
335 0 : aTitleBarBox.Bottom() += aTitleBarBox.Top();
336 0 : aTitleBarBox.Top() = 0;
337 0 : aTitleBarBox.Left() = 0;
338 :
339 0 : const long nWidth = GetOutputSizePixel().Width();
340 0 : if ( aTitleBarBox.GetWidth() < nWidth )
341 0 : aTitleBarBox.Right() = nWidth - 1;
342 :
343 0 : return aTitleBarBox;
344 : }
345 :
346 :
347 0 : void ToolPanelDrawer::SetExpanded( const bool i_bExpanded )
348 : {
349 0 : if ( m_bExpanded != i_bExpanded )
350 : {
351 0 : m_bExpanded = i_bExpanded;
352 0 : CallEventListeners( m_bExpanded ? VCLEVENT_ITEM_EXPANDED : VCLEVENT_ITEM_COLLAPSED );
353 0 : Invalidate();
354 : }
355 0 : }
356 :
357 :
358 : } // namespace svt
359 :
360 :
361 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|