Chromium Code Reviews| 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_widgetproperties.h" |
| 11 #include "xfa/fwl/core/ifwl_dataprovider.h" | 11 #include "xfa/fwl/core/ifwl_dataprovider.h" |
| 12 #include "xfa/fwl/core/ifwl_widget.h" | 12 #include "xfa/fwl/core/ifwl_widget.h" |
| 13 | 13 |
| 14 #define FWL_STYLEEXT_PSB_Left (0L << 0) | 14 #define FWL_STYLEEXT_PSB_Left (0L << 0) |
| 15 #define FWL_STYLEEXT_PSB_Center (1L << 0) | 15 #define FWL_STYLEEXT_PSB_Center (1L << 0) |
| 16 #define FWL_STYLEEXT_PSB_Right (2L << 0) | 16 #define FWL_STYLEEXT_PSB_Right (2L << 0) |
| 17 #define FWL_STYLEEXT_PSB_Top (0L << 2) | 17 #define FWL_STYLEEXT_PSB_Top (0L << 2) |
| 18 #define FWL_STYLEEXT_PSB_VCenter (1L << 2) | 18 #define FWL_STYLEEXT_PSB_VCenter (1L << 2) |
| 19 #define FWL_STYLEEXT_PSB_Bottom (2L << 2) | 19 #define FWL_STYLEEXT_PSB_Bottom (2L << 2) |
| 20 #define FWL_STYLEEXT_PSB_TextOnly (0L << 4) | 20 #define FWL_STYLEEXT_PSB_TextOnly (0L << 4) |
| 21 #define FWL_STYLEEXT_PSB_IconOnly (1L << 4) | 21 #define FWL_STYLEEXT_PSB_IconOnly (1L << 4) |
| 22 #define FWL_STYLEEXT_PSB_TextIcon (2L << 4) | 22 #define FWL_STYLEEXT_PSB_TextIcon (2L << 4) |
| 23 #define FWL_STYLEEXT_PSB_HLayoutMask (3L << 0) | 23 #define FWL_STYLEEXT_PSB_HLayoutMask (3L << 0) |
| 24 #define FWL_STYLEEXT_PSB_VLayoutMask (3L << 2) | 24 #define FWL_STYLEEXT_PSB_VLayoutMask (3L << 2) |
| 25 #define FWL_STYLEEXT_PSB_ModeMask (3L << 4) | 25 #define FWL_STYLEEXT_PSB_ModeMask (3L << 4) |
| 26 #define FWL_STATE_PSB_Hovered (1 << FWL_WGTSTATE_MAX) | 26 #define FWL_STATE_PSB_Hovered (1 << FWL_WGTSTATE_MAX) |
| 27 #define FWL_STATE_PSB_Pressed (1 << (FWL_WGTSTATE_MAX + 1)) | 27 #define FWL_STATE_PSB_Pressed (1 << (FWL_WGTSTATE_MAX + 1)) |
| 28 #define FWL_STATE_PSB_Default (1 << (FWL_WGTSTATE_MAX + 2)) | 28 #define FWL_STATE_PSB_Default (1 << (FWL_WGTSTATE_MAX + 2)) |
| 29 | 29 |
| 30 class CFWL_MsgMouse; | 30 class CFWL_MsgMouse; |
| 31 class CFWL_WidgetImpProperties; | 31 class CFWL_WidgetProperties; |
|
Tom Sepez
2016/11/03 18:22:44
"
dsinclair
2016/11/03 19:10:18
Done.
| |
| 32 class CFX_DIBitmap; | 32 class CFX_DIBitmap; |
| 33 class IFWL_Widget; | 33 class IFWL_Widget; |
| 34 | 34 |
| 35 class IFWL_PushButtonDP : public IFWL_DataProvider { | 35 class IFWL_PushButtonDP : public IFWL_DataProvider { |
| 36 public: | 36 public: |
| 37 virtual CFX_DIBitmap* GetPicture(IFWL_Widget* pWidget) = 0; | 37 virtual CFX_DIBitmap* GetPicture(IFWL_Widget* pWidget) = 0; |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 class IFWL_PushButton : public IFWL_Widget { | 40 class IFWL_PushButton : public IFWL_Widget { |
| 41 public: | 41 public: |
| 42 IFWL_PushButton(const IFWL_App* app, | 42 IFWL_PushButton(const IFWL_App* app, |
| 43 const CFWL_WidgetImpProperties& properties); | 43 std::unique_ptr<CFWL_WidgetProperties> properties); |
| 44 ~IFWL_PushButton() override; | 44 ~IFWL_PushButton() override; |
| 45 | 45 |
| 46 // IFWL_Widget | 46 // IFWL_Widget |
| 47 FWL_Type GetClassID() const override; | 47 FWL_Type GetClassID() const override; |
| 48 FWL_Error GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override; | 48 FWL_Error GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override; |
| 49 void SetStates(uint32_t dwStates, bool bSet = true) override; | 49 void SetStates(uint32_t dwStates, bool bSet = true) override; |
| 50 FWL_Error Update() override; | 50 FWL_Error Update() override; |
| 51 FWL_Error DrawWidget(CFX_Graphics* pGraphics, | 51 FWL_Error DrawWidget(CFX_Graphics* pGraphics, |
| 52 const CFX_Matrix* pMatrix = nullptr) override; | 52 const CFX_Matrix* pMatrix = nullptr) override; |
| 53 void OnProcessMessage(CFWL_Message* pMessage) override; | 53 void OnProcessMessage(CFWL_Message* pMessage) override; |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 73 private: | 73 private: |
| 74 void OnFocusChanged(CFWL_Message* pMsg, bool bSet); | 74 void OnFocusChanged(CFWL_Message* pMsg, bool bSet); |
| 75 void OnLButtonDown(CFWL_MsgMouse* pMsg); | 75 void OnLButtonDown(CFWL_MsgMouse* pMsg); |
| 76 void OnLButtonUp(CFWL_MsgMouse* pMsg); | 76 void OnLButtonUp(CFWL_MsgMouse* pMsg); |
| 77 void OnMouseMove(CFWL_MsgMouse* pMsg); | 77 void OnMouseMove(CFWL_MsgMouse* pMsg); |
| 78 void OnMouseLeave(CFWL_MsgMouse* pMsg); | 78 void OnMouseLeave(CFWL_MsgMouse* pMsg); |
| 79 void OnKeyDown(CFWL_MsgKey* pMsg); | 79 void OnKeyDown(CFWL_MsgKey* pMsg); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 #endif // XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ | 82 #endif // XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ |
| OLD | NEW |