| OLD | NEW |
| 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_SPINBUTTON_H_ | 7 #ifndef XFA_FWL_CORE_CFWL_SPINBUTTON_H_ |
| 8 #define XFA_FWL_CORE_CFWL_SPINBUTTON_H_ | 8 #define XFA_FWL_CORE_CFWL_SPINBUTTON_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "xfa/fwl/core/cfwl_event.h" | |
| 13 #include "xfa/fwl/core/cfwl_timer.h" | 12 #include "xfa/fwl/core/cfwl_timer.h" |
| 14 #include "xfa/fwl/core/cfwl_widget.h" | 13 #include "xfa/fwl/core/cfwl_widget.h" |
| 15 #include "xfa/fxfa/cxfa_eventparam.h" | 14 #include "xfa/fxfa/cxfa_eventparam.h" |
| 16 | 15 |
| 17 #define FWL_STYLEEXE_SPB_Vert (1L << 0) | 16 #define FWL_STYLEEXE_SPB_Vert (1L << 0) |
| 18 | 17 |
| 19 class CFWL_MsgMouse; | 18 class CFWL_MsgMouse; |
| 20 class CFWL_WidgetProperties; | 19 class CFWL_WidgetProperties; |
| 21 | 20 |
| 22 class CFWL_SpinButton : public CFWL_Widget { | 21 class CFWL_SpinButton : public CFWL_Widget { |
| 23 public: | 22 public: |
| 24 CFWL_SpinButton(const CFWL_App* app, | 23 CFWL_SpinButton(const CFWL_App* app, |
| 25 std::unique_ptr<CFWL_WidgetProperties> properties); | 24 std::unique_ptr<CFWL_WidgetProperties> properties); |
| 26 ~CFWL_SpinButton() override; | 25 ~CFWL_SpinButton() override; |
| 27 | 26 |
| 28 // CFWL_Widget | 27 // CFWL_Widget |
| 29 FWL_Type GetClassID() const override; | 28 FWL_Type GetClassID() const override; |
| 30 void GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override; | 29 void GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override; |
| 31 void Update() override; | 30 void Update() override; |
| 32 FWL_WidgetHit HitTest(FX_FLOAT fx, FX_FLOAT fy) override; | 31 FWL_WidgetHit HitTest(FX_FLOAT fx, FX_FLOAT fy) override; |
| 33 void DrawWidget(CFX_Graphics* pGraphics, | 32 void DrawWidget(CFX_Graphics* pGraphics, |
| 34 const CFX_Matrix* pMatrix = nullptr) override; | 33 const CFX_Matrix* pMatrix = nullptr) override; |
| 35 void OnProcessMessage(CFWL_Message* pMessage) override; | 34 void OnProcessMessage(CFWL_Message* pMessage) override; |
| 36 void OnProcessEvent(CFWL_Event* pEvent) override; | |
| 37 void OnDrawWidget(CFX_Graphics* pGraphics, | 35 void OnDrawWidget(CFX_Graphics* pGraphics, |
| 38 const CFX_Matrix* pMatrix) override; | 36 const CFX_Matrix* pMatrix) override; |
| 39 | 37 |
| 40 private: | 38 private: |
| 41 class Timer : public CFWL_Timer { | 39 class Timer : public CFWL_Timer { |
| 42 public: | 40 public: |
| 43 explicit Timer(CFWL_SpinButton* pToolTip); | 41 explicit Timer(CFWL_SpinButton* pToolTip); |
| 44 ~Timer() override {} | 42 ~Timer() override {} |
| 45 | 43 |
| 46 void Run(CFWL_TimerInfo* pTimerInfo) override; | 44 void Run(CFWL_TimerInfo* pTimerInfo) override; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 67 CFX_RectF m_rtDnButton; | 65 CFX_RectF m_rtDnButton; |
| 68 uint32_t m_dwUpState; | 66 uint32_t m_dwUpState; |
| 69 uint32_t m_dwDnState; | 67 uint32_t m_dwDnState; |
| 70 int32_t m_iButtonIndex; | 68 int32_t m_iButtonIndex; |
| 71 bool m_bLButtonDwn; | 69 bool m_bLButtonDwn; |
| 72 CFWL_TimerInfo* m_pTimerInfo; | 70 CFWL_TimerInfo* m_pTimerInfo; |
| 73 CFWL_SpinButton::Timer m_Timer; | 71 CFWL_SpinButton::Timer m_Timer; |
| 74 }; | 72 }; |
| 75 | 73 |
| 76 #endif // XFA_FWL_CORE_CFWL_SPINBUTTON_H_ | 74 #endif // XFA_FWL_CORE_CFWL_SPINBUTTON_H_ |
| OLD | NEW |