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