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 : #ifndef INCLUDED_VCL_SLIDER_HXX
21 : #define INCLUDED_VCL_SLIDER_HXX
22 :
23 : #include <vcl/dllapi.h>
24 : #include <vcl/ctrl.hxx>
25 : #include <vcl/scrbar.hxx>
26 : #include <vcl/field.hxx>
27 :
28 : class VCL_DLLPUBLIC Slider : public Control
29 : {
30 : private:
31 : Rectangle maChannel1Rect;
32 : Rectangle maChannel2Rect;
33 : Rectangle maThumbRect;
34 : long mnStartPos;
35 : long mnMouseOff;
36 : long mnThumbPixOffset;
37 : long mnThumbPixRange;
38 : long mnThumbPixPos;
39 : long mnChannelPixOffset;
40 : long mnChannelPixRange;
41 : long mnChannelPixTop;
42 : long mnChannelPixBottom;
43 : long mnMinRange;
44 : long mnMaxRange;
45 : long mnThumbPos;
46 : long mnLineSize;
47 : long mnPageSize;
48 : long mnDelta;
49 : sal_uInt16 mnDragDraw;
50 : sal_uInt16 mnDrawFlags;
51 : sal_uInt16 mnStateFlags;
52 : ScrollType meScrollType;
53 : bool mbCalcSize;
54 : bool mbFullDrag;
55 :
56 : VclPtr<NumericField> mpLinkedField;
57 :
58 : Link<> maSlideHdl;
59 : Link<> maEndSlideHdl;
60 :
61 : DECL_LINK(LinkedFieldModifyHdl, NumericField*);
62 :
63 : using Control::ImplInitSettings;
64 : using Window::ImplInit;
65 : SAL_DLLPRIVATE void ImplInit( vcl::Window* pParent, WinBits nStyle );
66 : SAL_DLLPRIVATE void ImplInitSettings();
67 : SAL_DLLPRIVATE void ImplUpdateRects( bool bUpdate = true );
68 : SAL_DLLPRIVATE long ImplCalcThumbPos( long nPixPos );
69 : SAL_DLLPRIVATE long ImplCalcThumbPosPix( long nPos );
70 : SAL_DLLPRIVATE void ImplCalc( bool bUpdate = true );
71 : SAL_DLLPRIVATE void ImplDraw(vcl::RenderContext& rRenderContext, sal_uInt16 nDrawFlags);
72 : SAL_DLLPRIVATE bool ImplIsPageUp( const Point& rPos );
73 : SAL_DLLPRIVATE bool ImplIsPageDown( const Point& rPos );
74 : SAL_DLLPRIVATE long ImplSlide( long nNewPos, bool bCallEndSlide );
75 : SAL_DLLPRIVATE long ImplDoAction( bool bCallEndSlide );
76 : SAL_DLLPRIVATE void ImplDoMouseAction( const Point& rPos, bool bCallAction = true );
77 : SAL_DLLPRIVATE long ImplDoSlide( long nNewPos );
78 : SAL_DLLPRIVATE long ImplDoSlideAction( ScrollType eScrollType );
79 : SAL_DLLPRIVATE void ImplSetFieldLink(const Link<>& rLink);
80 : SAL_DLLPRIVATE void ImplUpdateLinkedField();
81 :
82 : public:
83 : Slider( vcl::Window* pParent, WinBits nStyle = WB_HORZ );
84 : virtual ~Slider();
85 : virtual void dispose() SAL_OVERRIDE;
86 : virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
87 : virtual void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE;
88 : virtual void Tracking( const TrackingEvent& rTEvt ) SAL_OVERRIDE;
89 : virtual void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE;
90 : virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) SAL_OVERRIDE;
91 : virtual void Resize() SAL_OVERRIDE;
92 : virtual void RequestHelp( const HelpEvent& rHEvt ) SAL_OVERRIDE;
93 : virtual void StateChanged( StateChangedType nType ) SAL_OVERRIDE;
94 : virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;
95 :
96 : void Slide();
97 : void EndSlide();
98 :
99 : void EnableDrag( bool bEnable = true )
100 : { mbFullDrag = bEnable; }
101 : bool IsDragEnabled() const { return mbFullDrag; }
102 :
103 : void SetRangeMin(long nNewRange);
104 0 : long GetRangeMin() const { return mnMinRange; }
105 : void SetRangeMax(long nNewRange);
106 0 : long GetRangeMax() const { return mnMaxRange; }
107 : void SetRange( const Range& rRange );
108 : Range GetRange() const { return Range( GetRangeMin(), GetRangeMax() ); }
109 : void SetThumbPos( long nThumbPos );
110 0 : long GetThumbPos() const { return mnThumbPos; }
111 0 : void SetLineSize( long nNewSize ) { mnLineSize = nNewSize; }
112 0 : long GetLineSize() const { return mnLineSize; }
113 0 : void SetPageSize( long nNewSize ) { mnPageSize = nNewSize; }
114 0 : long GetPageSize() const { return mnPageSize; }
115 :
116 : long GetDelta() const { return mnDelta; }
117 :
118 : Size CalcWindowSizePixel();
119 :
120 : void SetLinkedField(VclPtr<NumericField> pField);
121 :
122 0 : void SetSlideHdl( const Link<>& rLink ) { maSlideHdl = rLink; }
123 : const Link<>& GetSlideHdl() const { return maSlideHdl; }
124 0 : void SetEndSlideHdl( const Link<>& rLink ) { maEndSlideHdl = rLink; }
125 : const Link<>& GetEndSlideHdl() const { return maEndSlideHdl; }
126 : };
127 :
128 : #endif // INCLUDED_VCL_SLIDER_HXX
129 :
130 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|