// Copyright 2014 PDFium Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
#ifndef _FWL_LISTBOX_LIGHT_H | |
#define _FWL_LISTBOX_LIGHT_H | |
class CFWL_Widget; | |
class CFWL_WidgetProperties; | |
class IFWL_ListBoxDP; | |
class CFWL_ListBox; | |
class CFWL_ListItem; | |
class CFWL_ListBox : public CFWL_Widget | |
{ | |
public: | |
static CFWL_ListBox* Create(); | |
FWL_ERR Initialize(const CFWL_WidgetProperties *pProperties = NULL); | |
FWL_ERR AddDIBitmap(CFX_DIBitmap * pDIB, FWL_HLISTITEM hItem); | |
FWL_HLISTITEM AddString(FX_WSTR wsAdd, FX_BOOL bSelect = FALSE); | |
FX_BOOL DeleteString(FWL_HLISTITEM hItem); | |
FX_BOOL DeleteAll(); | |
FX_INT32 CountSelItems(); | |
FWL_HLISTITEM GetSelItem(FX_INT32 nIndexSel); | |
FX_INT32 GetSelIndex(FX_INT32 nIndex); | |
FWL_ERR SetSelItem(FWL_HLISTITEM hItem, FX_BOOL bSelect = TRUE); | |
FWL_ERR GetItemText(FWL_HLISTITEM hItem, CFX_WideString &wsText); | |
FWL_ERR GetScrollPos(FX_FLOAT &fPos, FX_BOOL bVert = TRUE); | |
FWL_ERR SetItemHeight(FX_FLOAT fItemHeight); | |
FWL_HLISTITEM GetFocusItem(); | |
FWL_ERR SetFocusItem(FWL_HLISTITEM hItem); | |
FWL_ERR* Sort(IFWL_ListBoxCompare *pCom); | |
FX_INT32 CountItems(); | |
FWL_HLISTITEM GetItem(FX_INT32 nIndex); | |
FWL_ERR SetItemString(FWL_HLISTITEM hItem, FX_WSTR wsText); | |
FWL_ERR GetItemString(FWL_HLISTITEM hItem, CFX_WideString &wsText); | |
FWL_ERR SetItemData(FWL_HLISTITEM hItem, FX_LPVOID pData); | |
FX_LPVOID GetItemData(FWL_HLISTITEM hItem); | |
FWL_HLISTITEM GetItemAtPoint(FX_FLOAT fx, FX_FLOAT fy); | |
FX_DWORD GetItemStates(FWL_HLISTITEM hItem); | |
CFWL_ListBox(); | |
virtual ~CFWL_ListBox(); | |
protected: | |
class CFWL_ListBoxDP : public IFWL_ListBoxDP | |
{ | |
public: | |
CFWL_ListBoxDP(); | |
~CFWL_ListBoxDP(); | |
virtual FWL_ERR GetCaption(IFWL_Widget *pWidget, CFX_WideString &wsCaption); | |
virtual FX_INT32 CountItems(IFWL_Widget *pWidget); | |
virtual FWL_HLISTITEM GetItem(IFWL_Widget *pWidget, FX_INT32 nIndex); | |
virtual FX_INT32 GetItemIndex(IFWL_Widget *pWidget, FWL_HLISTITEM hItem); | |
virtual FX_BOOL SetItemIndex(IFWL_Widget *pWidget, FWL_HLISTITEM hItem, FX_INT32 nIndex); | |
virtual FX_DWORD GetItemStyles(IFWL_Widget *pWidget, FWL_HLISTITEM hItem); | |
virtual FWL_ERR GetItemText(IFWL_Widget *pWidget, FWL_HLISTITEM hItem, CFX_WideString &wsText); | |
virtual FWL_ERR GetItemRect(IFWL_Widget *pWidget, FWL_HLISTITEM hItem, CFX_RectF &rtItem); | |
virtual FX_LPVOID GetItemData(IFWL_Widget *pWidget, FWL_HLISTITEM hItem); | |
virtual FWL_ERR SetItemStyles(IFWL_Widget *pWidget, FWL_HLISTITEM hItem, FX_DWORD dwStyle); | |
virtual FWL_ERR SetItemText(IFWL_Widget *pWidget, FWL_HLISTITEM hItem, FX_LPCWSTR pszText); | |
virtual FWL_ERR SetItemRect(IFWL_Widget *pWidget, FWL_HLISTITEM hItem, const CFX_RectF &rtItem); | |
virtual FX_FLOAT GetItemHeight(IFWL_Widget *pWidget); | |
virtual CFX_DIBitmap* GetItemIcon(IFWL_Widget *pWidget, FWL_HLISTITEM hItem); | |
virtual FWL_ERR GetItemCheckRect(IFWL_Widget *pWidget, FWL_HLISTITEM hItem, CFX_RectF& rtCheck); | |
virtual FWL_ERR SetItemCheckRect(IFWL_Widget *pWidget, FWL_HLISTITEM hItem, const CFX_RectF& rtCheck); | |
virtual FX_DWORD GetItemCheckState(IFWL_Widget *pWidget, FWL_HLISTITEM hItem); | |
virtual FWL_ERR SetItemCheckState(IFWL_Widget *pWidget, FWL_HLISTITEM hItem, FX_DWORD dwCheckState); | |
CFX_PtrArray m_arrItem; | |
CFX_WideString m_wsData; | |
FX_FLOAT m_fItemHeight; | |
}; | |
CFWL_ListBoxDP m_ListBoxDP; | |
}; | |
class CFWL_ListItem | |
{ | |
public: | |
CFWL_ListItem() | |
{ | |
m_rtItem.Reset(); | |
m_dwStates = 0; | |
m_wsText = L""; | |
m_pDIB = NULL; | |
m_pData = NULL; | |
m_dwCheckState = 0; | |
m_rtCheckBox.Reset(); | |
} | |
CFX_RectF m_rtItem; | |
FX_DWORD m_dwStates; | |
CFX_WideString m_wsText; | |
CFX_DIBitmap *m_pDIB; | |
FX_LPVOID m_pData; | |
FX_DWORD m_dwCheckState; | |
CFX_RectF m_rtCheckBox; | |
}; | |
#endif |