OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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_COMBOBOXPROXY_H_ | 7 #ifndef XFA_FWL_CORE_IFWL_COMBOBOXPROXY_H_ |
8 #define XFA_FWL_CORE_IFWL_COMBOBOXPROXY_H_ | 8 #define XFA_FWL_CORE_IFWL_COMBOBOXPROXY_H_ |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 | 11 |
12 #include "xfa/fwl/core/ifwl_formproxy.h" | 12 #include "xfa/fwl/core/ifwl_formproxy.h" |
13 | 13 |
14 class IFWL_ComboBox; | 14 class IFWL_ComboBox; |
15 | 15 |
16 class IFWL_ComboBoxProxy : public IFWL_FormProxy { | 16 class IFWL_ComboBoxProxy : public IFWL_FormProxy { |
17 public: | 17 public: |
18 IFWL_ComboBoxProxy(IFWL_ComboBox* pCombobBox, | 18 IFWL_ComboBoxProxy(IFWL_ComboBox* pCombobBox, |
19 const IFWL_App* app, | 19 const CFWL_App* app, |
20 std::unique_ptr<CFWL_WidgetProperties> properties, | 20 std::unique_ptr<CFWL_WidgetProperties> properties, |
21 IFWL_Widget* pOuter); | 21 IFWL_Widget* pOuter); |
22 ~IFWL_ComboBoxProxy() override; | 22 ~IFWL_ComboBoxProxy() override; |
23 | 23 |
24 // IFWL_FormProxy | 24 // IFWL_FormProxy |
25 void OnProcessMessage(CFWL_Message* pMessage) override; | 25 void OnProcessMessage(CFWL_Message* pMessage) override; |
26 void OnDrawWidget(CFX_Graphics* pGraphics, | 26 void OnDrawWidget(CFX_Graphics* pGraphics, |
27 const CFX_Matrix* pMatrix) override; | 27 const CFX_Matrix* pMatrix) override; |
28 | 28 |
29 void Reset() { m_bLButtonUpSelf = false; } | 29 void Reset() { m_bLButtonUpSelf = false; } |
30 | 30 |
31 private: | 31 private: |
32 void OnLButtonDown(CFWL_Message* pMsg); | 32 void OnLButtonDown(CFWL_Message* pMsg); |
33 void OnLButtonUp(CFWL_Message* pMsg); | 33 void OnLButtonUp(CFWL_Message* pMsg); |
34 void OnFocusChanged(CFWL_Message* pMsg, bool bSet); | 34 void OnFocusChanged(CFWL_Message* pMsg, bool bSet); |
35 | 35 |
36 bool m_bLButtonDown; | 36 bool m_bLButtonDown; |
37 bool m_bLButtonUpSelf; | 37 bool m_bLButtonUpSelf; |
38 IFWL_ComboBox* m_pComboBox; | 38 IFWL_ComboBox* m_pComboBox; |
39 }; | 39 }; |
40 | 40 |
41 #endif // XFA_FWL_CORE_IFWL_COMBOBOXPROXY_H_ | 41 #endif // XFA_FWL_CORE_IFWL_COMBOBOXPROXY_H_ |
OLD | NEW |