#pragma interface "listbox.h"
#endif
+#if wxUSE_LISTBOX
+
// ----------------------------------------------------------------------------
// simple types
// ----------------------------------------------------------------------------
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
virtual void SetHorizontalExtent(const wxString& s = wxEmptyString);
// Windows callbacks
- virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
- WXUINT message,
- WXWPARAM wParam, WXLPARAM lParam);
-
bool MSWCommand(WXUINT param, WXWORD id);
virtual void SetupColours();
protected:
- // do we have multiple selections?
- bool HasMultipleSelection() const;
-
// free memory (common part of Clear() and dtor)
void Free();
int m_noItems;
int m_selected;
- virtual wxSize DoGetBestSize();
+ virtual wxSize DoGetBestSize() const;
#if wxUSE_OWNER_DRAWN
// control items
DECLARE_DYNAMIC_CLASS(wxListBox)
};
+#endif // wxUSE_LISTBOX
+
#endif
// _WX_LISTBOX_H_