1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/listbox.h
3 // Purpose: wxListBox class
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_LISTBOX_H_
13 #define _WX_LISTBOX_H_
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
22 class WXDLLIMPEXP_FWD_CORE wxOwnerDrawn
;
24 // define the array of list box items
25 #include "wx/dynarray.h"
27 WX_DEFINE_EXPORTED_ARRAY_PTR(wxOwnerDrawn
*, wxListBoxItemsArray
);
28 #endif // wxUSE_OWNER_DRAWN
30 // forward decl for GetSelections()
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
37 class WXDLLIMPEXP_CORE wxListBox
: public wxListBoxBase
42 wxListBox(wxWindow
*parent
, wxWindowID id
,
43 const wxPoint
& pos
= wxDefaultPosition
,
44 const wxSize
& size
= wxDefaultSize
,
45 int n
= 0, const wxString choices
[] = NULL
,
47 const wxValidator
& validator
= wxDefaultValidator
,
48 const wxString
& name
= wxListBoxNameStr
)
50 Create(parent
, id
, pos
, size
, n
, choices
, style
, validator
, name
);
52 wxListBox(wxWindow
*parent
, wxWindowID id
,
55 const wxArrayString
& choices
,
57 const wxValidator
& validator
= wxDefaultValidator
,
58 const wxString
& name
= wxListBoxNameStr
)
60 Create(parent
, id
, pos
, size
, choices
, style
, validator
, name
);
63 bool Create(wxWindow
*parent
, wxWindowID id
,
64 const wxPoint
& pos
= wxDefaultPosition
,
65 const wxSize
& size
= wxDefaultSize
,
66 int n
= 0, const wxString choices
[] = NULL
,
68 const wxValidator
& validator
= wxDefaultValidator
,
69 const wxString
& name
= wxListBoxNameStr
);
70 bool Create(wxWindow
*parent
, wxWindowID id
,
73 const wxArrayString
& choices
,
75 const wxValidator
& validator
= wxDefaultValidator
,
76 const wxString
& name
= wxListBoxNameStr
);
80 // implement base class pure virtuals
81 virtual void DoClear();
82 virtual void DoDeleteOneItem(unsigned int n
);
84 virtual unsigned int GetCount() const;
85 virtual wxString
GetString(unsigned int n
) const;
86 virtual void SetString(unsigned int n
, const wxString
& s
);
88 virtual bool IsSelected(int n
) const;
89 virtual void DoSetSelection(int n
, bool select
);
90 virtual int GetSelection() const;
91 virtual int GetSelections(wxArrayInt
& aSelections
) const;
93 virtual int DoInsertItems(const wxArrayStringsAdapter
& items
,
95 void **clientData
, wxClientDataType type
);
97 virtual void DoSetFirstItem(int n
);
99 virtual void DoSetItemClientData(unsigned int n
, void* clientData
);
100 virtual void* DoGetItemClientData(unsigned int n
) const;
102 // wxCheckListBox support
103 #if wxUSE_OWNER_DRAWN
104 bool MSWOnMeasure(WXMEASUREITEMSTRUCT
*item
);
105 bool MSWOnDraw(WXDRAWITEMSTRUCT
*item
);
107 // plug-in for derived classes
108 virtual wxOwnerDrawn
*CreateLboxItem(size_t n
);
110 // allows to get the item and use SetXXX functions to set it's appearance
111 wxOwnerDrawn
*GetItem(size_t n
) const { return m_aItems
[n
]; }
113 // get the index of the given item
114 int GetItemIndex(wxOwnerDrawn
*item
) const { return m_aItems
.Index(item
); }
115 #endif // wxUSE_OWNER_DRAWN
117 // Windows-specific code to set the horizontal extent of the listbox, if
118 // necessary. If s is non-NULL, it's used to calculate the horizontal
119 // extent. Otherwise, all strings are used.
120 virtual void SetHorizontalExtent(const wxString
& s
= wxEmptyString
);
123 bool MSWCommand(WXUINT param
, WXWORD id
);
125 virtual wxVisualAttributes
GetDefaultAttributes() const
127 return GetClassDefaultAttributes(GetWindowVariant());
130 static wxVisualAttributes
131 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
)
133 return GetCompositeControlsDefaultAttributes(variant
);
137 WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
139 // free memory (common part of Clear() and dtor)
144 virtual wxSize
DoGetBestSize() const;
146 #if wxUSE_OWNER_DRAWN
148 wxListBoxItemsArray m_aItems
;
152 DECLARE_DYNAMIC_CLASS_NO_COPY(wxListBox
)
155 #endif // wxUSE_LISTBOX