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

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

Issue 2464703006: Fold IFWL*::{Initialize|Finalize} into constructor/destructor (Closed)
Patch Set: Rebase to master 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_scrollbar.cpp ('k') | xfa/fwl/core/ifwl_spinbutton.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_SPINBUTTON_H_ 7 #ifndef XFA_FWL_CORE_IFWL_SPINBUTTON_H_
8 #define XFA_FWL_CORE_IFWL_SPINBUTTON_H_ 8 #define XFA_FWL_CORE_IFWL_SPINBUTTON_H_
9 9
10 #include "xfa/fwl/core/cfwl_event.h" 10 #include "xfa/fwl/core/cfwl_event.h"
11 #include "xfa/fwl/core/ifwl_timer.h" 11 #include "xfa/fwl/core/ifwl_timer.h"
12 #include "xfa/fwl/core/ifwl_widget.h" 12 #include "xfa/fwl/core/ifwl_widget.h"
13 #include "xfa/fxfa/cxfa_eventparam.h" 13 #include "xfa/fxfa/cxfa_eventparam.h"
14 14
15 #define FWL_STYLEEXE_SPB_Vert (1L << 0) 15 #define FWL_STYLEEXE_SPB_Vert (1L << 0)
16 16
17 class CFWL_MsgMouse; 17 class CFWL_MsgMouse;
18 class CFWL_SpinButtonImpDelegate; 18 class CFWL_SpinButtonImpDelegate;
19 class CFWL_WidgetImpProperties; 19 class CFWL_WidgetImpProperties;
20 20
21 FWL_EVENT_DEF(CFWL_EvtSpbClick, CFWL_EventType::Click, FX_BOOL m_bUp;) 21 FWL_EVENT_DEF(CFWL_EvtSpbClick, CFWL_EventType::Click, FX_BOOL m_bUp;)
22 22
23 class IFWL_SpinButton : public IFWL_Widget { 23 class IFWL_SpinButton : public IFWL_Widget {
24 public: 24 public:
25 explicit IFWL_SpinButton(const IFWL_App* app, 25 explicit IFWL_SpinButton(const IFWL_App* app,
26 const CFWL_WidgetImpProperties& properties); 26 const CFWL_WidgetImpProperties& properties);
27 ~IFWL_SpinButton() override; 27 ~IFWL_SpinButton() override;
28 28
29 // IFWL_Widget 29 // IFWL_Widget
30 void Initialize() override;
31 void Finalize() override;
32 FWL_Type GetClassID() const override; 30 FWL_Type GetClassID() const override;
33 FWL_Error GetWidgetRect(CFX_RectF& rect, FX_BOOL bAutoSize = FALSE) override; 31 FWL_Error GetWidgetRect(CFX_RectF& rect, FX_BOOL bAutoSize = FALSE) override;
34 FWL_Error Update() override; 32 FWL_Error Update() override;
35 FWL_WidgetHit HitTest(FX_FLOAT fx, FX_FLOAT fy) override; 33 FWL_WidgetHit HitTest(FX_FLOAT fx, FX_FLOAT fy) override;
36 FWL_Error DrawWidget(CFX_Graphics* pGraphics, 34 FWL_Error DrawWidget(CFX_Graphics* pGraphics,
37 const CFX_Matrix* pMatrix = nullptr) override; 35 const CFX_Matrix* pMatrix = nullptr) override;
38 36
39 FWL_Error EnableButton(FX_BOOL bEnable, FX_BOOL bUp = TRUE); 37 FWL_Error EnableButton(FX_BOOL bEnable, FX_BOOL bUp = TRUE);
40 FX_BOOL IsButtonEnable(FX_BOOL bUp = TRUE); 38 FX_BOOL IsButtonEnable(FX_BOOL bUp = TRUE);
41 39
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); 79 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE);
82 void OnLButtonDown(CFWL_MsgMouse* pMsg); 80 void OnLButtonDown(CFWL_MsgMouse* pMsg);
83 void OnLButtonUp(CFWL_MsgMouse* pMsg); 81 void OnLButtonUp(CFWL_MsgMouse* pMsg);
84 void OnMouseMove(CFWL_MsgMouse* pMsg); 82 void OnMouseMove(CFWL_MsgMouse* pMsg);
85 void OnMouseLeave(CFWL_MsgMouse* pMsg); 83 void OnMouseLeave(CFWL_MsgMouse* pMsg);
86 void OnKeyDown(CFWL_MsgKey* pMsg); 84 void OnKeyDown(CFWL_MsgKey* pMsg);
87 IFWL_SpinButton* m_pOwner; 85 IFWL_SpinButton* m_pOwner;
88 }; 86 };
89 87
90 #endif // XFA_FWL_CORE_IFWL_SPINBUTTON_H_ 88 #endif // XFA_FWL_CORE_IFWL_SPINBUTTON_H_
OLDNEW
« no previous file with comments | « xfa/fwl/core/ifwl_scrollbar.cpp ('k') | xfa/fwl/core/ifwl_spinbutton.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698