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