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 9 : void GroupBox::ImplInit( vcl::Window* pParent, WinBits nStyle )
34 : {
35 9 : nStyle = ImplInitStyle( nStyle );
36 9 : Control::ImplInit( pParent, nStyle, NULL );
37 9 : SetMouseTransparent( true );
38 9 : ImplInitSettings( true, true, true );
39 9 : }
40 :
41 9 : WinBits GroupBox::ImplInitStyle( WinBits nStyle )
42 : {
43 9 : if ( !(nStyle & WB_NOGROUP) )
44 9 : nStyle |= WB_GROUP;
45 9 : return nStyle;
46 : }
47 :
48 27 : const vcl::Font& GroupBox::GetCanonicalFont( const StyleSettings& _rStyle ) const
49 : {
50 27 : return _rStyle.GetGroupFont();
51 : }
52 :
53 27 : const Color& GroupBox::GetCanonicalTextColor( const StyleSettings& _rStyle ) const
54 : {
55 27 : return _rStyle.GetGroupTextColor();
56 : }
57 :
58 25 : void GroupBox::ImplInitSettings( bool bFont,
59 : bool bForeground, bool bBackground )
60 : {
61 25 : Control::ImplInitSettings( bFont, bForeground );
62 :
63 25 : if ( bBackground )
64 : {
65 19 : vcl::Window* pParent = GetParent();
66 38 : if ( (pParent->IsChildTransparentModeEnabled() ||
67 38 : !(pParent->GetStyle() & WB_CLIPCHILDREN) ) &&
68 19 : !IsControlBackground() )
69 : {
70 19 : EnableChildTransparentMode( true );
71 19 : SetParentClipMode( ParentClipMode::NoClip );
72 19 : SetPaintTransparent( true );
73 19 : SetBackground();
74 : }
75 : else
76 : {
77 0 : EnableChildTransparentMode( false );
78 0 : SetParentClipMode( ParentClipMode::NONE );
79 0 : SetPaintTransparent( false );
80 :
81 0 : if ( IsControlBackground() )
82 0 : SetBackground( GetControlBackground() );
83 : else
84 0 : SetBackground( pParent->GetBackground() );
85 : }
86 : }
87 25 : }
88 :
89 9 : GroupBox::GroupBox( vcl::Window* pParent, WinBits nStyle ) :
90 9 : Control( WINDOW_GROUPBOX )
91 : {
92 9 : ImplInit( pParent, nStyle );
93 9 : }
94 :
95 272 : void GroupBox::ImplDraw( OutputDevice* pDev, DrawFlags nDrawFlags,
96 : const Point& rPos, const Size& rSize, bool bLayout )
97 : {
98 : long nTop;
99 : long nTextOff;
100 272 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
101 272 : OUString aText( GetText() );
102 272 : Rectangle aRect( rPos, rSize );
103 272 : DrawTextFlags nTextStyle = DrawTextFlags::Left | DrawTextFlags::Top | DrawTextFlags::EndEllipsis | DrawTextFlags::Mnemonic;
104 :
105 272 : if ( GetStyle() & WB_NOLABEL )
106 0 : nTextStyle &= ~DrawTextFlags::Mnemonic;
107 272 : if ( nDrawFlags & DrawFlags::NoMnemonic )
108 : {
109 0 : if ( nTextStyle & DrawTextFlags::Mnemonic )
110 : {
111 0 : aText = GetNonMnemonicString( aText );
112 0 : nTextStyle &= ~DrawTextFlags::Mnemonic;
113 : }
114 : }
115 272 : if ( !(nDrawFlags & DrawFlags::NoDisable) )
116 : {
117 272 : if ( !IsEnabled() )
118 2 : nTextStyle |= DrawTextFlags::Disable;
119 : }
120 1360 : if ( (nDrawFlags & DrawFlags::Mono) ||
121 1088 : (rStyleSettings.GetOptions() & StyleSettingsOptions::Mono) )
122 : {
123 0 : nTextStyle |= DrawTextFlags::Mono;
124 0 : nDrawFlags |= DrawFlags::Mono;
125 : }
126 :
127 272 : if (aText.isEmpty())
128 : {
129 270 : nTop = rPos.Y();
130 270 : nTextOff = 0;
131 : }
132 : else
133 : {
134 2 : aRect.Left() += GROUP_BORDER;
135 2 : aRect.Right() -= GROUP_BORDER;
136 2 : aRect = pDev->GetTextRect( aRect, aText, nTextStyle );
137 2 : nTop = rPos.Y();
138 2 : nTop += aRect.GetHeight() / 2;
139 2 : nTextOff = GROUP_TEXT_BORDER;
140 : }
141 :
142 272 : if( ! bLayout )
143 : {
144 272 : if ( nDrawFlags & DrawFlags::Mono )
145 0 : pDev->SetLineColor( Color( COL_BLACK ) );
146 : else
147 272 : pDev->SetLineColor( rStyleSettings.GetShadowColor() );
148 :
149 272 : if (aText.isEmpty())
150 270 : pDev->DrawLine( Point( rPos.X(), nTop ), Point( rPos.X()+rSize.Width()-2, nTop ) );
151 : else
152 : {
153 2 : pDev->DrawLine( Point( rPos.X(), nTop ), Point( aRect.Left()-nTextOff, nTop ) );
154 2 : pDev->DrawLine( Point( aRect.Right()+nTextOff, nTop ), Point( rPos.X()+rSize.Width()-2, nTop ) );
155 : }
156 272 : pDev->DrawLine( Point( rPos.X(), nTop ), Point( rPos.X(), rPos.Y()+rSize.Height()-2 ) );
157 272 : pDev->DrawLine( Point( rPos.X(), rPos.Y()+rSize.Height()-2 ), Point( rPos.X()+rSize.Width()-2, rPos.Y()+rSize.Height()-2 ) );
158 272 : pDev->DrawLine( Point( rPos.X()+rSize.Width()-2, rPos.Y()+rSize.Height()-2 ), Point( rPos.X()+rSize.Width()-2, nTop ) );
159 :
160 272 : 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 272 : if ( !bIsPrinter && !(nDrawFlags & DrawFlags::Mono) )
165 : {
166 272 : pDev->SetLineColor( rStyleSettings.GetLightColor() );
167 272 : if (aText.isEmpty())
168 270 : pDev->DrawLine( Point( rPos.X()+1, nTop+1 ), Point( rPos.X()+rSize.Width()-3, nTop+1 ) );
169 : else
170 : {
171 2 : pDev->DrawLine( Point( rPos.X()+1, nTop+1 ), Point( aRect.Left()-nTextOff, nTop+1 ) );
172 2 : pDev->DrawLine( Point( aRect.Right()+nTextOff, nTop+1 ), Point( rPos.X()+rSize.Width()-3, nTop+1 ) );
173 : }
174 272 : pDev->DrawLine( Point( rPos.X()+1, nTop+1 ), Point( rPos.X()+1, rPos.Y()+rSize.Height()-3 ) );
175 272 : pDev->DrawLine( Point( rPos.X(), rPos.Y()+rSize.Height()-1 ), Point( rPos.X()+rSize.Width()-1, rPos.Y()+rSize.Height()-1 ) );
176 272 : pDev->DrawLine( Point( rPos.X()+rSize.Width()-1, rPos.Y()+rSize.Height()-1 ), Point( rPos.X()+rSize.Width()-1, nTop ) );
177 : }
178 : }
179 :
180 272 : MetricVector* pVector = bLayout ? &mpControlData->mpLayoutData->m_aUnicodeBoundRects : NULL;
181 272 : OUString* pDisplayText = bLayout ? &mpControlData->mpLayoutData->m_aDisplayText : NULL;
182 272 : DrawControlText( *pDev, aRect, aText, nTextStyle, pVector, pDisplayText );
183 272 : }
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), DrawFlags::NONE, Point(), GetOutputSizePixel(), true );
189 0 : }
190 :
191 272 : void GroupBox::Paint( vcl::RenderContext& rRenderContext, const Rectangle& )
192 : {
193 272 : ImplDraw(&rRenderContext, DrawFlags::NONE, Point(), GetOutputSizePixel());
194 272 : }
195 :
196 0 : void GroupBox::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize,
197 : DrawFlags 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 & DrawFlags::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 9 : void GroupBox::Resize()
217 : {
218 9 : Control::Resize();
219 9 : Invalidate();
220 9 : }
221 :
222 574 : void GroupBox::StateChanged( StateChangedType nType )
223 : {
224 574 : Control::StateChanged( nType );
225 :
226 574 : if ( (nType == StateChangedType::Enable) ||
227 572 : (nType == StateChangedType::Text) ||
228 : (nType == StateChangedType::UpdateMode) )
229 : {
230 4 : if ( IsUpdateMode() )
231 2 : Invalidate();
232 : }
233 572 : 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 572 : else if ( (nType == StateChangedType::Zoom) ||
241 : (nType == StateChangedType::ControlFont) )
242 : {
243 6 : ImplInitSettings( true, false, false );
244 6 : Invalidate();
245 : }
246 566 : else if ( nType == StateChangedType::ControlForeground )
247 : {
248 0 : ImplInitSettings( false, true, false );
249 0 : Invalidate();
250 : }
251 566 : else if ( nType == StateChangedType::ControlBackground )
252 : {
253 0 : ImplInitSettings( false, false, true );
254 0 : Invalidate();
255 : }
256 574 : }
257 :
258 10 : void GroupBox::DataChanged( const DataChangedEvent& rDCEvt )
259 : {
260 10 : Control::DataChanged( rDCEvt );
261 :
262 40 : if ( (rDCEvt.GetType() == DataChangedEventType::FONTS) ||
263 40 : (rDCEvt.GetType() == DataChangedEventType::FONTSUBSTITUTION) ||
264 30 : ((rDCEvt.GetType() == DataChangedEventType::SETTINGS) &&
265 40 : (rDCEvt.GetFlags() & AllSettingsFlags::STYLE)) )
266 : {
267 10 : ImplInitSettings( true, true, true );
268 10 : Invalidate();
269 : }
270 10 : }
271 :
272 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|