]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/listbox.h
Added back the missing Undo/Redo accelerators that unaccountably
[wxWidgets.git] / include / wx / mac / listbox.h
index 46346daa2c6ce88392d0fa9dae89e6ae7bb0fdde..0d1f1f7ad5f36ce327b1185db5b5343dec9d5539 100644 (file)
@@ -25,7 +25,7 @@
   class WXDLLEXPORT wxOwnerDrawn;
 
   // define the array of list box items
-  #include  <wx/dynarray.h>
+  #include  "wx/dynarray.h"
 
   WX_DEFINE_EXPORTED_ARRAY(wxOwnerDrawn *, wxListBoxItemsArray);
 #endif // wxUSE_OWNER_DRAWN
@@ -66,7 +66,8 @@ public:
                 const wxString& name = wxListBoxNameStr);
 
     virtual ~wxListBox();
-
+    virtual void Refresh(bool eraseBack = TRUE, const wxRect *rect = NULL);
+    
     // implement base class pure virtuals
     virtual void Clear();
     virtual void Delete(int n);
@@ -91,6 +92,7 @@ public:
     virtual void* DoGetItemClientData(int n) const;
     virtual void DoSetItemClientObject(int n, wxClientData* clientData);
     virtual wxClientData* DoGetItemClientObject(int n) const;
+         virtual void           DoSetSize(int x, int y,int width, int height,int sizeFlags = wxSIZE_AUTO ) ;
 
     // wxCheckListBox support
 #if wxUSE_OWNER_DRAWN
@@ -107,11 +109,12 @@ public:
     // Windows callbacks
 
     virtual void SetupColours();
-    virtual void       MacHandleControlClick( ControlHandle control , SInt16 controlpart ) ;
+    virtual void       MacHandleControlClick( WXWidget control , wxInt16 controlpart ) ;
 
-       ListHandle              m_macList ;
+       void*           m_macList ;
        wxArrayString   m_stringArray ;
        wxListDataArray m_dataArray ;
+       wxArrayInt m_selectionPreImage ;
        void                    MacSetRedraw( bool doDraw ) ;
 protected:
        void                    MacDestroy() ;