1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/choice.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #include "wx/wxprec.h"
12 #if wxUSE_CHOICE || wxUSE_COMBOBOX
14 #include "wx/choice.h"
17 #include "wx/arrstr.h"
21 #include "wx/gtk/private.h"
22 #include "wx/gtk/private/gtk2-compat.h"
24 // ----------------------------------------------------------------------------
26 // ----------------------------------------------------------------------------
31 gtk_choice_changed_callback( GtkWidget
*WXUNUSED(widget
), wxChoice
*choice
)
33 choice
->SendSelectionChangedEvent(wxEVT_COMMAND_CHOICE_SELECTED
);
38 //-----------------------------------------------------------------------------
40 //-----------------------------------------------------------------------------
45 m_stringCellIndex
= 0;
48 bool wxChoice::Create( wxWindow
*parent
, wxWindowID id
,
49 const wxPoint
&pos
, const wxSize
&size
,
50 const wxArrayString
& choices
,
51 long style
, const wxValidator
& validator
,
52 const wxString
&name
)
54 wxCArrayString
chs(choices
);
56 return Create( parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
57 style
, validator
, name
);
60 bool wxChoice::Create( wxWindow
*parent
, wxWindowID id
,
61 const wxPoint
&pos
, const wxSize
&size
,
62 int n
, const wxString choices
[],
63 long style
, const wxValidator
& validator
,
64 const wxString
&name
)
66 if (!PreCreation( parent
, pos
, size
) ||
67 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
69 wxFAIL_MSG( wxT("wxChoice creation failed") );
75 // if our m_strings != NULL, Append() will check for it and insert
76 // items in the correct order
77 m_strings
= new wxGtkCollatedArrayString
;
81 m_widget
= gtk_combo_box_text_new();
83 m_widget
= gtk_combo_box_new_text();
85 g_object_ref(m_widget
);
89 m_parent
->DoAddChild( this );
93 g_signal_connect_after (m_widget
, "changed",
94 G_CALLBACK (gtk_choice_changed_callback
), this);
104 void wxChoice::GTKInsertComboBoxTextItem( unsigned int n
, const wxString
& text
)
107 gtk_combo_box_text_insert_text(GTK_COMBO_BOX_TEXT(m_widget
), n
, wxGTK_CONV(text
));
109 gtk_combo_box_insert_text( GTK_COMBO_BOX( m_widget
), n
, wxGTK_CONV( text
) );
113 int wxChoice::DoInsertItems(const wxArrayStringsAdapter
& items
,
115 void **clientData
, wxClientDataType type
)
117 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid control") );
119 wxASSERT_MSG( !IsSorted() || (pos
== GetCount()),
120 wxT("In a sorted choice data could only be appended"));
122 const int count
= items
.GetCount();
126 for ( int i
= 0; i
< count
; ++i
)
129 // If sorted, use this wxSortedArrayStrings to determine
130 // the right insertion point
132 n
= m_strings
->Add(items
[i
]);
134 GTKInsertComboBoxTextItem( n
, items
[i
] );
136 m_clientData
.Insert( NULL
, n
);
137 AssignNewItemClientData(n
, clientData
, i
, type
);
140 InvalidateBestSize();
145 void wxChoice::DoSetItemClientData(unsigned int n
, void* clientData
)
147 m_clientData
[n
] = clientData
;
150 void* wxChoice::DoGetItemClientData(unsigned int n
) const
152 return m_clientData
[n
];
155 void wxChoice::DoClear()
157 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid control") );
161 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
162 GtkTreeModel
* model
= gtk_combo_box_get_model( combobox
);
163 gtk_list_store_clear(GTK_LIST_STORE(model
));
165 m_clientData
.Clear();
172 InvalidateBestSize();
175 void wxChoice::DoDeleteOneItem(unsigned int n
)
177 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid control") );
178 wxCHECK_RET( IsValid(n
), wxT("invalid index in wxChoice::Delete") );
180 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
181 GtkTreeModel
* model
= gtk_combo_box_get_model( combobox
);
182 GtkListStore
* store
= GTK_LIST_STORE(model
);
184 if ( !gtk_tree_model_iter_nth_child(model
, &iter
, NULL
, n
) )
186 // This is really not supposed to happen for a valid index.
187 wxFAIL_MSG(wxS("Item unexpectedly not found."));
190 gtk_list_store_remove( store
, &iter
);
192 m_clientData
.RemoveAt( n
);
194 m_strings
->RemoveAt( n
);
196 InvalidateBestSize();
199 int wxChoice::FindString( const wxString
&item
, bool bCase
) const
201 wxCHECK_MSG( m_widget
!= NULL
, wxNOT_FOUND
, wxT("invalid control") );
203 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
204 GtkTreeModel
* model
= gtk_combo_box_get_model( combobox
);
206 gtk_tree_model_get_iter_first( model
, &iter
);
207 if (!gtk_list_store_iter_is_valid(GTK_LIST_STORE(model
), &iter
))
212 GValue value
= { 0, };
213 gtk_tree_model_get_value( model
, &iter
, m_stringCellIndex
, &value
);
214 wxString str
= wxGTK_CONV_BACK( g_value_get_string( &value
) );
215 g_value_unset( &value
);
217 if (item
.IsSameAs( str
, bCase
) )
222 while ( gtk_tree_model_iter_next(model
, &iter
) );
227 int wxChoice::GetSelection() const
229 return gtk_combo_box_get_active( GTK_COMBO_BOX( m_widget
) );
232 void wxChoice::SetString(unsigned int n
, const wxString
&text
)
234 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid control") );
236 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
237 wxCHECK_RET( IsValid(n
), wxT("invalid index") );
239 GtkTreeModel
*model
= gtk_combo_box_get_model( combobox
);
241 if (gtk_tree_model_iter_nth_child (model
, &iter
, NULL
, n
))
243 GValue value
= { 0, };
244 g_value_init( &value
, G_TYPE_STRING
);
245 g_value_set_string( &value
, wxGTK_CONV( text
) );
246 gtk_list_store_set_value( GTK_LIST_STORE(model
), &iter
, m_stringCellIndex
, &value
);
247 g_value_unset( &value
);
250 InvalidateBestSize();
253 wxString
wxChoice::GetString(unsigned int n
) const
255 wxCHECK_MSG( m_widget
!= NULL
, wxEmptyString
, wxT("invalid control") );
259 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
260 GtkTreeModel
*model
= gtk_combo_box_get_model( combobox
);
262 if (gtk_tree_model_iter_nth_child (model
, &iter
, NULL
, n
))
264 GValue value
= { 0, };
265 gtk_tree_model_get_value( model
, &iter
, m_stringCellIndex
, &value
);
266 wxString tmp
= wxGTK_CONV_BACK( g_value_get_string( &value
) );
267 g_value_unset( &value
);
274 unsigned int wxChoice::GetCount() const
276 wxCHECK_MSG( m_widget
!= NULL
, 0, wxT("invalid control") );
278 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
279 GtkTreeModel
* model
= gtk_combo_box_get_model( combobox
);
281 gtk_tree_model_get_iter_first( model
, &iter
);
282 if (!gtk_list_store_iter_is_valid(GTK_LIST_STORE(model
), &iter
))
284 unsigned int ret
= 1;
285 while (gtk_tree_model_iter_next( model
, &iter
))
290 void wxChoice::SetSelection( int n
)
292 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid control") );
296 GtkComboBox
* combobox
= GTK_COMBO_BOX( m_widget
);
297 gtk_combo_box_set_active( combobox
, n
);
302 void wxChoice::SetColumns(int n
)
304 gtk_combo_box_set_wrap_width(GTK_COMBO_BOX(m_widget
), n
);
307 int wxChoice::GetColumns() const
309 // gtk_combo_box_get_wrap_width() was added in gtk 2.6
311 g_object_get(G_OBJECT(m_widget
), "wrap-width", &intval
, NULL
);
315 void wxChoice::GTKDisableEvents()
317 g_signal_handlers_block_by_func(m_widget
,
318 (gpointer
) gtk_choice_changed_callback
, this);
321 void wxChoice::GTKEnableEvents()
323 g_signal_handlers_unblock_by_func(m_widget
,
324 (gpointer
) gtk_choice_changed_callback
, this);
327 GdkWindow
*wxChoice::GTKGetWindow(wxArrayGdkWindows
& WXUNUSED(windows
)) const
329 return gtk_widget_get_window(m_widget
);
332 wxSize
wxChoice::DoGetBestSize() const
334 // Get the height of the control from GTK+ itself, but use our own version
335 // to compute the width large enough to show all our strings as GTK+
336 // doesn't seem to take the control contents into account.
337 return GetSizeFromTextSize(wxChoiceBase::DoGetBestSize().x
);
340 wxSize
wxChoice::DoGetSizeFromTextSize(int xlen
, int ylen
) const
342 wxASSERT_MSG( m_widget
, wxS("GetSizeFromTextSize called before creation") );
344 // a GtkEntry for wxComboBox and a GtkCellView for wxChoice
345 GtkWidget
* childPart
= gtk_bin_get_child(GTK_BIN(m_widget
));
347 // Set a as small as possible size for the control, so preferred sizes
348 // return "natural" sizes, not taking into account the previous ones (which
349 // seems to be GTK+3 behaviour)
350 gtk_widget_set_size_request(m_widget
, 0, 0);
352 // We are interested in the difference of sizes between the whole contol
353 // and its child part. I.e. arrow, separators, etc.
355 gtk_widget_get_preferred_size(childPart
, NULL
, &req
);
356 wxSize totalS
= GTKGetPreferredSize(m_widget
);
358 wxSize
tsize(xlen
+ totalS
.x
- req
.width
, totalS
.y
);
360 // For a wxChoice, not for wxComboBox, add some margins
361 if ( !GTK_IS_ENTRY(childPart
) )
364 // Perhaps the user wants something different from CharHeight
366 tsize
.IncBy(0, ylen
- GetCharHeight());
371 void wxChoice::DoApplyWidgetStyle(GtkRcStyle
*style
)
373 GTKApplyStyle(m_widget
, style
);
374 GTKApplyStyle(gtk_bin_get_child(GTK_BIN(m_widget
)), style
);
379 wxChoice::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
381 return GetDefaultAttributesFromGTKWidget(gtk_combo_box_new());
384 #endif // wxUSE_CHOICE || wxUSE_COMBOBOX