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_BASEWIDGET_IFWL_CHECKBOX_H_ | 7 #ifndef XFA_FWL_BASEWIDGET_IFWL_CHECKBOX_H_ |
8 #define XFA_FWL_BASEWIDGET_IFWL_CHECKBOX_H_ | 8 #define XFA_FWL_BASEWIDGET_IFWL_CHECKBOX_H_ |
9 | 9 |
10 #include "xfa/fwl/core/ifwl_widget.h" | 10 #include "xfa/fwl/core/ifwl_widget.h" |
11 #include "xfa/fwl/core/cfwl_event.h" | 11 #include "xfa/fwl/core/cfwl_event.h" |
12 #include "xfa/fwl/core/ifwl_dataprovider.h" | 12 #include "xfa/fwl/core/ifwl_dataprovider.h" |
13 #include "xfa/fwl/core/cfwl_widgetimpproperties.h" | 13 #include "xfa/fwl/core/cfwl_widgetimpproperties.h" |
14 | 14 |
15 #define FWL_CLASS_CheckBox L"FWL_CHECKBOX" | 15 #define FWL_CLASS_CheckBox L"FWL_CHECKBOX" |
16 #define FWL_CLASSHASH_CheckBox 4107183823 | |
17 #define FWL_STYLEEXT_CKB_Left (0L << 0) | 16 #define FWL_STYLEEXT_CKB_Left (0L << 0) |
18 #define FWL_STYLEEXT_CKB_Center (1L << 0) | 17 #define FWL_STYLEEXT_CKB_Center (1L << 0) |
19 #define FWL_STYLEEXT_CKB_Right (2L << 0) | 18 #define FWL_STYLEEXT_CKB_Right (2L << 0) |
20 #define FWL_STYLEEXT_CKB_Top (0L << 2) | 19 #define FWL_STYLEEXT_CKB_Top (0L << 2) |
21 #define FWL_STYLEEXT_CKB_VCenter (1L << 2) | 20 #define FWL_STYLEEXT_CKB_VCenter (1L << 2) |
22 #define FWL_STYLEEXT_CKB_Bottom (2L << 2) | 21 #define FWL_STYLEEXT_CKB_Bottom (2L << 2) |
23 #define FWL_STYLEEXT_CKB_LeftText (1L << 4) | 22 #define FWL_STYLEEXT_CKB_LeftText (1L << 4) |
24 #define FWL_STYLEEXT_CKB_MultiLine (1L << 5) | 23 #define FWL_STYLEEXT_CKB_MultiLine (1L << 5) |
25 #define FWL_STYLEEXT_CKB_3State (1L << 6) | 24 #define FWL_STYLEEXT_CKB_3State (1L << 6) |
26 #define FWL_STYLEEXT_CKB_RadioButton (1L << 7) | 25 #define FWL_STYLEEXT_CKB_RadioButton (1L << 7) |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 static IFWL_CheckBox* Create(const CFWL_WidgetImpProperties& properties, | 58 static IFWL_CheckBox* Create(const CFWL_WidgetImpProperties& properties, |
60 IFWL_Widget* pOuter); | 59 IFWL_Widget* pOuter); |
61 int32_t GetCheckState(); | 60 int32_t GetCheckState(); |
62 FWL_Error SetCheckState(int32_t iCheck); | 61 FWL_Error SetCheckState(int32_t iCheck); |
63 | 62 |
64 protected: | 63 protected: |
65 IFWL_CheckBox(); | 64 IFWL_CheckBox(); |
66 }; | 65 }; |
67 | 66 |
68 #endif // XFA_FWL_BASEWIDGET_IFWL_CHECKBOX_H_ | 67 #endif // XFA_FWL_BASEWIDGET_IFWL_CHECKBOX_H_ |
OLD | NEW |