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 22 matching lines...) Expand all Loading... |
33 class CFX_DIBitmap; | 33 class CFX_DIBitmap; |
34 class IFWL_Widget; | 34 class IFWL_Widget; |
35 | 35 |
36 class IFWL_PushButtonDP : public IFWL_DataProvider { | 36 class IFWL_PushButtonDP : public IFWL_DataProvider { |
37 public: | 37 public: |
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 CFWL_WidgetImpProperties& properties); | 43 IFWL_PushButton(const IFWL_App* app, |
| 44 const CFWL_WidgetImpProperties& properties); |
44 ~IFWL_PushButton() override; | 45 ~IFWL_PushButton() override; |
45 | 46 |
46 // IFWL_Widget | 47 // IFWL_Widget |
| 48 void Initialize() override; |
| 49 void Finalize() override; |
47 FWL_Type GetClassID() const override; | 50 FWL_Type GetClassID() const override; |
48 FWL_Error Initialize() override; | |
49 void Finalize() override; | |
50 FWL_Error GetWidgetRect(CFX_RectF& rect, FX_BOOL bAutoSize = FALSE) override; | 51 FWL_Error GetWidgetRect(CFX_RectF& rect, FX_BOOL bAutoSize = FALSE) override; |
51 void SetStates(uint32_t dwStates, FX_BOOL bSet = TRUE) override; | 52 void SetStates(uint32_t dwStates, FX_BOOL bSet = TRUE) override; |
52 FWL_Error Update() override; | 53 FWL_Error Update() override; |
53 FWL_Error DrawWidget(CFX_Graphics* pGraphics, | 54 FWL_Error DrawWidget(CFX_Graphics* pGraphics, |
54 const CFX_Matrix* pMatrix = nullptr) override; | 55 const CFX_Matrix* pMatrix = nullptr) override; |
55 | 56 |
56 protected: | 57 protected: |
57 friend class CFWL_PushButtonImpDelegate; | 58 friend class CFWL_PushButtonImpDelegate; |
58 | 59 |
59 void DrawBkground(CFX_Graphics* pGraphics, | 60 void DrawBkground(CFX_Graphics* pGraphics, |
(...skipping 24 matching lines...) Expand all Loading... |
84 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); | 85 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); |
85 void OnLButtonDown(CFWL_MsgMouse* pMsg); | 86 void OnLButtonDown(CFWL_MsgMouse* pMsg); |
86 void OnLButtonUp(CFWL_MsgMouse* pMsg); | 87 void OnLButtonUp(CFWL_MsgMouse* pMsg); |
87 void OnMouseMove(CFWL_MsgMouse* pMsg); | 88 void OnMouseMove(CFWL_MsgMouse* pMsg); |
88 void OnMouseLeave(CFWL_MsgMouse* pMsg); | 89 void OnMouseLeave(CFWL_MsgMouse* pMsg); |
89 void OnKeyDown(CFWL_MsgKey* pMsg); | 90 void OnKeyDown(CFWL_MsgKey* pMsg); |
90 IFWL_PushButton* m_pOwner; | 91 IFWL_PushButton* m_pOwner; |
91 }; | 92 }; |
92 | 93 |
93 #endif // XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ | 94 #endif // XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ |
OLD | NEW |