]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/listbox.h
*** empty log message ***
[wxWidgets.git] / include / wx / msw / listbox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: listbox.h
3 // Purpose: wxListBox class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
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 #if wxUSE_OWNER_DRAWN
24 class WXDLLEXPORT wxOwnerDrawn;
25
26 // define the array of list box items
27 #include <wx/dynarray.h>
28
29 #undef WXDLLEXPORTLOCAL
30 #define WXDLLEXPORTLOCAL WXDLLEXPORT
31 WX_DEFINE_ARRAY(wxOwnerDrawn *, wxListBoxItemsArray);
32 #undef WXDLLEXPORTLOCAL
33 #define WXDLLEXPORTLOCAL
34
35 #endif
36
37 // forward decl for GetSelections()
38 class wxArrayInt;
39
40 WXDLLEXPORT_DATA(extern const char*) wxEmptyString;
41
42 // List box item
43 class WXDLLEXPORT wxListBox: public wxControl
44 {
45 DECLARE_DYNAMIC_CLASS(wxListBox)
46 public:
47
48 wxListBox(void);
49 inline wxListBox(wxWindow *parent, wxWindowID id,
50 const wxPoint& pos = wxDefaultPosition,
51 const wxSize& size = wxDefaultSize,
52 int n = 0, const wxString choices[] = NULL,
53 long style = 0,
54 const wxValidator& validator = wxDefaultValidator,
55 const wxString& name = wxListBoxNameStr)
56 {
57 Create(parent, id, pos, size, n, choices, style, validator, name);
58 }
59
60 bool Create(wxWindow *parent, wxWindowID id,
61 const wxPoint& pos = wxDefaultPosition,
62 const wxSize& size = wxDefaultSize,
63 int n = 0, const wxString choices[] = NULL,
64 long style = 0,
65 const wxValidator& validator = wxDefaultValidator,
66 const wxString& name = wxListBoxNameStr);
67
68 ~wxListBox();
69
70 bool MSWCommand(WXUINT param, WXWORD id);
71
72 #if wxUSE_OWNER_DRAWN
73 bool MSWOnMeasure(WXMEASUREITEMSTRUCT *item);
74 bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
75
76 // plug-in for derived classes
77 virtual wxOwnerDrawn *CreateItem(size_t n);
78
79 // allows to get the item and use SetXXX functions to set it's appearance
80 wxOwnerDrawn *GetItem(size_t n) const { return m_aItems[n]; }
81 #endif
82
83 virtual void Append(const wxString& item);
84 virtual void Append(const wxString& item, char *clientData);
85 virtual void Set(int n, const wxString* choices, char **clientData = NULL);
86 virtual int FindString(const wxString& s) const ;
87 virtual void Clear(void);
88 virtual void SetSelection(int n, bool select = TRUE);
89
90 virtual void Deselect(int n);
91
92 // For single choice list item only
93 virtual int GetSelection() const ;
94 virtual void Delete(int n);
95 virtual char *GetClientData(int n) const ;
96 virtual void SetClientData(int n, char *clientData);
97 virtual void SetString(int n, const wxString& s);
98
99 // For single or multiple choice list item
100 virtual int GetSelections(wxArrayInt& aSelections) const;
101 virtual bool Selected(int n) const ;
102 virtual wxString GetString(int n) const ;
103 virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
104 void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
105 { wxWindow::SetSize(rect, sizeFlags); }
106 void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
107
108 // Set the specified item at the first visible item
109 // or scroll to max range.
110 virtual void SetFirstItem(int n) ;
111 virtual void SetFirstItem(const wxString& s) ;
112
113 virtual void InsertItems(int nItems, const wxString items[], int pos);
114
115 virtual wxString GetStringSelection(void) const ;
116 virtual bool SetStringSelection(const wxString& s, bool flag = TRUE);
117 virtual int Number(void) const ;
118
119 void Command(wxCommandEvent& event);
120
121 // Windows-specific code to set the horizontal extent of
122 // the listbox, if necessary. If s is non-NULL, it's
123 // used to calculate the horizontal extent.
124 // Otherwise, all strings are used.
125 virtual void SetHorizontalExtent(const wxString& s = wxEmptyString);
126
127 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
128 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
129
130 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
131 virtual void SetupColours(void);
132
133 protected:
134 int m_noItems;
135 int m_selected;
136
137 #if wxUSE_OWNER_DRAWN
138 // control items
139 wxListBoxItemsArray m_aItems;
140 #endif
141
142 };
143
144 #endif
145 // _WX_LISTBOX_H_