Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: xfa/fwl/core/ifwl_pushbutton.h

Issue 2469893004: Unify CFWL_WidgetProperties and CFWL_WidgetImpProperties. (Closed)
Patch Set: review cleanup Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fwl/core/ifwl_picturebox.cpp ('k') | xfa/fwl/core/ifwl_pushbutton.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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;
32 class CFX_DIBitmap; 31 class CFX_DIBitmap;
33 class IFWL_Widget; 32 class IFWL_Widget;
34 33
35 class IFWL_PushButtonDP : public IFWL_DataProvider { 34 class IFWL_PushButtonDP : public IFWL_DataProvider {
36 public: 35 public:
37 virtual CFX_DIBitmap* GetPicture(IFWL_Widget* pWidget) = 0; 36 virtual CFX_DIBitmap* GetPicture(IFWL_Widget* pWidget) = 0;
38 }; 37 };
39 38
40 class IFWL_PushButton : public IFWL_Widget { 39 class IFWL_PushButton : public IFWL_Widget {
41 public: 40 public:
42 IFWL_PushButton(const IFWL_App* app, 41 IFWL_PushButton(const IFWL_App* app,
43 const CFWL_WidgetImpProperties& properties); 42 std::unique_ptr<CFWL_WidgetProperties> properties);
44 ~IFWL_PushButton() override; 43 ~IFWL_PushButton() override;
45 44
46 // IFWL_Widget 45 // IFWL_Widget
47 FWL_Type GetClassID() const override; 46 FWL_Type GetClassID() const override;
48 FWL_Error GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override; 47 FWL_Error GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override;
49 void SetStates(uint32_t dwStates, bool bSet = true) override; 48 void SetStates(uint32_t dwStates, bool bSet = true) override;
50 FWL_Error Update() override; 49 FWL_Error Update() override;
51 FWL_Error DrawWidget(CFX_Graphics* pGraphics, 50 FWL_Error DrawWidget(CFX_Graphics* pGraphics,
52 const CFX_Matrix* pMatrix = nullptr) override; 51 const CFX_Matrix* pMatrix = nullptr) override;
53 void OnProcessMessage(CFWL_Message* pMessage) override; 52 void OnProcessMessage(CFWL_Message* pMessage) override;
(...skipping 19 matching lines...) Expand all
73 private: 72 private:
74 void OnFocusChanged(CFWL_Message* pMsg, bool bSet); 73 void OnFocusChanged(CFWL_Message* pMsg, bool bSet);
75 void OnLButtonDown(CFWL_MsgMouse* pMsg); 74 void OnLButtonDown(CFWL_MsgMouse* pMsg);
76 void OnLButtonUp(CFWL_MsgMouse* pMsg); 75 void OnLButtonUp(CFWL_MsgMouse* pMsg);
77 void OnMouseMove(CFWL_MsgMouse* pMsg); 76 void OnMouseMove(CFWL_MsgMouse* pMsg);
78 void OnMouseLeave(CFWL_MsgMouse* pMsg); 77 void OnMouseLeave(CFWL_MsgMouse* pMsg);
79 void OnKeyDown(CFWL_MsgKey* pMsg); 78 void OnKeyDown(CFWL_MsgKey* pMsg);
80 }; 79 };
81 80
82 #endif // XFA_FWL_CORE_IFWL_PUSHBUTTON_H_ 81 #endif // XFA_FWL_CORE_IFWL_PUSHBUTTON_H_
OLDNEW
« no previous file with comments | « xfa/fwl/core/ifwl_picturebox.cpp ('k') | xfa/fwl/core/ifwl_pushbutton.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698