| 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_CFWL_COMBOBOX_H_ | 7 #ifndef XFA_FWL_CORE_CFWL_COMBOBOX_H_ |
| 8 #define XFA_FWL_CORE_CFWL_COMBOBOX_H_ | 8 #define XFA_FWL_CORE_CFWL_COMBOBOX_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "xfa/fwl/core/cfwl_widget.h" | 13 #include "xfa/fwl/core/cfwl_widget.h" |
| 14 #include "xfa/fwl/core/ifwl_combobox.h" | 14 #include "xfa/fwl/core/ifwl_combobox.h" |
| 15 | 15 |
| 16 class CFWL_WidgetProperties; | |
| 17 class IFWL_ComboBoxDP; | 16 class IFWL_ComboBoxDP; |
| 18 class CFWL_ComboBoxDP; | 17 class CFWL_ComboBoxDP; |
| 19 class CFWL_ComboBoxItem; | 18 class CFWL_ComboBoxItem; |
| 20 | 19 |
| 21 class CFWL_ComboBox : public CFWL_Widget { | 20 class CFWL_ComboBox : public CFWL_Widget { |
| 22 public: | 21 public: |
| 23 CFWL_ComboBox(const IFWL_App*); | 22 CFWL_ComboBox(const IFWL_App*); |
| 24 ~CFWL_ComboBox() override; | 23 ~CFWL_ComboBox() override; |
| 25 | 24 |
| 26 void Initialize(); | 25 void Initialize(); |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 CFX_RectF m_rtItem; | 136 CFX_RectF m_rtItem; |
| 138 uint32_t m_dwStyles; | 137 uint32_t m_dwStyles; |
| 139 CFX_WideString m_wsText; | 138 CFX_WideString m_wsText; |
| 140 CFX_DIBitmap* m_pDIB; | 139 CFX_DIBitmap* m_pDIB; |
| 141 uint32_t m_dwCheckState; | 140 uint32_t m_dwCheckState; |
| 142 CFX_RectF m_rtCheckBox; | 141 CFX_RectF m_rtCheckBox; |
| 143 void* m_pData; | 142 void* m_pData; |
| 144 }; | 143 }; |
| 145 | 144 |
| 146 #endif // XFA_FWL_CORE_CFWL_COMBOBOX_H_ | 145 #endif // XFA_FWL_CORE_CFWL_COMBOBOX_H_ |
| OLD | NEW |