]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: listbox.h | |
3 | // Purpose: wxListBox class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_LISTBOX_H_ | |
13 | #define _WX_LISTBOX_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "listbox.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/control.h" | |
20 | ||
21 | WXDLLEXPORT_DATA(extern const char*) wxListBoxNameStr; | |
22 | ||
23 | // forward decl for GetSelections() | |
24 | class WXDLLEXPORT wxArrayInt; | |
25 | ||
26 | WXDLLEXPORT_DATA(extern const char*) wxEmptyString; | |
27 | ||
28 | // List box item | |
29 | class WXDLLEXPORT wxListBox: public wxControl | |
30 | { | |
31 | DECLARE_DYNAMIC_CLASS(wxListBox) | |
32 | public: | |
33 | ||
34 | wxListBox(); | |
35 | inline wxListBox(wxWindow *parent, wxWindowID id, | |
36 | const wxPoint& pos = wxDefaultPosition, | |
37 | const wxSize& size = wxDefaultSize, | |
38 | int n = 0, const wxString choices[] = NULL, | |
39 | long style = 0, | |
40 | const wxValidator& validator = wxDefaultValidator, | |
f97c9854 JS |
41 | const wxString& name = wxListBoxNameStr): |
42 | m_clientDataList(wxKEY_INTEGER) | |
9b6dbb09 JS |
43 | { |
44 | Create(parent, id, pos, size, n, choices, style, validator, name); | |
45 | } | |
46 | ||
47 | bool Create(wxWindow *parent, wxWindowID id, | |
48 | const wxPoint& pos = wxDefaultPosition, | |
49 | const wxSize& size = wxDefaultSize, | |
50 | int n = 0, const wxString choices[] = NULL, | |
51 | long style = 0, | |
52 | const wxValidator& validator = wxDefaultValidator, | |
53 | const wxString& name = wxListBoxNameStr); | |
54 | ||
55 | ~wxListBox(); | |
56 | ||
57 | virtual void Append(const wxString& item); | |
58 | virtual void Append(const wxString& item, char *clientData); | |
59 | virtual void Set(int n, const wxString* choices, char **clientData = NULL); | |
60 | virtual int FindString(const wxString& s) const ; | |
61 | virtual void Clear(); | |
62 | virtual void SetSelection(int n, bool select = TRUE); | |
63 | ||
64 | virtual void Deselect(int n); | |
65 | ||
66 | // For single choice list item only | |
67 | virtual int GetSelection() const ; | |
68 | virtual void Delete(int n); | |
69 | virtual char *GetClientData(int n) const ; | |
70 | virtual void SetClientData(int n, char *clientData); | |
71 | virtual void SetString(int n, const wxString& s); | |
72 | ||
73 | // For single or multiple choice list item | |
74 | virtual int GetSelections(wxArrayInt& aSelections) const; | |
75 | virtual bool Selected(int n) const ; | |
76 | virtual wxString GetString(int n) const ; | |
77 | virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); | |
78 | ||
79 | // Set the specified item at the first visible item | |
80 | // or scroll to max range. | |
81 | virtual void SetFirstItem(int n) ; | |
82 | virtual void SetFirstItem(const wxString& s) ; | |
83 | ||
84 | virtual void InsertItems(int nItems, const wxString items[], int pos); | |
85 | ||
86 | virtual wxString GetStringSelection() const ; | |
87 | virtual bool SetStringSelection(const wxString& s, bool flag = TRUE); | |
88 | virtual int Number() const ; | |
89 | ||
90 | void Command(wxCommandEvent& event); | |
91 | ||
89c7e962 JS |
92 | WXWidget GetTopWidget() const; |
93 | ||
f97c9854 | 94 | protected: |
9b6dbb09 JS |
95 | int m_noItems; |
96 | int m_selected; | |
f97c9854 JS |
97 | |
98 | // List mapping positions->client data | |
99 | wxList m_clientDataList; | |
9b6dbb09 JS |
100 | }; |
101 | ||
102 | #endif | |
103 | // _WX_LISTBOX_H_ |