| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
| 6 | |
| 7 #ifndef XFA_FWL_CORE_IFWL_COMBOBOXPROXY_H_ | |
| 8 #define XFA_FWL_CORE_IFWL_COMBOBOXPROXY_H_ | |
| 9 | |
| 10 #include <memory> | |
| 11 | |
| 12 #include "xfa/fwl/core/ifwl_formproxy.h" | |
| 13 | |
| 14 class IFWL_ComboBox; | |
| 15 | |
| 16 class IFWL_ComboBoxProxy : public IFWL_FormProxy { | |
| 17 public: | |
| 18 IFWL_ComboBoxProxy(IFWL_ComboBox* pCombobBox, | |
| 19 const CFWL_App* app, | |
| 20 std::unique_ptr<CFWL_WidgetProperties> properties, | |
| 21 IFWL_Widget* pOuter); | |
| 22 ~IFWL_ComboBoxProxy() override; | |
| 23 | |
| 24 // IFWL_FormProxy | |
| 25 void OnProcessMessage(CFWL_Message* pMessage) override; | |
| 26 void OnDrawWidget(CFX_Graphics* pGraphics, | |
| 27 const CFX_Matrix* pMatrix) override; | |
| 28 | |
| 29 void Reset() { m_bLButtonUpSelf = false; } | |
| 30 | |
| 31 private: | |
| 32 void OnLButtonDown(CFWL_Message* pMsg); | |
| 33 void OnLButtonUp(CFWL_Message* pMsg); | |
| 34 void OnFocusChanged(CFWL_Message* pMsg, bool bSet); | |
| 35 | |
| 36 bool m_bLButtonDown; | |
| 37 bool m_bLButtonUpSelf; | |
| 38 IFWL_ComboBox* m_pComboBox; | |
| 39 }; | |
| 40 | |
| 41 #endif // XFA_FWL_CORE_IFWL_COMBOBOXPROXY_H_ | |
| OLD | NEW |