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 23 matching lines...) Expand all Loading... |
34 class CFX_DIBitmap; | 34 class CFX_DIBitmap; |
35 class IFWL_Widget; | 35 class IFWL_Widget; |
36 | 36 |
37 class IFWL_PushButtonDP : public IFWL_DataProvider { | 37 class IFWL_PushButtonDP : public IFWL_DataProvider { |
38 public: | 38 public: |
39 virtual CFX_DIBitmap* GetPicture(IFWL_Widget* pWidget) = 0; | 39 virtual CFX_DIBitmap* GetPicture(IFWL_Widget* pWidget) = 0; |
40 }; | 40 }; |
41 | 41 |
42 class IFWL_PushButton : public IFWL_Widget { | 42 class IFWL_PushButton : public IFWL_Widget { |
43 public: | 43 public: |
44 static IFWL_PushButton* Create(const CFWL_WidgetImpProperties& properties, | 44 IFWL_PushButton(const CFWL_WidgetImpProperties& properties); |
45 IFWL_Widget* pOuter); | |
46 | |
47 IFWL_PushButton(const CFWL_WidgetImpProperties& properties, | |
48 IFWL_Widget* pOuter); | |
49 ~IFWL_PushButton() override; | 45 ~IFWL_PushButton() override; |
50 | 46 |
51 // IFWL_Widget | 47 // IFWL_Widget |
52 FWL_Error GetClassName(CFX_WideString& wsClass) const override; | 48 FWL_Error GetClassName(CFX_WideString& wsClass) const override; |
53 FWL_Type GetClassID() const override; | 49 FWL_Type GetClassID() const override; |
54 FWL_Error Initialize() override; | 50 FWL_Error Initialize() override; |
55 FWL_Error Finalize() override; | 51 FWL_Error Finalize() override; |
56 FWL_Error GetWidgetRect(CFX_RectF& rect, FX_BOOL bAutoSize = FALSE) override; | 52 FWL_Error GetWidgetRect(CFX_RectF& rect, FX_BOOL bAutoSize = FALSE) override; |
57 void SetStates(uint32_t dwStates, FX_BOOL bSet = TRUE) override; | 53 void SetStates(uint32_t dwStates, FX_BOOL bSet = TRUE) override; |
58 FWL_Error Update() override; | 54 FWL_Error Update() override; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); | 86 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); |
91 void OnLButtonDown(CFWL_MsgMouse* pMsg); | 87 void OnLButtonDown(CFWL_MsgMouse* pMsg); |
92 void OnLButtonUp(CFWL_MsgMouse* pMsg); | 88 void OnLButtonUp(CFWL_MsgMouse* pMsg); |
93 void OnMouseMove(CFWL_MsgMouse* pMsg); | 89 void OnMouseMove(CFWL_MsgMouse* pMsg); |
94 void OnMouseLeave(CFWL_MsgMouse* pMsg); | 90 void OnMouseLeave(CFWL_MsgMouse* pMsg); |
95 void OnKeyDown(CFWL_MsgKey* pMsg); | 91 void OnKeyDown(CFWL_MsgKey* pMsg); |
96 IFWL_PushButton* m_pOwner; | 92 IFWL_PushButton* m_pOwner; |
97 }; | 93 }; |
98 | 94 |
99 #endif // XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ | 95 #endif // XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ |
OLD | NEW |