Whole lot of stuff for new wxFileDialog

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3410 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-08-18 11:40:40 +00:00
parent 1d99702e4b
commit 0b8558681e
11 changed files with 454 additions and 572 deletions

View File

@@ -38,6 +38,21 @@ public:
wxPoint m_pointDrag;
wxListItem m_item;
inline int GetCode() { return m_code; }
inline long GetIndex() { return m_itemIndex; }
inline long GetOldIndex() { return m_oldItemIndex; }
inline long GetItem() { return m_itemIndex; }
inline long GetOldItem() { return m_oldItemIndex; }
inline int GetColumn() { return m_col; }
inline bool Cancelled() { return m_cancelled; }
inline wxPoint GetPoint() { return m_pointDrag; }
inline const wxString &GetLabel() const { return m_item.m_text; }
inline const wxString &GetText() const { return m_item.m_text; }
inline int GetImage() { return m_item.m_image; }
inline long GetData() { return m_item.m_data; }
inline long GetMask() { return m_item.m_mask; }
inline const wxListItem &GetItem() const { return m_item; }
private:
DECLARE_DYNAMIC_CLASS(wxListEvent)