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 "svx/dialcontrol.hxx"
21 : #include "bmpmask.hrc"
22 : #include <svx/dialmgr.hxx>
23 : #include <tools/rcid.h>
24 : #include <cmath>
25 : #include <vcl/virdev.hxx>
26 : #include <vcl/svapp.hxx>
27 : #include <vcl/bitmap.hxx>
28 : #include <vcl/field.hxx>
29 : #include <vcl/settings.hxx>
30 : #include <svtools/colorcfg.hxx>
31 : #include <vcl/builder.hxx>
32 :
33 : namespace svx {
34 :
35 :
36 :
37 : const long DIAL_OUTER_WIDTH = 8;
38 :
39 :
40 :
41 0 : DialControlBmp::DialControlBmp( vcl::Window& rParent ) :
42 : VirtualDevice( rParent, 0, 0 ),
43 : mbEnabled( true ),
44 : mrParent( rParent ),
45 : mnCenterX(0),
46 0 : mnCenterY(0)
47 : {
48 0 : EnableRTL( false );
49 0 : }
50 :
51 0 : void DialControlBmp::InitBitmap(const vcl::Font& rFont)
52 : {
53 0 : Init();
54 0 : SetFont(rFont);
55 0 : }
56 :
57 0 : void DialControlBmp::CopyBackground( const DialControlBmp& rSrc )
58 : {
59 0 : Init();
60 0 : SetSize(rSrc.maRect.GetSize());
61 0 : mbEnabled = rSrc.mbEnabled;
62 0 : Point aPos;
63 0 : DrawBitmapEx( aPos, rSrc.GetBitmapEx( aPos, maRect.GetSize() ) );
64 0 : }
65 :
66 0 : void DialControlBmp::DrawBackground( const Size& rSize, bool bEnabled )
67 : {
68 0 : Init();
69 0 : SetSize(rSize);
70 0 : mbEnabled = bEnabled;
71 0 : DrawBackground();
72 0 : }
73 :
74 0 : void DialControlBmp::DrawElements( const OUString& rText, sal_Int32 nAngle )
75 : {
76 0 : double fAngle = nAngle * F_PI180 / 100.0;
77 0 : double fSin = sin( fAngle );
78 0 : double fCos = cos( fAngle );
79 0 : double fWidth = GetTextWidth( rText ) / 2.0;
80 0 : double fHeight = GetTextHeight() / 2.0;
81 :
82 0 : if ( !rText.isEmpty() )
83 : {
84 : // rotated text
85 0 : vcl::Font aFont( GetFont() );
86 0 : aFont.SetColor( GetTextColor() );
87 0 : aFont.SetOrientation( static_cast< short >( (nAngle + 5) / 10 ) ); // Font uses 1/10 degrees
88 0 : aFont.SetWeight( WEIGHT_BOLD );
89 0 : SetFont( aFont );
90 :
91 0 : long nX = static_cast< long >( mnCenterX - fWidth * fCos - fHeight * fSin );
92 0 : long nY = static_cast< long >( mnCenterY + fWidth * fSin - fHeight * fCos );
93 0 : Rectangle aRect( nX, nY, 2 * mnCenterX - nX, 2 * mnCenterY - nY );
94 0 : DrawText( aRect, rText, mbEnabled ? 0 : TEXT_DRAW_DISABLE );
95 : }
96 : else
97 : {
98 : // only a line
99 0 : const sal_Int32 nDx (fCos * (maRect.GetWidth()-4) / 2);
100 0 : const sal_Int32 nDy (-fSin * (maRect.GetHeight()-4) / 2);
101 0 : Point pt1( maRect.Center() );
102 0 : Point pt2( pt1.X() + nDx, pt1.Y() + nDy);
103 :
104 0 : SetLineColor( GetTextColor() );
105 0 : DrawLine( pt1, pt2 );
106 : }
107 :
108 : // *** drag button ***
109 :
110 0 : bool bMain = (nAngle % 4500) != 0;
111 0 : SetLineColor( GetButtonLineColor() );
112 0 : SetFillColor( GetButtonFillColor( bMain ) );
113 :
114 0 : long nX = mnCenterX - static_cast< long >( (DIAL_OUTER_WIDTH / 2 - mnCenterX) * fCos );
115 0 : long nY = mnCenterY - static_cast< long >( (mnCenterY - DIAL_OUTER_WIDTH / 2) * fSin );
116 0 : long nSize = bMain ? (DIAL_OUTER_WIDTH / 4) : (DIAL_OUTER_WIDTH / 2 - 1);
117 0 : DrawEllipse( Rectangle( nX - nSize, nY - nSize, nX + nSize, nY + nSize ) );
118 0 : }
119 :
120 0 : const Color& DialControlBmp::GetBackgroundColor() const
121 : {
122 0 : return GetSettings().GetStyleSettings().GetDialogColor();
123 : }
124 :
125 0 : const Color& DialControlBmp::GetTextColor() const
126 : {
127 0 : return GetSettings().GetStyleSettings().GetLabelTextColor();
128 : }
129 :
130 0 : const Color& DialControlBmp::GetScaleLineColor() const
131 : {
132 0 : const StyleSettings& rSett = GetSettings().GetStyleSettings();
133 0 : return mbEnabled ? rSett.GetButtonTextColor() : rSett.GetDisableColor();
134 : }
135 :
136 0 : const Color& DialControlBmp::GetButtonLineColor() const
137 : {
138 0 : const StyleSettings& rSett = GetSettings().GetStyleSettings();
139 0 : return mbEnabled ? rSett.GetButtonTextColor() : rSett.GetDisableColor();
140 : }
141 :
142 0 : const Color& DialControlBmp::GetButtonFillColor( bool bMain ) const
143 : {
144 0 : const StyleSettings& rSett = GetSettings().GetStyleSettings();
145 0 : return mbEnabled ? (bMain ? rSett.GetMenuColor() : rSett.GetHighlightColor()) : rSett.GetDisableColor();
146 : }
147 :
148 0 : void DialControlBmp::Init()
149 : {
150 0 : SetSettings(mrParent.GetSettings());
151 0 : SetBackground();
152 0 : }
153 :
154 0 : void DialControlBmp::SetSize( const Size& rSize )
155 : {
156 0 : maRect.SetPos( Point( 0, 0 ) );
157 0 : maRect.SetSize( rSize );
158 0 : mnCenterX = rSize.Width() / 2;
159 0 : mnCenterY = rSize.Height() / 2;
160 0 : SetOutputSize( rSize );
161 0 : }
162 :
163 0 : void DialControlBmp::DrawBackground()
164 : {
165 : // *** background with 3D effect ***
166 :
167 0 : SetLineColor();
168 0 : SetFillColor();
169 0 : Erase();
170 :
171 0 : EnableRTL( true ); // draw 3D effect in correct direction
172 :
173 0 : sal_uInt8 nDiff = mbEnabled ? 0x18 : 0x10;
174 0 : Color aColor;
175 :
176 0 : aColor = GetBackgroundColor();
177 0 : SetFillColor( aColor );
178 0 : DrawPie( maRect, maRect.TopRight(), maRect.TopCenter() );
179 0 : DrawPie( maRect, maRect.BottomLeft(), maRect.BottomCenter() );
180 :
181 0 : aColor.DecreaseLuminance( nDiff );
182 0 : SetFillColor( aColor );
183 0 : DrawPie( maRect, maRect.BottomCenter(), maRect.TopRight() );
184 :
185 0 : aColor.DecreaseLuminance( nDiff );
186 0 : SetFillColor( aColor );
187 0 : DrawPie( maRect, maRect.BottomRight(), maRect.RightCenter() );
188 :
189 0 : aColor = GetBackgroundColor();
190 0 : aColor.IncreaseLuminance( nDiff );
191 0 : SetFillColor( aColor );
192 0 : DrawPie( maRect, maRect.TopCenter(), maRect.BottomLeft() );
193 :
194 0 : aColor.IncreaseLuminance( nDiff );
195 0 : SetFillColor( aColor );
196 0 : DrawPie( maRect, maRect.TopLeft(), maRect.LeftCenter() );
197 :
198 0 : EnableRTL( false );
199 :
200 : // *** calibration ***
201 :
202 0 : Point aStartPos( mnCenterX, mnCenterY );
203 0 : Color aFullColor( GetScaleLineColor() );
204 0 : Color aLightColor( GetBackgroundColor() );
205 0 : aLightColor.Merge( aFullColor, 128 );
206 :
207 0 : for( int nAngle = 0; nAngle < 360; nAngle += 15 )
208 : {
209 0 : SetLineColor( (nAngle % 45) ? aLightColor : aFullColor );
210 0 : double fAngle = nAngle * F_PI180;
211 0 : long nX = static_cast< long >( -mnCenterX * cos( fAngle ) );
212 0 : long nY = static_cast< long >( mnCenterY * sin( fAngle ) );
213 0 : DrawLine( aStartPos, Point( mnCenterX - nX, mnCenterY - nY ) );
214 : }
215 :
216 : // *** clear inner area ***
217 :
218 0 : SetLineColor();
219 0 : SetFillColor( GetBackgroundColor() );
220 0 : DrawEllipse( Rectangle( maRect.Left() + DIAL_OUTER_WIDTH, maRect.Top() + DIAL_OUTER_WIDTH,
221 0 : maRect.Right() - DIAL_OUTER_WIDTH, maRect.Bottom() - DIAL_OUTER_WIDTH ) );
222 0 : }
223 :
224 :
225 :
226 0 : DialControl::DialControl_Impl::DialControl_Impl ( vcl::Window& rParent ) :
227 0 : mpBmpEnabled(new DialControlBmp(rParent)),
228 0 : mpBmpDisabled(new DialControlBmp(rParent)),
229 0 : mpBmpBuffered(new DialControlBmp(rParent)),
230 : mpLinkField( 0 ),
231 : mnLinkedFieldValueMultiplyer( 0 ),
232 : mnAngle( 0 ),
233 : mnInitialAngle( 0 ),
234 : mnOldAngle( 0 ),
235 : mnCenterX( 0 ),
236 : mnCenterY( 0 ),
237 0 : mbNoRot( false )
238 : {
239 0 : }
240 :
241 0 : void DialControl::DialControl_Impl::Init( const Size& rWinSize, const vcl::Font& rWinFont )
242 : {
243 0 : maWinFont = rWinFont;
244 0 : maWinFont.SetTransparent(true);
245 0 : mpBmpBuffered->InitBitmap(maWinFont);
246 0 : SetSize(rWinSize);
247 0 : }
248 :
249 0 : void DialControl::DialControl_Impl::SetSize( const Size& rWinSize )
250 : {
251 : // make the control squared, and adjusted so that we have a well-defined
252 : // center ["(x - 1) | 1" creates odd value <= x]
253 0 : long nMin = (std::min(rWinSize.Width(), rWinSize.Height()) - 1) | 1;
254 :
255 0 : maWinSize = Size( nMin, nMin );
256 :
257 0 : mnCenterX = maWinSize.Width() / 2;
258 0 : mnCenterY = maWinSize.Height() / 2;
259 :
260 0 : mpBmpEnabled->DrawBackground( maWinSize, true );
261 0 : mpBmpDisabled->DrawBackground( maWinSize, false );
262 0 : mpBmpBuffered->SetSize( maWinSize );
263 0 : }
264 :
265 :
266 :
267 0 : DialControl::DialControl( vcl::Window* pParent, WinBits nBits ) :
268 : Control( pParent, nBits ),
269 0 : mpImpl( new DialControl_Impl( *this ) )
270 : {
271 0 : Init( GetOutputSizePixel() );
272 0 : }
273 :
274 0 : DialControl::~DialControl()
275 : {
276 0 : }
277 :
278 0 : extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeDialControl(vcl::Window *pParent, VclBuilder::stringmap &)
279 : {
280 0 : return new DialControl(pParent, WB_TABSTOP);
281 : }
282 :
283 0 : void DialControl::Resize()
284 : {
285 0 : mpImpl->SetSize(GetOutputSizePixel());
286 0 : InvalidateControl();
287 0 : }
288 :
289 0 : void DialControl::Paint( const Rectangle& )
290 : {
291 0 : Point aPos;
292 0 : DrawBitmapEx( aPos, mpImpl->mpBmpBuffered->GetBitmapEx( aPos, mpImpl->maWinSize ) );
293 0 : }
294 :
295 0 : void DialControl::StateChanged( StateChangedType nStateChange )
296 : {
297 0 : if( nStateChange == StateChangedType::ENABLE )
298 0 : InvalidateControl();
299 :
300 : // update the linked edit field
301 0 : if( mpImpl->mpLinkField )
302 : {
303 0 : NumericField& rField = *mpImpl->mpLinkField;
304 0 : switch( nStateChange )
305 : {
306 0 : case StateChangedType::VISIBLE: rField.Show( IsVisible() ); break;
307 0 : case StateChangedType::ENABLE: rField.Enable( IsEnabled() ); break;
308 : default:;
309 : }
310 : }
311 :
312 0 : Control::StateChanged( nStateChange );
313 0 : }
314 :
315 0 : void DialControl::DataChanged( const DataChangedEvent& rDCEvt )
316 : {
317 0 : if( (rDCEvt.GetType() == DATACHANGED_SETTINGS) && (rDCEvt.GetFlags() & SETTINGS_STYLE) )
318 : {
319 0 : Init( mpImpl->maWinSize, mpImpl->maWinFont );
320 0 : InvalidateControl();
321 : }
322 0 : Control::DataChanged( rDCEvt );
323 0 : }
324 :
325 0 : void DialControl::MouseButtonDown( const MouseEvent& rMEvt )
326 : {
327 0 : if( rMEvt.IsLeft() )
328 : {
329 0 : GrabFocus();
330 0 : CaptureMouse();
331 0 : mpImpl->mnOldAngle = mpImpl->mnAngle;
332 0 : HandleMouseEvent( rMEvt.GetPosPixel(), true );
333 : }
334 0 : Control::MouseButtonDown( rMEvt );
335 0 : }
336 :
337 0 : void DialControl::MouseMove( const MouseEvent& rMEvt )
338 : {
339 0 : if( IsMouseCaptured() && rMEvt.IsLeft() )
340 0 : HandleMouseEvent( rMEvt.GetPosPixel(), false );
341 0 : Control::MouseMove(rMEvt );
342 0 : }
343 :
344 0 : void DialControl::MouseButtonUp( const MouseEvent& rMEvt )
345 : {
346 0 : if( IsMouseCaptured() )
347 : {
348 0 : ReleaseMouse();
349 0 : if( mpImpl->mpLinkField )
350 0 : mpImpl->mpLinkField->GrabFocus();
351 : }
352 0 : Control::MouseButtonUp( rMEvt );
353 0 : }
354 :
355 0 : void DialControl::KeyInput( const KeyEvent& rKEvt )
356 : {
357 0 : const vcl::KeyCode& rKCode = rKEvt.GetKeyCode();
358 0 : if( !rKCode.GetModifier() && (rKCode.GetCode() == KEY_ESCAPE) )
359 0 : HandleEscapeEvent();
360 : else
361 0 : Control::KeyInput( rKEvt );
362 0 : }
363 :
364 0 : void DialControl::LoseFocus()
365 : {
366 : // release captured mouse
367 0 : HandleEscapeEvent();
368 0 : Control::LoseFocus();
369 0 : }
370 :
371 0 : bool DialControl::HasRotation() const
372 : {
373 0 : return !mpImpl->mbNoRot;
374 : }
375 :
376 0 : void DialControl::SetNoRotation()
377 : {
378 0 : if( !mpImpl->mbNoRot )
379 : {
380 0 : mpImpl->mbNoRot = true;
381 0 : InvalidateControl();
382 0 : if( mpImpl->mpLinkField )
383 0 : mpImpl->mpLinkField->SetText( "" );
384 : }
385 0 : }
386 :
387 0 : sal_Int32 DialControl::GetRotation() const
388 : {
389 0 : return mpImpl->mnAngle;
390 : }
391 :
392 0 : Size DialControl::GetOptimalSize() const
393 : {
394 0 : return LogicToPixel(Size(42 , 43), MAP_APPFONT);
395 : }
396 :
397 0 : void DialControl::SetRotation( sal_Int32 nAngle )
398 : {
399 0 : SetRotation( nAngle, false );
400 0 : }
401 :
402 0 : void DialControl::SetLinkedField( NumericField* pField, sal_Int32 nDecimalPlaces )
403 : {
404 0 : mpImpl->mnLinkedFieldValueMultiplyer = 100 / std::pow(10.0, double(nDecimalPlaces));
405 :
406 : // remove modify handler from old linked field
407 0 : ImplSetFieldLink( Link() );
408 : // remember the new linked field
409 0 : mpImpl->mpLinkField = pField;
410 : // set modify handler at new linked field
411 0 : ImplSetFieldLink( LINK( this, DialControl, LinkedFieldModifyHdl ) );
412 0 : }
413 :
414 0 : void DialControl::SaveValue()
415 : {
416 0 : mpImpl->mnInitialAngle = mpImpl->mnAngle;
417 0 : }
418 :
419 0 : bool DialControl::IsValueModified()
420 : {
421 0 : return mpImpl->mnInitialAngle != mpImpl->mnAngle;
422 : }
423 :
424 0 : void DialControl::SetModifyHdl( const Link& rLink )
425 : {
426 0 : mpImpl->maModifyHdl = rLink;
427 0 : }
428 :
429 0 : void DialControl::Init( const Size& rWinSize, const vcl::Font& rWinFont )
430 : {
431 0 : mpImpl->Init( rWinSize, rWinFont );
432 0 : EnableRTL( false ); // don't mirror mouse handling
433 0 : SetOutputSizePixel( mpImpl->maWinSize );
434 0 : SetBackground();
435 0 : }
436 :
437 0 : void DialControl::Init( const Size& rWinSize )
438 : {
439 : //hidpi TODO: GetDefaultFont() picks a font size too small, so fix it here.
440 0 : vcl::Font aDefaultSize = GetFont();
441 :
442 : vcl::Font aFont( OutputDevice::GetDefaultFont(
443 0 : DEFAULTFONT_UI_SANS, Application::GetSettings().GetUILanguageTag().getLanguageType(), DEFAULTFONT_FLAGS_ONLYONE ) );
444 :
445 0 : aFont.SetHeight(aDefaultSize.GetHeight());
446 0 : Init( rWinSize, aFont );
447 0 : }
448 :
449 0 : void DialControl::InvalidateControl()
450 : {
451 0 : mpImpl->mpBmpBuffered->CopyBackground( IsEnabled() ? *mpImpl->mpBmpEnabled : *mpImpl->mpBmpDisabled );
452 0 : if( !mpImpl->mbNoRot )
453 0 : mpImpl->mpBmpBuffered->DrawElements( GetText(), mpImpl->mnAngle );
454 0 : Invalidate();
455 0 : }
456 :
457 0 : void DialControl::SetRotation( sal_Int32 nAngle, bool bBroadcast )
458 : {
459 0 : bool bOldSel = mpImpl->mbNoRot;
460 0 : mpImpl->mbNoRot = false;
461 :
462 0 : while( nAngle < 0 )
463 0 : nAngle += 36000;
464 :
465 0 : if( !bOldSel || (mpImpl->mnAngle != nAngle) )
466 : {
467 0 : mpImpl->mnAngle = nAngle;
468 0 : InvalidateControl();
469 0 : if( mpImpl->mpLinkField )
470 0 : mpImpl->mpLinkField->SetValue( static_cast< long >( GetRotation() / mpImpl->mnLinkedFieldValueMultiplyer ) );
471 0 : if( bBroadcast )
472 0 : mpImpl->maModifyHdl.Call( this );
473 : }
474 0 : }
475 :
476 0 : void DialControl::ImplSetFieldLink( const Link& rLink )
477 : {
478 0 : if( mpImpl->mpLinkField )
479 : {
480 0 : NumericField& rField = *mpImpl->mpLinkField;
481 0 : rField.SetModifyHdl( rLink );
482 0 : rField.SetUpHdl( rLink );
483 0 : rField.SetDownHdl( rLink );
484 0 : rField.SetFirstHdl( rLink );
485 0 : rField.SetLastHdl( rLink );
486 0 : rField.SetLoseFocusHdl( rLink );
487 : }
488 0 : }
489 :
490 0 : void DialControl::HandleMouseEvent( const Point& rPos, bool bInitial )
491 : {
492 0 : long nX = rPos.X() - mpImpl->mnCenterX;
493 0 : long nY = mpImpl->mnCenterY - rPos.Y();
494 0 : double fH = sqrt( static_cast< double >( nX ) * nX + static_cast< double >( nY ) * nY );
495 0 : if( fH != 0.0 )
496 : {
497 0 : double fAngle = acos( nX / fH );
498 0 : sal_Int32 nAngle = static_cast< sal_Int32 >( fAngle / F_PI180 * 100.0 );
499 0 : if( nY < 0 )
500 0 : nAngle = 36000 - nAngle;
501 0 : if( bInitial ) // round to entire 15 degrees
502 0 : nAngle = ((nAngle + 750) / 1500) * 1500;
503 : // Round up to 1 degree
504 0 : nAngle = (((nAngle + 50) / 100) * 100) % 36000;
505 0 : SetRotation( nAngle, true );
506 : }
507 0 : }
508 :
509 0 : void DialControl::HandleEscapeEvent()
510 : {
511 0 : if( IsMouseCaptured() )
512 : {
513 0 : ReleaseMouse();
514 0 : SetRotation( mpImpl->mnOldAngle, true );
515 0 : if( mpImpl->mpLinkField )
516 0 : mpImpl->mpLinkField->GrabFocus();
517 : }
518 0 : }
519 :
520 0 : IMPL_LINK( DialControl, LinkedFieldModifyHdl, NumericField*, pField )
521 : {
522 0 : if( pField )
523 0 : SetRotation( static_cast< sal_Int32 >( pField->GetValue() * mpImpl->mnLinkedFieldValueMultiplyer ), false );
524 0 : return 0;
525 : }
526 :
527 :
528 :
529 0 : DialControlWrapper::DialControlWrapper( DialControl& rDial ) :
530 0 : SingleControlWrapperType( rDial )
531 : {
532 0 : }
533 :
534 0 : bool DialControlWrapper::IsControlDontKnow() const
535 : {
536 0 : return !GetControl().HasRotation();
537 : }
538 :
539 0 : void DialControlWrapper::SetControlDontKnow( bool bSet )
540 : {
541 0 : if( bSet )
542 0 : GetControl().SetNoRotation();
543 0 : }
544 :
545 0 : sal_Int32 DialControlWrapper::GetControlValue() const
546 : {
547 0 : return GetControl().GetRotation();
548 : }
549 :
550 0 : void DialControlWrapper::SetControlValue( sal_Int32 nValue )
551 : {
552 0 : GetControl().SetRotation( nValue );
553 0 : }
554 :
555 :
556 :
557 594 : } // namespace svx
558 :
559 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|