| 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_IFWL_PUSHBUTTON_H_ | 7 #ifndef XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ |
| 8 #define XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ | 8 #define XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ |
| 9 | 9 |
| 10 #include "xfa/fwl/core/cfwl_widgetimpproperties.h" | 10 #include "xfa/fwl/core/cfwl_widgetimpproperties.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 virtual CFX_DIBitmap* GetPicture(IFWL_Widget* pWidget) = 0; | 38 virtual CFX_DIBitmap* GetPicture(IFWL_Widget* pWidget) = 0; |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 class IFWL_PushButton : public IFWL_Widget { | 41 class IFWL_PushButton : public IFWL_Widget { |
| 42 public: | 42 public: |
| 43 IFWL_PushButton(const IFWL_App* app, | 43 IFWL_PushButton(const IFWL_App* app, |
| 44 const CFWL_WidgetImpProperties& properties); | 44 const CFWL_WidgetImpProperties& properties); |
| 45 ~IFWL_PushButton() override; | 45 ~IFWL_PushButton() override; |
| 46 | 46 |
| 47 // IFWL_Widget | 47 // IFWL_Widget |
| 48 void Initialize() override; | |
| 49 void Finalize() override; | |
| 50 FWL_Type GetClassID() const override; | 48 FWL_Type GetClassID() const override; |
| 51 FWL_Error GetWidgetRect(CFX_RectF& rect, FX_BOOL bAutoSize = FALSE) override; | 49 FWL_Error GetWidgetRect(CFX_RectF& rect, FX_BOOL bAutoSize = FALSE) override; |
| 52 void SetStates(uint32_t dwStates, FX_BOOL bSet = TRUE) override; | 50 void SetStates(uint32_t dwStates, FX_BOOL bSet = TRUE) override; |
| 53 FWL_Error Update() override; | 51 FWL_Error Update() override; |
| 54 FWL_Error DrawWidget(CFX_Graphics* pGraphics, | 52 FWL_Error DrawWidget(CFX_Graphics* pGraphics, |
| 55 const CFX_Matrix* pMatrix = nullptr) override; | 53 const CFX_Matrix* pMatrix = nullptr) override; |
| 56 | 54 |
| 57 protected: | 55 protected: |
| 58 friend class CFWL_PushButtonImpDelegate; | 56 friend class CFWL_PushButtonImpDelegate; |
| 59 | 57 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 85 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); | 83 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); |
| 86 void OnLButtonDown(CFWL_MsgMouse* pMsg); | 84 void OnLButtonDown(CFWL_MsgMouse* pMsg); |
| 87 void OnLButtonUp(CFWL_MsgMouse* pMsg); | 85 void OnLButtonUp(CFWL_MsgMouse* pMsg); |
| 88 void OnMouseMove(CFWL_MsgMouse* pMsg); | 86 void OnMouseMove(CFWL_MsgMouse* pMsg); |
| 89 void OnMouseLeave(CFWL_MsgMouse* pMsg); | 87 void OnMouseLeave(CFWL_MsgMouse* pMsg); |
| 90 void OnKeyDown(CFWL_MsgKey* pMsg); | 88 void OnKeyDown(CFWL_MsgKey* pMsg); |
| 91 IFWL_PushButton* m_pOwner; | 89 IFWL_PushButton* m_pOwner; |
| 92 }; | 90 }; |
| 93 | 91 |
| 94 #endif // XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ | 92 #endif // XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ |
| OLD | NEW |