| Index: fpdfsdk/fxedit/fxet_list.cpp
|
| diff --git a/fpdfsdk/fxedit/fxet_list.cpp b/fpdfsdk/fxedit/fxet_list.cpp
|
| index 1385d57680b9b8a4d826cd621ed793dc2bd29786..662a64b00abef4c70a58b537abc5ffca0edea70f 100644
|
| --- a/fpdfsdk/fxedit/fxet_list.cpp
|
| +++ b/fpdfsdk/fxedit/fxet_list.cpp
|
| @@ -73,6 +73,14 @@ CFX_WideString CFX_ListItem::GetText() const {
|
| return m_pEdit->GetText();
|
| }
|
|
|
| +CFX_ListContainer::CFX_ListContainer() {}
|
| +
|
| +CFX_ListContainer::~CFX_ListContainer() {}
|
| +
|
| +void CFX_ListContainer::SetPlateRect(const CFX_FloatRect& rect) {
|
| + m_rcPlate = rect;
|
| +}
|
| +
|
| CFX_List::CFX_List()
|
| : m_fFontSize(0.0f), m_pFontMap(nullptr), m_bMultiple(FALSE) {}
|
|
|
| @@ -561,6 +569,14 @@ CFX_FloatRect CFX_ListCtrl::GetItemRect(int32_t nIndex) const {
|
| return InToOut(CFX_List::GetItemRect(nIndex));
|
| }
|
|
|
| +int32_t CFX_ListCtrl::GetCaret() const {
|
| + return m_nCaretIndex;
|
| +}
|
| +
|
| +int32_t CFX_ListCtrl::GetSelect() const {
|
| + return m_nSelItem;
|
| +}
|
| +
|
| void CFX_ListCtrl::AddString(const FX_WCHAR* str) {
|
| AddItem(str);
|
| ReArrange(GetCount() - 1);
|
|
|