]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/listbox.h
Refactored & cleaned up wxChoice & wxComboBox code, fixed client data
[wxWidgets.git] / include / wx / mac / listbox.h
index 126567e96c4029f3844e041111575bff8a67f45b..8158bf673138cc8c0ac74b8aa035d2e34c5a27ce 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef _WX_LISTBOX_H_
 #define _WX_LISTBOX_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
     #pragma interface "listbox.h"
 #endif
 
@@ -110,6 +110,8 @@ public:
 
     virtual void    SetupColours();
     virtual void    MacHandleControlClick( WXWidget control , wxInt16 controlpart ) ;
+       virtual bool MacCanFocus() const { return true ; }
+    void OnChar(wxKeyEvent& event);
 
     void*           m_macList ;
     wxArrayString   m_stringArray ;
@@ -136,10 +138,13 @@ protected:
     bool HasMultipleSelection() const;
 
     // free memory (common part of Clear() and dtor)
-    void Free();
+    // prevent collision with some BSD definitions of macro Free()   
+    void FreeData();
 
     int m_noItems;
     int m_selected;
+       wxString  m_typeIn ;
+       long      m_lastTypeIn ;
 
     virtual wxSize DoGetBestSize() const;