| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |