X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bbcdf8bc7ca806d8278c7cb6d09d5590378b67d8..7be1f0d91a912a73b110157170124830446e15e1:/include/wx/msw/listbox.h diff --git a/include/wx/msw/listbox.h b/include/wx/msw/listbox.h index d8cf809003..f64c4741e2 100644 --- a/include/wx/msw/listbox.h +++ b/include/wx/msw/listbox.h @@ -20,12 +20,18 @@ WXDLLEXPORT_DATA(extern const char*) wxListBoxNameStr; -#if USE_OWNER_DRAWN +#if wxUSE_OWNER_DRAWN class WXDLLEXPORT wxOwnerDrawn; // define the array of list box items #include + + #undef WXDLLEXPORTLOCAL + #define WXDLLEXPORTLOCAL WXDLLEXPORT WX_DEFINE_ARRAY(wxOwnerDrawn *, wxListBoxItemsArray); + #undef WXDLLEXPORTLOCAL + #define WXDLLEXPORTLOCAL + #endif // forward decl for GetSelections() @@ -63,15 +69,15 @@ class WXDLLEXPORT wxListBox: public wxControl bool MSWCommand(WXUINT param, WXWORD id); -#if USE_OWNER_DRAWN +#if wxUSE_OWNER_DRAWN bool MSWOnMeasure(WXMEASUREITEMSTRUCT *item); bool MSWOnDraw(WXDRAWITEMSTRUCT *item); // plug-in for derived classes - virtual wxOwnerDrawn *CreateItem(uint n); + virtual wxOwnerDrawn *CreateItem(size_t n); // allows to get the item and use SetXXX functions to set it's appearance - wxOwnerDrawn *GetItem(uint n) const { return m_aItems[n]; } + wxOwnerDrawn *GetItem(size_t n) const { return m_aItems[n]; } #endif virtual void Append(const wxString& item); @@ -95,6 +101,9 @@ class WXDLLEXPORT wxListBox: public wxControl virtual bool Selected(int n) const ; virtual wxString GetString(int n) const ; virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); + void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO) + { wxWindow::SetSize(rect, sizeFlags); } + void SetSize(const wxSize& size) { wxWindow::SetSize(size); } // Set the specified item at the first visible item // or scroll to max range. @@ -125,7 +134,7 @@ class WXDLLEXPORT wxListBox: public wxControl int m_noItems; int m_selected; -#if USE_OWNER_DRAWN +#if wxUSE_OWNER_DRAWN // control items wxListBoxItemsArray m_aItems; #endif