]>
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 ; | |
c330a2cf | 70 | virtual void *GetClientData() { return wxWindow::GetClientData(); } |
9b6dbb09 | 71 | virtual void SetClientData(int n, char *clientData); |
c330a2cf | 72 | virtual void SetClientData( void *data ) { wxWindow::SetClientData(data); } |
9b6dbb09 JS |
73 | virtual void SetString(int n, const wxString& s); |
74 | ||
75 | // For single or multiple choice list item | |
76 | virtual int GetSelections(wxArrayInt& aSelections) const; | |
77 | virtual bool Selected(int n) const ; | |
78 | virtual wxString GetString(int n) const ; | |
4fabb575 | 79 | |
9b6dbb09 | 80 | virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); |
4fabb575 JS |
81 | virtual void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO) |
82 | { wxWindow::SetSize(rect, sizeFlags); } | |
83 | virtual void SetSize(const wxSize& size) { wxWindow::SetSize(size); } | |
c330a2cf | 84 | virtual void SetSize(int width, int height) { SetSize(-1, -1, width, height, wxSIZE_USE_EXISTING); } |
9b6dbb09 JS |
85 | |
86 | // Set the specified item at the first visible item | |
87 | // or scroll to max range. | |
88 | virtual void SetFirstItem(int n) ; | |
89 | virtual void SetFirstItem(const wxString& s) ; | |
90 | ||
91 | virtual void InsertItems(int nItems, const wxString items[], int pos); | |
92 | ||
93 | virtual wxString GetStringSelection() const ; | |
94 | virtual bool SetStringSelection(const wxString& s, bool flag = TRUE); | |
95 | virtual int Number() const ; | |
96 | ||
97 | void Command(wxCommandEvent& event); | |
98 | ||
0d57be45 | 99 | // Implementation |
4b5f3fe6 | 100 | virtual void ChangeFont(bool keepOriginalSize = TRUE); |
0d57be45 JS |
101 | virtual void ChangeBackgroundColour(); |
102 | virtual void ChangeForegroundColour(); | |
89c7e962 JS |
103 | WXWidget GetTopWidget() const; |
104 | ||
f97c9854 | 105 | protected: |
9b6dbb09 JS |
106 | int m_noItems; |
107 | int m_selected; | |
f97c9854 JS |
108 | |
109 | // List mapping positions->client data | |
110 | wxList m_clientDataList; | |
9b6dbb09 JS |
111 | }; |
112 | ||
113 | #endif | |
114 | // _WX_LISTBOX_H_ |