1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __GTKCOMBOBOXH__
13 #define __GTKCOMBOBOXH__
15 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "combobox.h"
23 #include "wx/object.h"
24 #include "wx/control.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 extern const wxChar
* wxComboBoxNameStr
;
37 extern const wxChar
* wxEmptyString
;
39 //-----------------------------------------------------------------------------
41 //-----------------------------------------------------------------------------
43 class wxComboBox
: public wxControl
46 inline wxComboBox() {}
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
[] = (const wxString
*) NULL
,
53 const wxValidator
& validator
= wxDefaultValidator
,
54 const wxString
& name
= wxComboBoxNameStr
)
56 Create(parent
, id
, value
, pos
, size
, n
, choices
, style
, validator
, name
);
59 bool Create(wxWindow
*parent
, wxWindowID id
,
60 const wxString
& value
= wxEmptyString
,
61 const wxPoint
& pos
= wxDefaultPosition
,
62 const wxSize
& size
= wxDefaultSize
,
63 int n
= 0, const wxString choices
[] = (const wxString
*) NULL
,
65 const wxValidator
& validator
= wxDefaultValidator
,
66 const wxString
& name
= wxComboBoxNameStr
);
68 void Append( const wxString
&item
);
69 void Append( const wxString
&item
, void* clientData
);
70 void Append( const wxString
&item
, wxClientData
* clientData
);
72 void SetClientData( int n
, void* clientData
);
73 void* GetClientData( int n
);
74 void SetClientObject( int n
, wxClientData
* clientData
);
75 wxClientData
* GetClientObject( int n
);
77 void SetClientObject( wxClientData
*data
) { wxControl::SetClientObject( data
); }
78 wxClientData
*GetClientObject() const { return wxControl::GetClientObject(); }
79 void SetClientData( void *data
) { wxControl::SetClientData( data
); }
80 void *GetClientData() const { return wxControl::GetClientData(); }
85 int FindString( const wxString
&item
);
86 int GetSelection() const;
87 wxString
GetString( int n
) const;
88 wxString
GetStringSelection() const;
89 int GetCount() const { return Number(); }
91 void SetSelection( int n
);
92 void SetStringSelection( const wxString
&string
);
93 void SetString(int n
, const wxString
&text
);
95 wxString
GetValue() const;
96 void SetValue(const wxString
& value
);
101 void SetInsertionPoint( long pos
);
102 void SetInsertionPointEnd();
103 long GetInsertionPoint() const;
104 long GetLastPosition() const;
105 void Replace( long from
, long to
, const wxString
& value
);
106 void Remove( long from
, long to
);
107 void SetSelection( long from
, long to
);
108 void SetEditable( bool editable
);
112 virtual void SetFocus();
114 void OnSize( wxSizeEvent
&event
);
115 void OnChar( wxKeyEvent
&event
);
118 wxList m_clientDataList
;
119 wxList m_clientObjectList
;
122 void DisableEvents();
124 void AppendCommon( const wxString
&item
);
125 GtkWidget
* GetConnectWidget();
126 bool IsOwnGtkWindow( GdkWindow
*window
);
127 void ApplyWidgetStyle();
130 virtual wxSize
DoGetBestSize() const;
133 DECLARE_DYNAMIC_CLASS(wxComboBox
)
134 DECLARE_EVENT_TABLE()