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

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

Issue 2527683002: Remove DataProvider from CFWL_WidgetProperties (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 #include <utility> 10 #include <utility>
(...skipping 11 matching lines...) Expand all
22 } // namespace 22 } // namespace
23 23
24 CFWL_ListBox::CFWL_ListBox(const CFWL_App* app) : CFWL_Widget(app) {} 24 CFWL_ListBox::CFWL_ListBox(const CFWL_App* app) : CFWL_Widget(app) {}
25 25
26 CFWL_ListBox::~CFWL_ListBox() {} 26 CFWL_ListBox::~CFWL_ListBox() {}
27 27
28 void CFWL_ListBox::Initialize() { 28 void CFWL_ListBox::Initialize() {
29 ASSERT(!m_pIface); 29 ASSERT(!m_pIface);
30 30
31 m_pIface = pdfium::MakeUnique<IFWL_ListBox>( 31 m_pIface = pdfium::MakeUnique<IFWL_ListBox>(
32 m_pApp, pdfium::MakeUnique<CFWL_WidgetProperties>(this), nullptr); 32 m_pApp, pdfium::MakeUnique<CFWL_WidgetProperties>(), nullptr);
33 33
34 CFWL_Widget::Initialize(); 34 CFWL_Widget::Initialize();
35 } 35 }
36 36
37 CFWL_ListItem* CFWL_ListBox::GetItem(const IFWL_Widget* pWidget, 37 CFWL_ListItem* CFWL_ListBox::GetItem(const IFWL_Widget* pWidget,
38 int32_t nIndex) const { 38 int32_t nIndex) const {
39 return GetWidget() ? ToListBox(GetWidget())->GetItem(pWidget, nIndex) 39 return GetWidget() ? ToListBox(GetWidget())->GetItem(pWidget, nIndex)
40 : nullptr; 40 : nullptr;
41 } 41 }
42 42
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 } 77 }
78 78
79 int32_t CFWL_ListBox::GetSelIndex(int32_t nIndex) { 79 int32_t CFWL_ListBox::GetSelIndex(int32_t nIndex) {
80 return GetWidget() ? ToListBox(GetWidget())->GetSelIndex(nIndex) : 0; 80 return GetWidget() ? ToListBox(GetWidget())->GetSelIndex(nIndex) : 0;
81 } 81 }
82 82
83 void CFWL_ListBox::SetSelItem(CFWL_ListItem* pItem, bool bSelect) { 83 void CFWL_ListBox::SetSelItem(CFWL_ListItem* pItem, bool bSelect) {
84 if (GetWidget()) 84 if (GetWidget())
85 ToListBox(GetWidget())->SetSelItem(pItem, bSelect); 85 ToListBox(GetWidget())->SetSelItem(pItem, bSelect);
86 } 86 }
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