1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/listbox.h
3 // Purpose: wxListBox class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_LISTBOX_H_
13 #define _WX_LISTBOX_H_
15 #include "wx/ctrlsub.h"
16 #include "wx/clntdata.h"
18 // forward decl for GetSelections()
19 class WXDLLIMPEXP_FWD_BASE wxArrayInt
;
22 class WXDLLIMPEXP_CORE wxListBox
: public wxListBoxBase
24 DECLARE_DYNAMIC_CLASS(wxListBox
)
28 wxListBox(wxWindow
*parent
, wxWindowID id
,
29 const wxPoint
& pos
= wxDefaultPosition
,
30 const wxSize
& size
= wxDefaultSize
,
31 int n
= 0, const wxString choices
[] = NULL
,
33 const wxValidator
& validator
= wxDefaultValidator
,
34 const wxString
& name
= wxListBoxNameStr
)
36 Create(parent
, id
, pos
, size
, n
, choices
, style
, validator
, name
);
39 wxListBox(wxWindow
*parent
, wxWindowID id
,
42 const wxArrayString
& choices
,
44 const wxValidator
& validator
= wxDefaultValidator
,
45 const wxString
& name
= wxListBoxNameStr
)
47 Create(parent
, id
, pos
, size
, choices
, style
, validator
, name
);
50 bool Create(wxWindow
*parent
, wxWindowID id
,
51 const wxPoint
& pos
= wxDefaultPosition
,
52 const wxSize
& size
= wxDefaultSize
,
53 int n
= 0, const wxString choices
[] = NULL
,
55 const wxValidator
& validator
= wxDefaultValidator
,
56 const wxString
& name
= wxListBoxNameStr
);
58 bool Create(wxWindow
*parent
, wxWindowID id
,
61 const wxArrayString
& choices
,
63 const wxValidator
& validator
= wxDefaultValidator
,
64 const wxString
& name
= wxListBoxNameStr
);
66 // implementation of wxControlWithItems
67 virtual unsigned int GetCount() const;
68 virtual int DoInsertItems(const wxArrayStringsAdapter
& items
,
70 void **clientData
, wxClientDataType type
);
71 virtual int GetSelection() const;
72 virtual void DoDeleteOneItem(unsigned int n
);
73 virtual int FindString(const wxString
& s
, bool bCase
= false) const;
74 virtual void DoClear();
75 virtual void SetString(unsigned int n
, const wxString
& s
);
76 virtual wxString
GetString(unsigned int n
) const;
78 // implementation of wxListBoxbase
79 virtual void DoSetSelection(int n
, bool select
);
80 virtual void DoSetFirstItem(int n
);
81 virtual int GetSelections(wxArrayInt
& aSelections
) const;
82 virtual bool IsSelected(int n
) const;
84 // For single or multiple choice list item
85 void Command(wxCommandEvent
& event
);
88 virtual void ChangeBackgroundColour();
89 virtual void ChangeForegroundColour();
90 WXWidget
GetTopWidget() const;
92 #if wxUSE_CHECKLISTBOX
93 virtual void DoToggleItem(int WXUNUSED(item
), int WXUNUSED(x
)) {}
96 virtual wxSize
DoGetBestSize() const;
98 unsigned int m_noItems
;
101 void SetSelectionPolicy();