]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/listctrl.h
Fixed some compile errors (MSVC++ 6) and some very strange link errors when
[wxWidgets.git] / include / wx / listctrl.h
index f6fe64203afd02cddf8dd816944e9b5295e2d02c..0c394197279c57a778701dcc6c009f847aed0b10 100644 (file)
@@ -15,6 +15,8 @@
 #include "wx/generic/listctrl.h"
 #elif defined(__WXMAC__)
 #include "wx/generic/listctrl.h"
+#elif defined(__WXPM__)
+#include "wx/generic/listctrl.h"
 #elif defined(__WXSTUBS__)
 #include "wx/generic/listctrl.h"
 #endif
@@ -36,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)