| 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> |
| 11 | 11 |
| 12 #include "third_party/base/ptr_util.h" | 12 #include "third_party/base/ptr_util.h" |
| 13 #include "third_party/base/stl_util.h" | 13 #include "third_party/base/stl_util.h" |
| 14 #include "xfa/fwl/core/ifwl_listbox.h" | 14 #include "xfa/fwl/core/ifwl_listbox.h" |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 IFWL_ListBox* ToListBox(IFWL_Widget* widget) { | 18 IFWL_ListBox* ToListBox(IFWL_Widget* widget) { |
| 19 return static_cast<IFWL_ListBox*>(widget); | 19 return static_cast<IFWL_ListBox*>(widget); |
| 20 } | 20 } |
| 21 | 21 |
| 22 } // namespace | 22 } // namespace |
| 23 | 23 |
| 24 CFWL_ListBox::CFWL_ListBox(const IFWL_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>(this), nullptr); |
| 33 | 33 |
| 34 CFWL_Widget::Initialize(); | 34 CFWL_Widget::Initialize(); |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 uint32_t CFWL_ListBox::GetItemCheckState(IFWL_Widget* pWidget, | 165 uint32_t CFWL_ListBox::GetItemCheckState(IFWL_Widget* pWidget, |
| 166 CFWL_ListItem* pItem) { | 166 CFWL_ListItem* pItem) { |
| 167 return static_cast<CFWL_ListItem*>(pItem)->m_dwCheckState; | 167 return static_cast<CFWL_ListItem*>(pItem)->m_dwCheckState; |
| 168 } | 168 } |
| 169 | 169 |
| 170 void CFWL_ListBox::SetItemCheckState(IFWL_Widget* pWidget, | 170 void CFWL_ListBox::SetItemCheckState(IFWL_Widget* pWidget, |
| 171 CFWL_ListItem* pItem, | 171 CFWL_ListItem* pItem, |
| 172 uint32_t dwCheckState) { | 172 uint32_t dwCheckState) { |
| 173 static_cast<CFWL_ListItem*>(pItem)->m_dwCheckState = dwCheckState; | 173 static_cast<CFWL_ListItem*>(pItem)->m_dwCheckState = dwCheckState; |
| 174 } | 174 } |
| OLD | NEW |