]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/combobox.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __GTKCOMBOBOXH__
13 #define __GTKCOMBOBOXH__
16 #pragma interface "combobox.h"
20 #include "wx/object.h"
21 #include "wx/control.h"
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 extern const char* wxComboBoxNameStr
;
34 extern const char* wxEmptyString
;
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 class wxComboBox
: public wxControl
42 DECLARE_DYNAMIC_CLASS(wxComboBox
)
45 inline wxComboBox(void) {}
47 inline wxComboBox(wxWindow
*parent
, wxWindowID id
,
48 const wxString
& value
= wxEmptyString
,
49 const wxPoint
& pos
= wxDefaultPosition
,
50 const wxSize
& size
= wxDefaultSize
,
51 int n
= 0, const wxString choices
[] = NULL
,
53 const wxString
& name
= wxComboBoxNameStr
)
55 Create(parent
, id
, value
, pos
, size
, n
, choices
, style
, name
);
58 bool Create(wxWindow
*parent
, wxWindowID id
,
59 const wxString
& value
= wxEmptyString
,
60 const wxPoint
& pos
= wxDefaultPosition
,
61 const wxSize
& size
= wxDefaultSize
,
62 int n
= 0, const wxString choices
[] = NULL
,
64 const wxString
& name
= wxComboBoxNameStr
);
68 void Append( const wxString
&item
);
69 void Append( const wxString
&item
, char* clientData
);
71 int FindString( const wxString
&item
);
72 char* GetClientData( int n
);
73 void SetClientData( int n
, char * clientData
);
74 int GetSelection(void) const;
75 wxString
GetString( int n
) const;
76 wxString
GetStringSelection(void) const;
77 int Number(void) const;
78 void SetSelection( int n
);
80 // Text field functions
81 wxString
GetValue(void) const ;
82 void SetValue(const wxString
& value
);
84 // Clipboard operations
88 void SetInsertionPoint(long pos
);
89 void SetInsertionPointEnd(void);
90 long GetInsertionPoint(void) const ;
91 long GetLastPosition(void) const ;
92 void Replace(long from
, long to
, const wxString
& value
);
93 void Remove(long from
, long to
);
94 void SetSelection(long from
, long to
);
95 void SetEditable(bool editable
);
103 #endif // __GTKCOMBOBOXH__