X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1777b9bbf4573dabecf4a3256d0d3c2c0c2a3fdf..ab20a9a95a8bbed75bfc6ecba20f013eb9dcff46:/include/wx/listctrl.h?ds=sidebyside diff --git a/include/wx/listctrl.h b/include/wx/listctrl.h index 087e5d1c2a..0c39419727 100644 --- a/include/wx/listctrl.h +++ b/include/wx/listctrl.h @@ -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)