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

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

Issue 2533623002: Cleanup default FWL params part I (Closed)
Patch Set: Rebase to master 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
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_CFWL_SCROLLBAR_H_ 7 #ifndef XFA_FWL_CORE_CFWL_SCROLLBAR_H_
8 #define XFA_FWL_CORE_CFWL_SCROLLBAR_H_ 8 #define XFA_FWL_CORE_CFWL_SCROLLBAR_H_
9 9
10 #include <memory> 10 #include <memory>
(...skipping 11 matching lines...) Expand all
22 22
23 class CFWL_ScrollBar : public CFWL_Widget { 23 class CFWL_ScrollBar : public CFWL_Widget {
24 public: 24 public:
25 CFWL_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 CFWL_Widget* pOuter); 27 CFWL_Widget* pOuter);
28 ~CFWL_ScrollBar() override; 28 ~CFWL_ScrollBar() override;
29 29
30 // CFWL_Widget 30 // CFWL_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) override;
33 void Update() override; 33 void Update() override;
34 void DrawWidget(CFX_Graphics* pGraphics, 34 void DrawWidget(CFX_Graphics* pGraphics, const CFX_Matrix* pMatrix) override;
35 const CFX_Matrix* pMatrix = nullptr) override;
36 void OnProcessMessage(CFWL_Message* pMessage) override; 35 void OnProcessMessage(CFWL_Message* pMessage) override;
37 void OnDrawWidget(CFX_Graphics* pGraphics, 36 void OnDrawWidget(CFX_Graphics* pGraphics,
38 const CFX_Matrix* pMatrix) override; 37 const CFX_Matrix* pMatrix) override;
39 38
40 void GetRange(FX_FLOAT* fMin, FX_FLOAT* fMax) const { 39 void GetRange(FX_FLOAT* fMin, FX_FLOAT* fMax) const {
41 ASSERT(fMin); 40 ASSERT(fMin);
42 ASSERT(fMax); 41 ASSERT(fMax);
43 *fMin = m_fRangeMin; 42 *fMin = m_fRangeMin;
44 *fMax = m_fRangeMax; 43 *fMax = m_fRangeMax;
45 } 44 }
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 CFX_RectF m_rtThumb; 140 CFX_RectF m_rtThumb;
142 CFX_RectF m_rtMinBtn; 141 CFX_RectF m_rtMinBtn;
143 CFX_RectF m_rtMaxBtn; 142 CFX_RectF m_rtMaxBtn;
144 CFX_RectF m_rtMinTrack; 143 CFX_RectF m_rtMinTrack;
145 CFX_RectF m_rtMaxTrack; 144 CFX_RectF m_rtMaxTrack;
146 FX_FLOAT m_fMinThumb; 145 FX_FLOAT m_fMinThumb;
147 CFWL_ScrollBar::Timer m_Timer; 146 CFWL_ScrollBar::Timer m_Timer;
148 }; 147 };
149 148
150 #endif // XFA_FWL_CORE_CFWL_SCROLLBAR_H_ 149 #endif // XFA_FWL_CORE_CFWL_SCROLLBAR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698