1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "combobox.h"
15 #include "wx/combobox.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 extern bool g_blockEventsOnDrag
;
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
28 static void gtk_combo_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxComboBox
*combo
)
30 if (!combo
->HasVMT()) return;
31 if (g_blockEventsOnDrag
) return;
33 if (combo
->m_alreadySent
)
35 combo
->m_alreadySent
= FALSE
;
39 combo
->m_alreadySent
= TRUE
;
41 wxCommandEvent
event(wxEVT_COMMAND_CHOICE_SELECTED
, combo
->GetId());
42 event
.SetInt( combo
->GetSelection() );
43 wxString
tmp( combo
->GetStringSelection() );
44 event
.SetString( WXSTRINGCAST(tmp
) );
45 event
.SetEventObject(combo
);
46 combo
->GetEventHandler()->ProcessEvent(event
);
49 //-----------------------------------------------------------------------------
53 static gint gtk_combo_size_callback( GtkCombo *widget, GtkAllocation* alloc, wxComboBox *win )
55 if (!win->HasVMT()) return FALSE;
56 if (g_blockEventsOnDrag) return FALSE;
57 if (!widget->button) return FALSE;
59 widget->button->allocation.x =
60 alloc->width - widget->button->allocation.width;
66 //-----------------------------------------------------------------------------
68 //-----------------------------------------------------------------------------
70 IMPLEMENT_DYNAMIC_CLASS(wxComboBox
,wxControl
)
72 bool wxComboBox::Create(wxWindow
*parent
, wxWindowID id
, const wxString
& value
,
73 const wxPoint
& pos
, const wxSize
& size
,
74 int n
, const wxString choices
[],
75 long style
, const wxValidator
& validator
, const wxString
& name
)
77 m_alreadySent
= FALSE
;
80 PreCreation( parent
, id
, pos
, size
, style
, name
);
82 SetValidator( validator
);
84 m_widget
= gtk_combo_new();
86 wxSize newSize
= size
;
87 if (newSize
.x
== -1) newSize
.x
= 100;
88 if (newSize
.y
== -1) newSize
.y
= 26;
89 SetSize( newSize
.x
, newSize
.y
);
91 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
93 for (int i
= 0; i
< n
; i
++)
96 list_item
= gtk_list_item_new_with_label( choices
[i
] );
98 gtk_container_add( GTK_CONTAINER(list
), list_item
);
100 m_clientData
.Append( (wxObject
*)NULL
);
102 gtk_widget_show( list_item
);
104 gtk_signal_connect( GTK_OBJECT(list_item
), "select",
105 GTK_SIGNAL_FUNC(gtk_combo_clicked_callback
), (gpointer
)this );
111 gtk_signal_connect( GTK_OBJECT(m_widget), "size_allocate",
112 GTK_SIGNAL_FUNC(gtk_combo_size_callback), (gpointer)this );
115 if (!value
.IsNull()) SetValue( value
);
122 void wxComboBox::Clear(void)
124 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
125 gtk_list_clear_items( GTK_LIST(list
), 0, Number() );
127 m_clientData
.Clear();
130 void wxComboBox::Append( const wxString
&item
)
132 Append( item
, (char*)NULL
);
135 void wxComboBox::Append( const wxString
&item
, char *clientData
)
137 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
139 GtkWidget
*list_item
= gtk_list_item_new_with_label( item
);
143 GtkBin
*bin
= GTK_BIN( list_item
);
144 gtk_widget_set_style( bin
->child
,
146 gtk_widget_get_style( m_widget
) ) );
149 gtk_signal_connect( GTK_OBJECT(list_item
), "select",
150 GTK_SIGNAL_FUNC(gtk_combo_clicked_callback
), (gpointer
)this );
152 m_clientData
.Append( (wxObject
*)clientData
);
154 gtk_container_add( GTK_CONTAINER(list
), list_item
);
156 gtk_widget_show( list_item
);
159 void wxComboBox::Delete( int n
)
161 GtkList
*listbox
= GTK_LIST( GTK_COMBO(m_widget
)->list
);
163 GList
*child
= g_list_nth( listbox
->children
, n
);
167 wxFAIL_MSG("wrong index");
171 GList
*list
= g_list_append( NULL
, child
->data
);
172 gtk_list_remove_items( listbox
, list
);
175 wxNode
*node
= m_clientData
.Nth( n
);
178 wxFAIL_MSG( "wrong index" );
181 m_clientData
.DeleteNode( node
);
184 int wxComboBox::FindString( const wxString
&item
)
186 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
188 GList
*child
= GTK_LIST(list
)->children
;
192 GtkBin
*bin
= GTK_BIN( child
->data
);
193 GtkLabel
*label
= GTK_LABEL( bin
->child
);
194 if (item
== label
->label
) return count
;
199 wxFAIL_MSG( "wxComboBox: string not found" );
204 char* wxComboBox::GetClientData( int n
)
206 wxNode
*node
= m_clientData
.Nth( n
);
207 if (node
) return (char*)node
->Data();
209 wxFAIL_MSG( "wxComboBox: wrong index" );
211 return (char *) NULL
;
214 void wxComboBox::SetClientData( int n
, char * clientData
)
216 wxNode
*node
= m_clientData
.Nth( n
);
217 if (node
) node
->SetData( (wxObject
*) clientData
);
219 wxFAIL_MSG( "wxComboBox: wrong index" );
222 int wxComboBox::GetSelection(void) const
224 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
226 GList
*selection
= GTK_LIST(list
)->selection
;
229 GList
*child
= GTK_LIST(list
)->children
;
233 if (child
->data
== selection
->data
) return count
;
239 wxFAIL_MSG( "wxComboBox: no selection" );
244 wxString
wxComboBox::GetString( int n
) const
246 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
248 GList
*child
= g_list_nth( GTK_LIST(list
)->children
, n
);
251 GtkBin
*bin
= GTK_BIN( child
->data
);
252 GtkLabel
*label
= GTK_LABEL( bin
->child
);
256 wxFAIL_MSG( "wxComboBox: wrong index" );
261 wxString
wxComboBox::GetStringSelection(void) const
263 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
265 GList
*selection
= GTK_LIST(list
)->selection
;
268 GtkBin
*bin
= GTK_BIN( selection
->data
);
269 wxString tmp
= GTK_LABEL( bin
->child
)->label
;
273 wxFAIL_MSG( "wxComboBox: no selection" );
278 int wxComboBox::Number(void) const
280 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
282 GList
*child
= GTK_LIST(list
)->children
;
284 while (child
) { count
++; child
= child
->next
; }
288 void wxComboBox::SetSelection( int n
)
290 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
291 gtk_list_select_item( GTK_LIST(list
), n
);
294 void wxComboBox::SetStringSelection( const wxString
&string
)
296 int res
= FindString( string
);
297 if (res
== -1) return;
301 wxString
wxComboBox::GetValue(void) const
303 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
304 wxString tmp
= gtk_entry_get_text( GTK_ENTRY(entry
) );
308 void wxComboBox::SetValue( const wxString
& value
)
310 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
312 if (!value
.IsNull()) tmp
= value
;
313 gtk_entry_set_text( GTK_ENTRY(entry
), tmp
);
316 void wxComboBox::Copy(void)
318 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
319 gtk_editable_copy_clipboard( GTK_EDITABLE(entry
), 0 );
322 void wxComboBox::Cut(void)
324 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
325 gtk_editable_cut_clipboard( GTK_EDITABLE(entry
), 0 );
328 void wxComboBox::Paste(void)
330 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
331 gtk_editable_paste_clipboard( GTK_EDITABLE(entry
), 0 );
334 void wxComboBox::SetInsertionPoint( long pos
)
336 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
338 gtk_entry_set_position( GTK_ENTRY(entry
), tmp
);
341 void wxComboBox::SetInsertionPointEnd(void)
343 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
344 int pos
= GTK_ENTRY(entry
)->text_length
;
345 SetInsertionPoint( pos
-1 );
348 long wxComboBox::GetInsertionPoint(void) const
350 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
351 return (long) GTK_EDITABLE(entry
)->current_pos
;
354 long wxComboBox::GetLastPosition(void) const
356 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
357 int pos
= GTK_ENTRY(entry
)->text_length
;
361 void wxComboBox::Replace( long from
, long to
, const wxString
& value
)
363 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
364 gtk_editable_delete_text( GTK_EDITABLE(entry
), (gint
)from
, (gint
)to
);
365 if (value
.IsNull()) return;
367 gtk_editable_insert_text( GTK_EDITABLE(entry
), value
, value
.Length(), &pos
);
370 void wxComboBox::Remove(long from
, long to
)
372 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
373 gtk_editable_delete_text( GTK_EDITABLE(entry
), (gint
)from
, (gint
)to
);
376 void wxComboBox::SetSelection( long WXUNUSED(from
), long WXUNUSED(to
) )
380 void wxComboBox::SetEditable( bool WXUNUSED(editable
) )
384 void wxComboBox::SetFont( const wxFont
&font
)
386 wxWindow::SetFont( font
);
388 GtkWidget
*entry
= GTK_COMBO(m_widget
)->entry
;
390 gtk_widget_set_style( entry
,
392 gtk_widget_get_style( m_widget
) ) );
394 GtkWidget
*list
= GTK_COMBO(m_widget
)->list
;
396 GList
*child
= GTK_LIST(list
)->children
;
399 GtkBin
*bin
= (GtkBin
*) child
->data
;
400 gtk_widget_set_style( bin
->child
,
402 gtk_widget_get_style( m_widget
) ) );