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/debug.hxx>
21 : #include <vcl/status.hxx>
22 : #include <vcl/prgsbar.hxx>
23 : #include <vcl/settings.hxx>
24 :
25 : #define PROGRESSBAR_OFFSET 3
26 : #define PROGRESSBAR_WIN_OFFSET 2
27 :
28 0 : void ProgressBar::ImplInit()
29 : {
30 0 : mnPercent = 0;
31 0 : mbCalcNew = true;
32 :
33 0 : ImplInitSettings( true, true, true );
34 0 : }
35 :
36 0 : static WinBits clearProgressBarBorder( Window* pParent, WinBits nOrgStyle )
37 : {
38 0 : WinBits nOutStyle = nOrgStyle;
39 0 : if( pParent && (nOrgStyle & WB_BORDER) != 0 )
40 : {
41 0 : if( pParent->IsNativeControlSupported( CTRL_PROGRESS, PART_ENTIRE_CONTROL ) )
42 0 : nOutStyle &= WB_BORDER;
43 : }
44 0 : return nOutStyle;
45 : }
46 :
47 0 : Size ProgressBar::GetOptimalSize() const
48 : {
49 0 : return Size(150, 20);
50 : }
51 :
52 0 : ProgressBar::ProgressBar( Window* pParent, WinBits nWinStyle ) :
53 0 : Window( pParent, clearProgressBarBorder( pParent, nWinStyle ) )
54 : {
55 0 : SetOutputSizePixel( GetOptimalSize() );
56 0 : ImplInit();
57 0 : }
58 :
59 0 : ProgressBar::ProgressBar( Window* pParent, const ResId& rResId ) :
60 0 : Window( pParent, rResId )
61 : {
62 0 : ImplInit();
63 0 : }
64 :
65 0 : ProgressBar::~ProgressBar()
66 : {
67 0 : }
68 :
69 0 : void ProgressBar::ImplInitSettings( bool bFont,
70 : bool bForeground, bool bBackground )
71 : {
72 0 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
73 :
74 : /* FIXME: !!! We do not support text output at the moment
75 : if ( bFont )
76 : {
77 : Font aFont;
78 : aFont = rStyleSettings.GetAppFont();
79 : if ( IsControlFont() )
80 : aFont.Merge( GetControlFont() );
81 : SetZoomedPointFont( aFont );
82 : }
83 : */
84 :
85 0 : if ( bBackground )
86 : {
87 0 : if( !IsControlBackground() &&
88 0 : IsNativeControlSupported( CTRL_PROGRESS, PART_ENTIRE_CONTROL ) )
89 : {
90 0 : if( (GetStyle() & WB_BORDER) )
91 0 : SetBorderStyle( WINDOW_BORDER_REMOVEBORDER );
92 0 : EnableChildTransparentMode( true );
93 0 : SetPaintTransparent( true );
94 0 : SetBackground();
95 0 : SetParentClipMode( PARENTCLIPMODE_NOCLIP );
96 : }
97 : else
98 : {
99 0 : Color aColor;
100 0 : if ( IsControlBackground() )
101 0 : aColor = GetControlBackground();
102 : else
103 0 : aColor = rStyleSettings.GetFaceColor();
104 0 : SetBackground( aColor );
105 : }
106 : }
107 :
108 0 : if ( bForeground || bFont )
109 : {
110 0 : Color aColor = rStyleSettings.GetHighlightColor();
111 0 : if ( IsControlForeground() )
112 0 : aColor = GetControlForeground();
113 0 : if ( aColor.IsRGBEqual( GetBackground().GetColor() ) )
114 : {
115 0 : if ( aColor.GetLuminance() > 100 )
116 0 : aColor.DecreaseLuminance( 64 );
117 : else
118 0 : aColor.IncreaseLuminance( 64 );
119 : }
120 0 : SetLineColor();
121 0 : SetFillColor( aColor );
122 : /* FIXME: !!! We do not support text output at the moment
123 : SetTextColor( aColor );
124 : SetTextFillColor();
125 : */
126 : }
127 0 : }
128 :
129 0 : void ProgressBar::ImplDrawProgress( sal_uInt16 nOldPerc, sal_uInt16 nNewPerc )
130 : {
131 0 : if ( mbCalcNew )
132 : {
133 0 : mbCalcNew = false;
134 :
135 0 : Size aSize = GetOutputSizePixel();
136 0 : mnPrgsHeight = aSize.Height()-(PROGRESSBAR_WIN_OFFSET*2);
137 0 : mnPrgsWidth = (mnPrgsHeight*2)/3;
138 0 : maPos.Y() = PROGRESSBAR_WIN_OFFSET;
139 0 : long nMaxWidth = (aSize.Width()-(PROGRESSBAR_WIN_OFFSET*2)+PROGRESSBAR_OFFSET);
140 0 : sal_uInt16 nMaxCount = (sal_uInt16)(nMaxWidth / (mnPrgsWidth+PROGRESSBAR_OFFSET));
141 0 : if ( nMaxCount <= 1 )
142 0 : nMaxCount = 1;
143 : else
144 : {
145 0 : while ( ((10000/(10000/nMaxCount))*(mnPrgsWidth+PROGRESSBAR_OFFSET)) > nMaxWidth )
146 0 : nMaxCount--;
147 : }
148 0 : mnPercentCount = 10000/nMaxCount;
149 0 : nMaxWidth = ((10000/(10000/nMaxCount))*(mnPrgsWidth+PROGRESSBAR_OFFSET))-PROGRESSBAR_OFFSET;
150 0 : maPos.X() = (aSize.Width()-nMaxWidth)/2;
151 : }
152 :
153 : ::DrawProgress( this, maPos, PROGRESSBAR_OFFSET, mnPrgsWidth, mnPrgsHeight,
154 : nOldPerc*100, nNewPerc*100, mnPercentCount,
155 0 : Rectangle( Point(), GetSizePixel() ) );
156 0 : }
157 :
158 0 : void ProgressBar::Paint( const Rectangle& )
159 : {
160 0 : ImplDrawProgress( 0, mnPercent );
161 0 : }
162 :
163 0 : void ProgressBar::Resize()
164 : {
165 0 : mbCalcNew = true;
166 0 : if ( IsReallyVisible() )
167 0 : Invalidate();
168 0 : }
169 :
170 0 : void ProgressBar::SetValue( sal_uInt16 nNewPercent )
171 : {
172 : DBG_ASSERTWARNING( nNewPercent <= 100, "StatusBar::SetProgressValue(): nPercent > 100" );
173 :
174 0 : if ( nNewPercent < mnPercent )
175 : {
176 0 : mbCalcNew = true;
177 0 : mnPercent = nNewPercent;
178 0 : if ( IsReallyVisible() )
179 : {
180 0 : Invalidate();
181 0 : Update();
182 : }
183 : }
184 : else
185 : {
186 0 : ImplDrawProgress( mnPercent, nNewPercent );
187 0 : mnPercent = nNewPercent;
188 : }
189 0 : }
190 :
191 0 : void ProgressBar::StateChanged( StateChangedType nType )
192 : {
193 : /* FIXME: !!! We do not support text output at the moment
194 : if ( (nType == STATE_CHANGE_ZOOM) ||
195 : (nType == STATE_CHANGE_CONTROLFONT) )
196 : {
197 : ImplInitSettings( true, false, false );
198 : Invalidate();
199 : }
200 : else
201 : */
202 0 : if ( nType == STATE_CHANGE_CONTROLFOREGROUND )
203 : {
204 0 : ImplInitSettings( false, true, false );
205 0 : Invalidate();
206 : }
207 0 : else if ( nType == STATE_CHANGE_CONTROLBACKGROUND )
208 : {
209 0 : ImplInitSettings( false, false, true );
210 0 : Invalidate();
211 : }
212 :
213 0 : Window::StateChanged( nType );
214 0 : }
215 :
216 0 : void ProgressBar::DataChanged( const DataChangedEvent& rDCEvt )
217 : {
218 0 : if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
219 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE) )
220 : {
221 0 : ImplInitSettings( true, true, true );
222 0 : Invalidate();
223 : }
224 :
225 0 : Window::DataChanged( rDCEvt );
226 0 : }
227 :
228 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|