| Index: xfa/fwl/core/cfwl_listbox.cpp
|
| diff --git a/xfa/fwl/core/cfwl_listbox.cpp b/xfa/fwl/core/cfwl_listbox.cpp
|
| index 3884e8c42ebd3c245c10bf8fce6a431cb43f1f2e..f8a5e199c2f434998c052c0d05796b559dca41b7 100644
|
| --- a/xfa/fwl/core/cfwl_listbox.cpp
|
| +++ b/xfa/fwl/core/cfwl_listbox.cpp
|
| @@ -10,6 +10,24 @@
|
|
|
| #include "third_party/base/stl_util.h"
|
|
|
| +CFWL_ListBox::CFWL_ListBox(const IFWL_App* app) : CFWL_Widget(app) {}
|
| +
|
| +CFWL_ListBox::~CFWL_ListBox() {}
|
| +
|
| +void CFWL_ListBox::Initialize(const CFWL_WidgetProperties* pProperties) {
|
| + ASSERT(!m_pIface);
|
| +
|
| + if (pProperties)
|
| + *m_pProperties = *pProperties;
|
| +
|
| + std::unique_ptr<IFWL_ListBox> pListBox(new IFWL_ListBox(
|
| + m_pApp, m_pProperties->MakeWidgetImpProperties(&m_ListBoxDP), nullptr));
|
| + pListBox->Initialize();
|
| +
|
| + m_pIface = std::move(pListBox);
|
| + CFWL_Widget::Initialize(pProperties);
|
| +}
|
| +
|
| IFWL_ListBox* CFWL_ListBox::GetWidget() {
|
| return static_cast<IFWL_ListBox*>(m_pIface.get());
|
| }
|
| @@ -18,23 +36,6 @@ const IFWL_ListBox* CFWL_ListBox::GetWidget() const {
|
| return static_cast<IFWL_ListBox*>(m_pIface.get());
|
| }
|
|
|
| -FWL_Error CFWL_ListBox::Initialize(const CFWL_WidgetProperties* pProperties) {
|
| - if (m_pIface)
|
| - return FWL_Error::Indefinite;
|
| - if (pProperties) {
|
| - *m_pProperties = *pProperties;
|
| - }
|
| - std::unique_ptr<IFWL_ListBox> pListBox(new IFWL_ListBox(
|
| - m_pProperties->MakeWidgetImpProperties(&m_ListBoxDP), nullptr));
|
| - FWL_Error ret = pListBox->Initialize();
|
| - if (ret != FWL_Error::Succeeded) {
|
| - return ret;
|
| - }
|
| - m_pIface = std::move(pListBox);
|
| - CFWL_Widget::Initialize();
|
| - return FWL_Error::Succeeded;
|
| -}
|
| -
|
| FWL_Error CFWL_ListBox::AddDIBitmap(CFX_DIBitmap* pDIB, IFWL_ListItem* pItem) {
|
| static_cast<CFWL_ListItem*>(pItem)->m_pDIB = pDIB;
|
| return FWL_Error::Succeeded;
|
| @@ -203,10 +204,6 @@ uint32_t CFWL_ListBox::GetItemStates(IFWL_ListItem* pItem) {
|
| return pListItem->m_dwStates | pListItem->m_dwCheckState;
|
| }
|
|
|
| -CFWL_ListBox::CFWL_ListBox() {}
|
| -
|
| -CFWL_ListBox::~CFWL_ListBox() {}
|
| -
|
| CFWL_ListBox::CFWL_ListBoxDP::CFWL_ListBoxDP() {}
|
|
|
| CFWL_ListBox::CFWL_ListBoxDP::~CFWL_ListBoxDP() {}
|
|
|