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

Side by Side Diff: xfa/fwl/core/cfwl_listbox.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_listbox.h ('k') | xfa/fwl/core/cfwl_picturebox.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_listbox.h" 7 #include "xfa/fwl/core/cfwl_listbox.h"
8 8
9 #include <memory> 9 #include <memory>
10 10
11 #include "third_party/base/ptr_util.h" 11 #include "third_party/base/ptr_util.h"
12 #include "third_party/base/stl_util.h" 12 #include "third_party/base/stl_util.h"
13 #include "xfa/fwl/core/ifwl_listbox.h"
13 14
14 namespace { 15 namespace {
15 16
16 IFWL_ListBox* ToListBox(IFWL_Widget* widget) { 17 IFWL_ListBox* ToListBox(IFWL_Widget* widget) {
17 return static_cast<IFWL_ListBox*>(widget); 18 return static_cast<IFWL_ListBox*>(widget);
18 } 19 }
19 20
20 } // namespace 21 } // namespace
21 22
22 CFWL_ListBox::CFWL_ListBox(const IFWL_App* app) : CFWL_Widget(app) {} 23 CFWL_ListBox::CFWL_ListBox(const IFWL_App* app) : CFWL_Widget(app) {}
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 uint32_t CFWL_ListBox::GetItemCheckState(IFWL_Widget* pWidget, 179 uint32_t CFWL_ListBox::GetItemCheckState(IFWL_Widget* pWidget,
179 CFWL_ListItem* pItem) { 180 CFWL_ListItem* pItem) {
180 return static_cast<CFWL_ListItem*>(pItem)->m_dwCheckState; 181 return static_cast<CFWL_ListItem*>(pItem)->m_dwCheckState;
181 } 182 }
182 183
183 void CFWL_ListBox::SetItemCheckState(IFWL_Widget* pWidget, 184 void CFWL_ListBox::SetItemCheckState(IFWL_Widget* pWidget,
184 CFWL_ListItem* pItem, 185 CFWL_ListItem* pItem,
185 uint32_t dwCheckState) { 186 uint32_t dwCheckState) {
186 static_cast<CFWL_ListItem*>(pItem)->m_dwCheckState = dwCheckState; 187 static_cast<CFWL_ListItem*>(pItem)->m_dwCheckState = dwCheckState;
187 } 188 }
OLDNEW
« no previous file with comments | « xfa/fwl/core/cfwl_listbox.h ('k') | xfa/fwl/core/cfwl_picturebox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698