Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: xfa/fwl/core/cfwl_scrollbar.h

Issue 2525083002: Rename IFWL classes which do not have CFWL equivalents (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fwl/core/cfwl_notedriver.cpp ('k') | xfa/fwl/core/cfwl_scrollbar.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef XFA_FWL_CORE_IFWL_SCROLLBAR_H_ 7 #ifndef XFA_FWL_CORE_CFWL_SCROLLBAR_H_
8 #define XFA_FWL_CORE_IFWL_SCROLLBAR_H_ 8 #define XFA_FWL_CORE_CFWL_SCROLLBAR_H_
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "core/fxcrt/fx_system.h" 12 #include "core/fxcrt/fx_system.h"
13 #include "xfa/fwl/core/cfwl_evtscroll.h" 13 #include "xfa/fwl/core/cfwl_evtscroll.h"
14 #include "xfa/fwl/core/cfwl_timer.h" 14 #include "xfa/fwl/core/cfwl_timer.h"
15 #include "xfa/fwl/core/cfwl_widgetproperties.h" 15 #include "xfa/fwl/core/cfwl_widgetproperties.h"
16 #include "xfa/fwl/core/ifwl_widget.h" 16 #include "xfa/fwl/core/ifwl_widget.h"
17 17
18 class IFWL_Widget; 18 class IFWL_Widget;
19 19
20 #define FWL_STYLEEXT_SCB_Horz (0L << 0) 20 #define FWL_STYLEEXT_SCB_Horz (0L << 0)
21 #define FWL_STYLEEXT_SCB_Vert (1L << 0) 21 #define FWL_STYLEEXT_SCB_Vert (1L << 0)
22 22
23 class IFWL_ScrollBar : public IFWL_Widget { 23 class CFWL_ScrollBar : public IFWL_Widget {
24 public: 24 public:
25 IFWL_ScrollBar(const CFWL_App* app, 25 CFWL_ScrollBar(const CFWL_App* app,
26 std::unique_ptr<CFWL_WidgetProperties> properties, 26 std::unique_ptr<CFWL_WidgetProperties> properties,
27 IFWL_Widget* pOuter); 27 IFWL_Widget* pOuter);
28 ~IFWL_ScrollBar() override; 28 ~CFWL_ScrollBar() override;
29 29
30 // IFWL_Widget 30 // IFWL_Widget
31 FWL_Type GetClassID() const override; 31 FWL_Type GetClassID() const override;
32 void GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override; 32 void GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override;
33 void Update() override; 33 void Update() override;
34 void DrawWidget(CFX_Graphics* pGraphics, 34 void DrawWidget(CFX_Graphics* pGraphics,
35 const CFX_Matrix* pMatrix = nullptr) override; 35 const CFX_Matrix* pMatrix = nullptr) override;
36 void OnProcessMessage(CFWL_Message* pMessage) override; 36 void OnProcessMessage(CFWL_Message* pMessage) override;
37 void OnDrawWidget(CFX_Graphics* pGraphics, 37 void OnDrawWidget(CFX_Graphics* pGraphics,
38 const CFX_Matrix* pMatrix) override; 38 const CFX_Matrix* pMatrix) override;
(...skipping 12 matching lines...) Expand all
51 void SetPageSize(FX_FLOAT fPageSize) { m_fPageSize = fPageSize; } 51 void SetPageSize(FX_FLOAT fPageSize) { m_fPageSize = fPageSize; }
52 FX_FLOAT GetStepSize() const { return m_fStepSize; } 52 FX_FLOAT GetStepSize() const { return m_fStepSize; }
53 void SetStepSize(FX_FLOAT fStepSize) { m_fStepSize = fStepSize; } 53 void SetStepSize(FX_FLOAT fStepSize) { m_fStepSize = fStepSize; }
54 FX_FLOAT GetPos() const { return m_fPos; } 54 FX_FLOAT GetPos() const { return m_fPos; }
55 void SetPos(FX_FLOAT fPos) { m_fPos = fPos; } 55 void SetPos(FX_FLOAT fPos) { m_fPos = fPos; }
56 void SetTrackPos(FX_FLOAT fTrackPos); 56 void SetTrackPos(FX_FLOAT fTrackPos);
57 57
58 private: 58 private:
59 class Timer : public CFWL_Timer { 59 class Timer : public CFWL_Timer {
60 public: 60 public:
61 explicit Timer(IFWL_ScrollBar* pToolTip); 61 explicit Timer(CFWL_ScrollBar* pToolTip);
62 ~Timer() override {} 62 ~Timer() override {}
63 63
64 void Run(CFWL_TimerInfo* pTimerInfo) override; 64 void Run(CFWL_TimerInfo* pTimerInfo) override;
65 }; 65 };
66 friend class IFWL_ScrollBar::Timer; 66 friend class CFWL_ScrollBar::Timer;
67 67
68 bool IsVertical() const { 68 bool IsVertical() const {
69 return !!(m_pProperties->m_dwStyleExes & FWL_STYLEEXT_SCB_Vert); 69 return !!(m_pProperties->m_dwStyleExes & FWL_STYLEEXT_SCB_Vert);
70 } 70 }
71 void DrawTrack(CFX_Graphics* pGraphics, 71 void DrawTrack(CFX_Graphics* pGraphics,
72 IFWL_ThemeProvider* pTheme, 72 IFWL_ThemeProvider* pTheme,
73 bool bLower = true, 73 bool bLower = true,
74 const CFX_Matrix* pMatrix = nullptr); 74 const CFX_Matrix* pMatrix = nullptr);
75 void DrawArrowBtn(CFX_Graphics* pGraphics, 75 void DrawArrowBtn(CFX_Graphics* pGraphics,
76 IFWL_ThemeProvider* pTheme, 76 IFWL_ThemeProvider* pTheme,
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 bool m_bMouseDown; 137 bool m_bMouseDown;
138 FX_FLOAT m_fButtonLen; 138 FX_FLOAT m_fButtonLen;
139 bool m_bMinSize; 139 bool m_bMinSize;
140 CFX_RectF m_rtClient; 140 CFX_RectF m_rtClient;
141 CFX_RectF m_rtThumb; 141 CFX_RectF m_rtThumb;
142 CFX_RectF m_rtMinBtn; 142 CFX_RectF m_rtMinBtn;
143 CFX_RectF m_rtMaxBtn; 143 CFX_RectF m_rtMaxBtn;
144 CFX_RectF m_rtMinTrack; 144 CFX_RectF m_rtMinTrack;
145 CFX_RectF m_rtMaxTrack; 145 CFX_RectF m_rtMaxTrack;
146 FX_FLOAT m_fMinThumb; 146 FX_FLOAT m_fMinThumb;
147 IFWL_ScrollBar::Timer m_Timer; 147 CFWL_ScrollBar::Timer m_Timer;
148 }; 148 };
149 149
150 #endif // XFA_FWL_CORE_IFWL_SCROLLBAR_H_ 150 #endif // XFA_FWL_CORE_CFWL_SCROLLBAR_H_
OLDNEW
« no previous file with comments | « xfa/fwl/core/cfwl_notedriver.cpp ('k') | xfa/fwl/core/cfwl_scrollbar.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698