Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(422)

Side by Side Diff: xfa/fwl/core/cfwl_comboboxproxy.h

Issue 2524173002: Merge IFWL and CFWL classes. (Closed)
Patch Set: make chrome build happy Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_CFWL_COMBOBOXPROXY_H_ 7 #ifndef XFA_FWL_CORE_CFWL_COMBOBOXPROXY_H_
8 #define XFA_FWL_CORE_CFWL_COMBOBOXPROXY_H_ 8 #define XFA_FWL_CORE_CFWL_COMBOBOXPROXY_H_
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "xfa/fwl/core/cfwl_formproxy.h" 12 #include "xfa/fwl/core/cfwl_formproxy.h"
13 13
14 class IFWL_ComboBox; 14 class CFWL_ComboBox;
15 15
16 class CFWL_ComboBoxProxy : public CFWL_FormProxy { 16 class CFWL_ComboBoxProxy : public CFWL_FormProxy {
17 public: 17 public:
18 CFWL_ComboBoxProxy(IFWL_ComboBox* pCombobBox, 18 CFWL_ComboBoxProxy(CFWL_ComboBox* pCombobBox,
19 const CFWL_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 CFWL_Widget* pOuter);
22 ~CFWL_ComboBoxProxy() override; 22 ~CFWL_ComboBoxProxy() override;
23 23
24 // CFWL_FormProxy 24 // CFWL_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 CFWL_ComboBox* m_pComboBox;
39 }; 39 };
40 40
41 #endif // XFA_FWL_CORE_CFWL_COMBOBOXPROXY_H_ 41 #endif // XFA_FWL_CORE_CFWL_COMBOBOXPROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698