]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: choice.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
6 | // Id: | |
7 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | ||
12 | #ifndef __GTKCHOICEH__ | |
13 | #define __GTKCHOICEH__ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface | |
17 | #endif | |
18 | ||
19 | #include "wx/defs.h" | |
20 | #include "wx/object.h" | |
21 | #include "wx/list.h" | |
22 | #include "wx/control.h" | |
23 | ||
24 | //----------------------------------------------------------------------------- | |
25 | // classes | |
26 | //----------------------------------------------------------------------------- | |
27 | ||
28 | class wxChoice; | |
29 | ||
30 | //----------------------------------------------------------------------------- | |
31 | // global data | |
32 | //----------------------------------------------------------------------------- | |
33 | ||
34 | extern const char *wxChoiceNameStr; | |
35 | ||
36 | //----------------------------------------------------------------------------- | |
37 | // wxChoice | |
38 | //----------------------------------------------------------------------------- | |
39 | ||
40 | class wxChoice: public wxControl | |
41 | { | |
42 | DECLARE_DYNAMIC_CLASS(wxChoice) | |
43 | ||
44 | public: | |
45 | ||
46 | wxChoice(void); | |
47 | inline wxChoice( wxWindow *parent, wxWindowID id, | |
48 | const wxPoint& pos = wxDefaultPosition, | |
49 | const wxSize& size = wxDefaultSize, | |
50 | int n = 0, const wxString choices[] = (const wxString *) NULL, | |
51 | long style = 0, | |
52 | const wxValidator& validator = wxDefaultValidator, | |
53 | const wxString& name = wxChoiceNameStr ) | |
54 | { | |
55 | Create(parent, id, pos, size, n, choices, style, validator, name); | |
56 | } | |
57 | bool Create( wxWindow *parent, wxWindowID id, | |
58 | const wxPoint& pos = wxDefaultPosition, | |
59 | const wxSize& size = wxDefaultSize, | |
60 | int n = 0, const wxString choices[] = (wxString *) NULL, | |
61 | long style = 0, | |
62 | const wxValidator& validator = wxDefaultValidator, | |
63 | const wxString& name = wxChoiceNameStr ); | |
64 | void Append( const wxString &item ); | |
65 | void Clear(void); | |
66 | void Delete(int n); | |
67 | int FindString( const wxString &string ) const; | |
68 | int GetColumns(void) const; | |
69 | int GetSelection(void); | |
70 | wxString GetString( int n ) const; | |
71 | wxString GetStringSelection(void) const; | |
72 | int Number(void) const; | |
73 | void SetColumns( int n = 1 ); | |
74 | void SetSelection( int n ); | |
75 | void SetStringSelection( const wxString &string ); | |
76 | ||
77 | void SetFont( const wxFont &font ); | |
78 | }; | |
79 | ||
80 | #endif // __GTKCHOICEH__ |