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

Side by Side Diff: xfa/fwl/core/cfwl_combobox.cpp

Issue 2506253004: Split fwl/core class pt I. (Closed)
Patch Set: Rebase to master 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
« no previous file with comments | « xfa/fwl/core/cfwl_combobox.h ('k') | xfa/fwl/core/cfwl_datetimepicker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "xfa/fwl/core/cfwl_combobox.h" 7 #include "xfa/fwl/core/cfwl_combobox.h"
8 8
9 #include <utility> 9 #include <utility>
10 10
11 #include "third_party/base/ptr_util.h" 11 #include "third_party/base/ptr_util.h"
12 #include "xfa/fwl/core/fwl_error.h" 12 #include "xfa/fwl/core/fwl_error.h"
13 #include "xfa/fwl/core/ifwl_combobox.h"
13 #include "xfa/fwl/core/ifwl_widget.h" 14 #include "xfa/fwl/core/ifwl_widget.h"
14 15
15 namespace { 16 namespace {
16 17
17 IFWL_ComboBox* ToComboBox(IFWL_Widget* widget) { 18 IFWL_ComboBox* ToComboBox(IFWL_Widget* widget) {
18 return static_cast<IFWL_ComboBox*>(widget); 19 return static_cast<IFWL_ComboBox*>(widget);
19 } 20 }
20 21
21 } // namespace 22 } // namespace
22 23
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 245
245 void CFWL_ComboBox::SetItemCheckState(IFWL_Widget* pWidget, 246 void CFWL_ComboBox::SetItemCheckState(IFWL_Widget* pWidget,
246 CFWL_ListItem* pItem, 247 CFWL_ListItem* pItem,
247 uint32_t dwCheckState) { 248 uint32_t dwCheckState) {
248 static_cast<CFWL_ListItem*>(pItem)->m_dwCheckState = dwCheckState; 249 static_cast<CFWL_ListItem*>(pItem)->m_dwCheckState = dwCheckState;
249 } 250 }
250 251
251 FX_FLOAT CFWL_ComboBox::GetListHeight(IFWL_Widget* pWidget) { 252 FX_FLOAT CFWL_ComboBox::GetListHeight(IFWL_Widget* pWidget) {
252 return m_fMaxListHeight; 253 return m_fMaxListHeight;
253 } 254 }
OLDNEW
« no previous file with comments | « xfa/fwl/core/cfwl_combobox.h ('k') | xfa/fwl/core/cfwl_datetimepicker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698