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 <tools/rc.h>
22 :
23 : #include <vcl/event.hxx>
24 : #include <vcl/group.hxx>
25 :
26 : #include <controldata.hxx>
27 :
28 : // =======================================================================
29 :
30 : #define GROUP_BORDER 12
31 : #define GROUP_TEXT_BORDER 2
32 :
33 : #define GROUP_VIEW_STYLE (WB_3DLOOK | WB_NOLABEL)
34 :
35 : // =======================================================================
36 :
37 0 : void GroupBox::ImplInit( Window* pParent, WinBits nStyle )
38 : {
39 0 : nStyle = ImplInitStyle( nStyle );
40 0 : Control::ImplInit( pParent, nStyle, NULL );
41 0 : SetMouseTransparent( sal_True );
42 0 : ImplInitSettings( sal_True, sal_True, sal_True );
43 0 : }
44 :
45 : // -----------------------------------------------------------------------
46 :
47 0 : WinBits GroupBox::ImplInitStyle( WinBits nStyle )
48 : {
49 0 : if ( !(nStyle & WB_NOGROUP) )
50 0 : nStyle |= WB_GROUP;
51 0 : return nStyle;
52 : }
53 :
54 : // -----------------------------------------------------------------
55 :
56 0 : const Font& GroupBox::GetCanonicalFont( const StyleSettings& _rStyle ) const
57 : {
58 0 : return _rStyle.GetGroupFont();
59 : }
60 :
61 : // -----------------------------------------------------------------
62 0 : const Color& GroupBox::GetCanonicalTextColor( const StyleSettings& _rStyle ) const
63 : {
64 0 : return _rStyle.GetGroupTextColor();
65 : }
66 :
67 : // -----------------------------------------------------------------------
68 :
69 0 : void GroupBox::ImplInitSettings( sal_Bool bFont,
70 : sal_Bool bForeground, sal_Bool bBackground )
71 : {
72 0 : Control::ImplInitSettings( bFont, bForeground );
73 :
74 0 : if ( bBackground )
75 : {
76 0 : Window* pParent = GetParent();
77 0 : if ( (pParent->IsChildTransparentModeEnabled() ||
78 0 : !(pParent->GetStyle() & WB_CLIPCHILDREN) ) &&
79 0 : !IsControlBackground() )
80 : {
81 0 : EnableChildTransparentMode( sal_True );
82 0 : SetParentClipMode( PARENTCLIPMODE_NOCLIP );
83 0 : SetPaintTransparent( sal_True );
84 0 : SetBackground();
85 : }
86 : else
87 : {
88 0 : EnableChildTransparentMode( sal_False );
89 0 : SetParentClipMode( 0 );
90 0 : SetPaintTransparent( sal_False );
91 :
92 0 : if ( IsControlBackground() )
93 0 : SetBackground( GetControlBackground() );
94 : else
95 0 : SetBackground( pParent->GetBackground() );
96 : }
97 : }
98 0 : }
99 :
100 : // -----------------------------------------------------------------------
101 :
102 0 : GroupBox::GroupBox( Window* pParent, WinBits nStyle ) :
103 0 : Control( WINDOW_GROUPBOX )
104 : {
105 0 : ImplInit( pParent, nStyle );
106 0 : }
107 :
108 : // -----------------------------------------------------------------------
109 :
110 0 : GroupBox::GroupBox( Window* pParent, const ResId& rResId ) :
111 0 : Control( WINDOW_GROUPBOX )
112 : {
113 0 : rResId.SetRT( RSC_GROUPBOX );
114 0 : WinBits nStyle = ImplInitRes( rResId );
115 0 : ImplInit( pParent, nStyle );
116 0 : ImplLoadRes( rResId );
117 :
118 0 : if ( !(nStyle & WB_HIDE) )
119 0 : Show();
120 0 : }
121 :
122 : // -----------------------------------------------------------------------
123 :
124 0 : void GroupBox::ImplDraw( OutputDevice* pDev, sal_uLong nDrawFlags,
125 : const Point& rPos, const Size& rSize, bool bLayout )
126 : {
127 : long nTop;
128 : long nTextOff;
129 0 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
130 0 : XubString aText( GetText() );
131 0 : Rectangle aRect( rPos, rSize );
132 0 : sal_uInt16 nTextStyle = TEXT_DRAW_LEFT | TEXT_DRAW_TOP | TEXT_DRAW_ENDELLIPSIS | TEXT_DRAW_MNEMONIC;
133 :
134 0 : if ( GetStyle() & WB_NOLABEL )
135 0 : nTextStyle &= ~TEXT_DRAW_MNEMONIC;
136 0 : if ( nDrawFlags & WINDOW_DRAW_NOMNEMONIC )
137 : {
138 0 : if ( nTextStyle & TEXT_DRAW_MNEMONIC )
139 : {
140 0 : aText = GetNonMnemonicString( aText );
141 0 : nTextStyle &= ~TEXT_DRAW_MNEMONIC;
142 : }
143 : }
144 0 : if ( !(nDrawFlags & WINDOW_DRAW_NODISABLE) )
145 : {
146 0 : if ( !IsEnabled() )
147 0 : nTextStyle |= TEXT_DRAW_DISABLE;
148 : }
149 0 : if ( (nDrawFlags & WINDOW_DRAW_MONO) ||
150 0 : (rStyleSettings.GetOptions() & STYLE_OPTION_MONO) )
151 : {
152 0 : nTextStyle |= TEXT_DRAW_MONO;
153 0 : nDrawFlags |= WINDOW_DRAW_MONO;
154 : }
155 :
156 0 : if ( !aText.Len() )
157 : {
158 0 : nTop = rPos.Y();
159 0 : nTextOff = 0;
160 : }
161 : else
162 : {
163 0 : aRect.Left() += GROUP_BORDER;
164 0 : aRect.Right() -= GROUP_BORDER;
165 0 : aRect = pDev->GetTextRect( aRect, aText, nTextStyle );
166 0 : nTop = rPos.Y();
167 0 : nTop += aRect.GetHeight() / 2;
168 0 : nTextOff = GROUP_TEXT_BORDER;
169 : }
170 :
171 0 : if( ! bLayout )
172 : {
173 0 : if ( nDrawFlags & WINDOW_DRAW_MONO )
174 0 : pDev->SetLineColor( Color( COL_BLACK ) );
175 : else
176 0 : pDev->SetLineColor( rStyleSettings.GetShadowColor() );
177 :
178 0 : if ( !aText.Len() )
179 0 : pDev->DrawLine( Point( rPos.X(), nTop ), Point( rPos.X()+rSize.Width()-2, nTop ) );
180 : else
181 : {
182 0 : pDev->DrawLine( Point( rPos.X(), nTop ), Point( aRect.Left()-nTextOff, nTop ) );
183 0 : pDev->DrawLine( Point( aRect.Right()+nTextOff, nTop ), Point( rPos.X()+rSize.Width()-2, nTop ) );
184 : }
185 0 : pDev->DrawLine( Point( rPos.X(), nTop ), Point( rPos.X(), rPos.Y()+rSize.Height()-2 ) );
186 0 : pDev->DrawLine( Point( rPos.X(), rPos.Y()+rSize.Height()-2 ), Point( rPos.X()+rSize.Width()-2, rPos.Y()+rSize.Height()-2 ) );
187 0 : pDev->DrawLine( Point( rPos.X()+rSize.Width()-2, rPos.Y()+rSize.Height()-2 ), Point( rPos.X()+rSize.Width()-2, nTop ) );
188 :
189 0 : bool bIsPrinter = OUTDEV_PRINTER == pDev->GetOutDevType();
190 : // if we're drawing onto a printer, spare the 3D effect
191 : // #i46986# / 2005-04-13 / frank.schoenheit@sun.com
192 :
193 0 : if ( !bIsPrinter && !(nDrawFlags & WINDOW_DRAW_MONO) )
194 : {
195 0 : pDev->SetLineColor( rStyleSettings.GetLightColor() );
196 0 : if ( !aText.Len() )
197 0 : pDev->DrawLine( Point( rPos.X()+1, nTop+1 ), Point( rPos.X()+rSize.Width()-3, nTop+1 ) );
198 : else
199 : {
200 0 : pDev->DrawLine( Point( rPos.X()+1, nTop+1 ), Point( aRect.Left()-nTextOff, nTop+1 ) );
201 0 : pDev->DrawLine( Point( aRect.Right()+nTextOff, nTop+1 ), Point( rPos.X()+rSize.Width()-3, nTop+1 ) );
202 : }
203 0 : pDev->DrawLine( Point( rPos.X()+1, nTop+1 ), Point( rPos.X()+1, rPos.Y()+rSize.Height()-3 ) );
204 0 : pDev->DrawLine( Point( rPos.X(), rPos.Y()+rSize.Height()-1 ), Point( rPos.X()+rSize.Width()-1, rPos.Y()+rSize.Height()-1 ) );
205 0 : pDev->DrawLine( Point( rPos.X()+rSize.Width()-1, rPos.Y()+rSize.Height()-1 ), Point( rPos.X()+rSize.Width()-1, nTop ) );
206 : }
207 : }
208 :
209 0 : MetricVector* pVector = bLayout ? &mpControlData->mpLayoutData->m_aUnicodeBoundRects : NULL;
210 0 : String* pDisplayText = bLayout ? &mpControlData->mpLayoutData->m_aDisplayText : NULL;
211 0 : DrawControlText( *pDev, aRect, aText, nTextStyle, pVector, pDisplayText );
212 0 : }
213 :
214 : // -----------------------------------------------------------------------
215 :
216 0 : void GroupBox::FillLayoutData() const
217 : {
218 0 : mpControlData->mpLayoutData = new vcl::ControlLayoutData();
219 0 : const_cast<GroupBox*>(this)-> ImplDraw( const_cast<GroupBox*>(this), 0, Point(), GetOutputSizePixel(), true );
220 0 : }
221 :
222 : // -----------------------------------------------------------------------
223 :
224 0 : void GroupBox::Paint( const Rectangle& )
225 : {
226 0 : ImplDraw( this, 0, Point(), GetOutputSizePixel() );
227 0 : }
228 :
229 : // -----------------------------------------------------------------------
230 :
231 0 : void GroupBox::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize,
232 : sal_uLong nFlags )
233 : {
234 0 : Point aPos = pDev->LogicToPixel( rPos );
235 0 : Size aSize = pDev->LogicToPixel( rSize );
236 0 : Font aFont = GetDrawPixelFont( pDev );
237 :
238 0 : pDev->Push();
239 0 : pDev->SetMapMode();
240 0 : pDev->SetFont( aFont );
241 0 : if ( nFlags & WINDOW_DRAW_MONO )
242 0 : pDev->SetTextColor( Color( COL_BLACK ) );
243 : else
244 0 : pDev->SetTextColor( GetTextColor() );
245 0 : pDev->SetTextFillColor();
246 :
247 0 : ImplDraw( pDev, nFlags, aPos, aSize );
248 0 : pDev->Pop();
249 0 : }
250 :
251 : // -----------------------------------------------------------------------
252 :
253 0 : void GroupBox::Resize()
254 : {
255 0 : Control::Resize();
256 0 : Invalidate();
257 0 : }
258 :
259 : // -----------------------------------------------------------------------
260 :
261 0 : void GroupBox::StateChanged( StateChangedType nType )
262 : {
263 0 : Control::StateChanged( nType );
264 :
265 0 : if ( (nType == STATE_CHANGE_ENABLE) ||
266 : (nType == STATE_CHANGE_TEXT) ||
267 : (nType == STATE_CHANGE_UPDATEMODE) )
268 : {
269 0 : if ( IsUpdateMode() )
270 0 : Invalidate();
271 : }
272 0 : else if ( nType == STATE_CHANGE_STYLE )
273 : {
274 0 : SetStyle( ImplInitStyle( GetStyle() ) );
275 0 : if ( (GetPrevStyle() & GROUP_VIEW_STYLE) !=
276 0 : (GetStyle() & GROUP_VIEW_STYLE) )
277 0 : Invalidate();
278 : }
279 0 : else if ( (nType == STATE_CHANGE_ZOOM) ||
280 : (nType == STATE_CHANGE_CONTROLFONT) )
281 : {
282 0 : ImplInitSettings( sal_True, sal_False, sal_False );
283 0 : Invalidate();
284 : }
285 0 : else if ( nType == STATE_CHANGE_CONTROLFOREGROUND )
286 : {
287 0 : ImplInitSettings( sal_False, sal_True, sal_False );
288 0 : Invalidate();
289 : }
290 0 : else if ( nType == STATE_CHANGE_CONTROLBACKGROUND )
291 : {
292 0 : ImplInitSettings( sal_False, sal_False, sal_True );
293 0 : Invalidate();
294 : }
295 0 : }
296 :
297 : // -----------------------------------------------------------------------
298 :
299 0 : void GroupBox::DataChanged( const DataChangedEvent& rDCEvt )
300 : {
301 0 : Control::DataChanged( rDCEvt );
302 :
303 0 : if ( (rDCEvt.GetType() == DATACHANGED_FONTS) ||
304 0 : (rDCEvt.GetType() == DATACHANGED_FONTSUBSTITUTION) ||
305 0 : ((rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
306 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE)) )
307 : {
308 0 : ImplInitSettings( sal_True, sal_True, sal_True );
309 0 : Invalidate();
310 : }
311 0 : }
312 :
313 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|