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_COMBOBOX_H_ | 7 #ifndef XFA_FWL_CORE_IFWL_COMBOBOX_H_ |
8 #define XFA_FWL_CORE_IFWL_COMBOBOX_H_ | 8 #define XFA_FWL_CORE_IFWL_COMBOBOX_H_ |
9 | 9 |
10 #include "xfa/fwl/core/ifwl_comboboxproxy.h" | 10 #include "xfa/fwl/core/ifwl_comboboxproxy.h" |
(...skipping 27 matching lines...) Expand all Loading... |
38 #define FWL_STYLEEXT_CMB_EditVAlignMask (3L << 6) | 38 #define FWL_STYLEEXT_CMB_EditVAlignMask (3L << 6) |
39 #define FWL_STYLEEXT_CMB_EditHAlignModeMask (3L << 8) | 39 #define FWL_STYLEEXT_CMB_EditHAlignModeMask (3L << 8) |
40 #define FWL_STYLEEXT_CMB_ListItemLeftAlign (0L << 10) | 40 #define FWL_STYLEEXT_CMB_ListItemLeftAlign (0L << 10) |
41 #define FWL_STYLEEXT_CMB_ListItemCenterAlign (1L << 10) | 41 #define FWL_STYLEEXT_CMB_ListItemCenterAlign (1L << 10) |
42 #define FWL_STYLEEXT_CMB_ListItemRightAlign (2L << 10) | 42 #define FWL_STYLEEXT_CMB_ListItemRightAlign (2L << 10) |
43 #define FWL_STYLEEXT_CMB_ListItemAlignMask (3L << 10) | 43 #define FWL_STYLEEXT_CMB_ListItemAlignMask (3L << 10) |
44 #define FWL_STYLEEXT_CMB_ListItemText (0L << 12) | 44 #define FWL_STYLEEXT_CMB_ListItemText (0L << 12) |
45 #define FWL_STYLEEXT_CMB_ListItemIconText (1L << 12) | 45 #define FWL_STYLEEXT_CMB_ListItemIconText (1L << 12) |
46 #define FWL_STYLEEXT_CMB_ReadOnly (1L << 13) | 46 #define FWL_STYLEEXT_CMB_ReadOnly (1L << 13) |
47 | 47 |
48 class IFWL_ComboBoxDP : public IFWL_ListBoxDP { | |
49 public: | |
50 virtual FX_FLOAT GetListHeight(IFWL_Widget* pWidget) = 0; | |
51 }; | |
52 | |
53 class IFWL_ComboBox : public IFWL_Widget { | 48 class IFWL_ComboBox : public IFWL_Widget { |
54 public: | 49 public: |
| 50 class DataProvider : public IFWL_ListBox::DataProvider { |
| 51 public: |
| 52 virtual FX_FLOAT GetListHeight(IFWL_Widget* pWidget) = 0; |
| 53 }; |
| 54 |
55 explicit IFWL_ComboBox(const IFWL_App* app, | 55 explicit IFWL_ComboBox(const IFWL_App* app, |
56 std::unique_ptr<CFWL_WidgetProperties> properties); | 56 std::unique_ptr<CFWL_WidgetProperties> properties); |
57 ~IFWL_ComboBox() override; | 57 ~IFWL_ComboBox() override; |
58 | 58 |
59 // IFWL_Widget | 59 // IFWL_Widget |
60 FWL_Type GetClassID() const override; | 60 FWL_Type GetClassID() const override; |
61 void GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override; | 61 void GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override; |
62 void ModifyStylesEx(uint32_t dwStylesExAdded, | 62 void ModifyStylesEx(uint32_t dwStylesExAdded, |
63 uint32_t dwStylesExRemoved) override; | 63 uint32_t dwStylesExRemoved) override; |
64 void SetStates(uint32_t dwStates, bool bSet = true) override; | 64 void SetStates(uint32_t dwStates, bool bSet = true) override; |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 IFWL_ComboBoxProxy* m_pComboBoxProxy; // Can this be a unique_ptr? | 166 IFWL_ComboBoxProxy* m_pComboBoxProxy; // Can this be a unique_ptr? |
167 bool m_bLButtonDown; | 167 bool m_bLButtonDown; |
168 bool m_bUpFormHandler; | 168 bool m_bUpFormHandler; |
169 int32_t m_iCurSel; | 169 int32_t m_iCurSel; |
170 int32_t m_iBtnState; | 170 int32_t m_iBtnState; |
171 FX_FLOAT m_fComboFormHandler; | 171 FX_FLOAT m_fComboFormHandler; |
172 FX_FLOAT m_fItemHeight; | 172 FX_FLOAT m_fItemHeight; |
173 }; | 173 }; |
174 | 174 |
175 #endif // XFA_FWL_CORE_IFWL_COMBOBOX_H_ | 175 #endif // XFA_FWL_CORE_IFWL_COMBOBOX_H_ |
OLD | NEW |