]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
11e62fe6 | 2 | // Name: src/gtk/listbox.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
4a46cbe8 | 5 | // Modified By: Ryan Norton (GtkTreeView implementation) |
f96aa4d9 RR |
6 | // Id: $Id$ |
7 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 8 | // Licence: wxWindows licence |
c801d85f KB |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
14f355c2 VS |
11 | // For compilers that support precompilation, includes "wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
dcf924a3 RR |
14 | #if wxUSE_LISTBOX |
15 | ||
88a7a4e1 WS |
16 | #include "wx/listbox.h" |
17 | ||
ad9835c9 WS |
18 | #ifndef WX_PRECOMP |
19 | #include "wx/dynarray.h" | |
88a7a4e1 | 20 | #include "wx/intl.h" |
e4db172a | 21 | #include "wx/log.h" |
de6185e2 | 22 | #include "wx/utils.h" |
9eddec69 | 23 | #include "wx/settings.h" |
e6e83933 | 24 | #include "wx/checklst.h" |
aaa6d89a | 25 | #include "wx/arrstr.h" |
ad9835c9 WS |
26 | #endif |
27 | ||
291a8f20 | 28 | #if wxUSE_TOOLTIPS |
ad9835c9 | 29 | #include "wx/tooltip.h" |
291a8f20 | 30 | #endif |
c801d85f | 31 | |
4a46cbe8 | 32 | #include <gtk/gtk.h> |
9dc44eff PC |
33 | #include "wx/gtk/private.h" |
34 | #include "wx/gtk/private/gtk2-compat.h" | |
35 | #include "wx/gtk/private/object.h" | |
36 | #include "wx/gtk/treeentry_gtk.h" | |
14b44999 | 37 | |
a625c5b6 | 38 | #include <gdk/gdkkeysyms.h> |
1897abe1 | 39 | #ifdef __WXGTK3__ |
14b44999 VS |
40 | #include <gdk/gdkkeysyms-compat.h> |
41 | #endif | |
83624f79 | 42 | |
66bd6b93 RR |
43 | //----------------------------------------------------------------------------- |
44 | // data | |
45 | //----------------------------------------------------------------------------- | |
46 | ||
d7fa7eaa RR |
47 | extern bool g_blockEventsOnDrag; |
48 | extern bool g_blockEventsOnScroll; | |
caaa4cfd | 49 | |
7a30ee8f | 50 | |
4a82abc8 | 51 | |
c9433ea9 | 52 | //----------------------------------------------------------------------------- |
4a46cbe8 | 53 | // Macro to tell which row the strings are in (1 if native checklist, 0 if not) |
c9433ea9 RR |
54 | //----------------------------------------------------------------------------- |
55 | ||
470402b9 | 56 | #if wxUSE_CHECKLISTBOX |
4a46cbe8 RR |
57 | # define WXLISTBOX_DATACOLUMN_ARG(x) (x->m_hasCheckBoxes ? 1 : 0) |
58 | #else | |
59 | # define WXLISTBOX_DATACOLUMN_ARG(x) (0) | |
470402b9 | 60 | #endif // wxUSE_CHECKLISTBOX |
17a1ebd1 | 61 | |
4a46cbe8 | 62 | #define WXLISTBOX_DATACOLUMN WXLISTBOX_DATACOLUMN_ARG(this) |
c9433ea9 | 63 | |
00d45d04 VZ |
64 | // ---------------------------------------------------------------------------- |
65 | // helper functions | |
66 | // ---------------------------------------------------------------------------- | |
67 | ||
68 | namespace | |
69 | { | |
70 | ||
71 | // Return the entry for the given listbox item. | |
72 | // | |
73 | // Return value must be released by caller if non-NULL. | |
74 | GtkTreeEntry * | |
75 | GetEntry(GtkListStore *store, GtkTreeIter *iter, const wxListBox *listbox) | |
76 | { | |
77 | GtkTreeEntry* entry; | |
78 | gtk_tree_model_get(GTK_TREE_MODEL(store), | |
79 | iter, | |
80 | WXLISTBOX_DATACOLUMN_ARG(listbox), | |
81 | &entry, | |
82 | -1); | |
83 | ||
84 | return entry; | |
85 | } | |
86 | ||
87 | } // anonymous namespace | |
88 | ||
c9433ea9 | 89 | //----------------------------------------------------------------------------- |
4a46cbe8 | 90 | // "row-activated" |
c9433ea9 RR |
91 | //----------------------------------------------------------------------------- |
92 | ||
865bb325 | 93 | extern "C" { |
4a46cbe8 | 94 | static void |
e4161a2a | 95 | gtk_listbox_row_activated_callback(GtkTreeView * WXUNUSED(treeview), |
4a46cbe8 | 96 | GtkTreePath *path, |
e4161a2a | 97 | GtkTreeViewColumn * WXUNUSED(col), |
4a46cbe8 | 98 | wxListBox *listbox) |
c9433ea9 | 99 | { |
4a46cbe8 RR |
100 | if (g_blockEventsOnDrag) return; |
101 | if (g_blockEventsOnScroll) return; | |
c9433ea9 | 102 | |
470402b9 | 103 | // This is triggered by either a double-click or a space press |
c9433ea9 | 104 | |
4a46cbe8 | 105 | int sel = gtk_tree_path_get_indices(path)[0]; |
c9433ea9 | 106 | |
09e744f5 | 107 | listbox->GTKOnActivated(sel); |
caaa4cfd | 108 | } |
865bb325 | 109 | } |
66bd6b93 | 110 | |
c801d85f | 111 | //----------------------------------------------------------------------------- |
470402b9 | 112 | // "changed" |
c801d85f KB |
113 | //----------------------------------------------------------------------------- |
114 | ||
4a46cbe8 | 115 | extern "C" { |
470402b9 | 116 | static void |
e4161a2a VZ |
117 | gtk_listitem_changed_callback(GtkTreeSelection * WXUNUSED(selection), |
118 | wxListBox *listbox ) | |
c801d85f | 119 | { |
470402b9 | 120 | if (g_blockEventsOnDrag) return; |
f4322df6 | 121 | |
24ee1bef | 122 | listbox->GTKOnSelectionChanged(); |
4a46cbe8 | 123 | } |
24ee1bef | 124 | |
6de97a3b | 125 | } |
c801d85f | 126 | |
a625c5b6 RR |
127 | //----------------------------------------------------------------------------- |
128 | // "key_press_event" | |
129 | //----------------------------------------------------------------------------- | |
130 | ||
131 | extern "C" { | |
9ff9d30c | 132 | static gboolean |
a625c5b6 RR |
133 | gtk_listbox_key_press_callback( GtkWidget *WXUNUSED(widget), |
134 | GdkEventKey *gdk_event, | |
135 | wxListBox *listbox ) | |
136 | { | |
03647350 | 137 | if ((gdk_event->keyval == GDK_Return) || |
a625c5b6 RR |
138 | (gdk_event->keyval == GDK_ISO_Enter) || |
139 | (gdk_event->keyval == GDK_KP_Enter)) | |
140 | { | |
f796e8f0 RR |
141 | int index = -1; |
142 | if (!listbox->HasMultipleSelection()) | |
143 | index = listbox->GetSelection(); | |
144 | else | |
a625c5b6 | 145 | { |
f796e8f0 RR |
146 | wxArrayInt sels; |
147 | if (listbox->GetSelections( sels ) < 1) | |
148 | return FALSE; | |
149 | index = sels[0]; | |
150 | } | |
03647350 | 151 | |
f796e8f0 RR |
152 | if (index != wxNOT_FOUND) |
153 | { | |
09e744f5 | 154 | listbox->GTKOnActivated(index); |
03647350 | 155 | |
9f400412 RR |
156 | // wxMac and wxMSW always invoke default action |
157 | // if (!ret) | |
a625c5b6 RR |
158 | { |
159 | // DClick not handled -> invoke default action | |
160 | wxWindow *tlw = wxGetTopLevelParent( listbox ); | |
161 | if (tlw) | |
162 | { | |
163 | GtkWindow *gtk_window = GTK_WINDOW( tlw->GetHandle() ); | |
164 | if (gtk_window) | |
165 | gtk_window_activate_default( gtk_window ); | |
166 | } | |
167 | } | |
03647350 | 168 | |
a625c5b6 RR |
169 | // Always intercept, otherwise we'd get another dclick |
170 | // event from row_activated | |
171 | return TRUE; | |
172 | } | |
173 | } | |
03647350 | 174 | |
a625c5b6 RR |
175 | return FALSE; |
176 | } | |
177 | } | |
178 | ||
4a46cbe8 RR |
179 | //----------------------------------------------------------------------------- |
180 | // GtkTreeEntry destruction (to destroy client data) | |
181 | //----------------------------------------------------------------------------- | |
182 | ||
865bb325 | 183 | extern "C" { |
caf6e6de | 184 | static void gtk_tree_entry_destroy_cb(GtkTreeEntry* entry, |
4a46cbe8 | 185 | wxListBox* listbox) |
865bb325 | 186 | { |
470402b9 | 187 | if (listbox->HasClientObjectData()) |
4a46cbe8 RR |
188 | { |
189 | gpointer userdata = gtk_tree_entry_get_userdata(entry); | |
470402b9 | 190 | if (userdata) |
4a46cbe8 RR |
191 | delete (wxClientData *)userdata; |
192 | } | |
865bb325 VZ |
193 | } |
194 | } | |
195 | ||
4a46cbe8 RR |
196 | //----------------------------------------------------------------------------- |
197 | // Sorting callback (standard CmpNoCase return value) | |
198 | //----------------------------------------------------------------------------- | |
199 | ||
865bb325 | 200 | extern "C" { |
e4161a2a | 201 | static gint gtk_listbox_sort_callback(GtkTreeModel * WXUNUSED(model), |
4a46cbe8 RR |
202 | GtkTreeIter *a, |
203 | GtkTreeIter *b, | |
204 | wxListBox *listbox) | |
865bb325 | 205 | { |
00d45d04 VZ |
206 | wxGtkObject<GtkTreeEntry> entry1(GetEntry(listbox->m_liststore, a, listbox)); |
207 | wxCHECK_MSG(entry1, 0, wxT("Could not get first entry")); | |
208 | ||
209 | wxGtkObject<GtkTreeEntry> entry2(GetEntry(listbox->m_liststore, b, listbox)); | |
210 | wxCHECK_MSG(entry2, 0, wxT("Could not get second entry")); | |
4a46cbe8 RR |
211 | |
212 | //We compare collate keys here instead of calling g_utf8_collate | |
eccace04 | 213 | //as it is rather slow (and even the docs recommend this) |
00d45d04 VZ |
214 | return strcmp(gtk_tree_entry_get_collate_key(entry1), |
215 | gtk_tree_entry_get_collate_key(entry2)) >= 0; | |
865bb325 VZ |
216 | } |
217 | } | |
218 | ||
a60c99e6 | 219 | //----------------------------------------------------------------------------- |
4a46cbe8 | 220 | // Searching callback (TRUE == not equal, FALSE == equal) |
c801d85f KB |
221 | //----------------------------------------------------------------------------- |
222 | ||
865bb325 | 223 | extern "C" { |
e4161a2a VZ |
224 | static gboolean gtk_listbox_searchequal_callback(GtkTreeModel * WXUNUSED(model), |
225 | gint WXUNUSED(column), | |
4a46cbe8 RR |
226 | const gchar* key, |
227 | GtkTreeIter* iter, | |
228 | wxListBox* listbox) | |
f2e93537 | 229 | { |
00d45d04 VZ |
230 | wxGtkObject<GtkTreeEntry> |
231 | entry(GetEntry(listbox->m_liststore, iter, listbox)); | |
4a46cbe8 | 232 | wxCHECK_MSG(entry, 0, wxT("Could not get entry")); |
17a1ebd1 | 233 | |
00d45d04 | 234 | wxGtkString keycollatekey(g_utf8_collate_key(key, -1)); |
4a46cbe8 | 235 | |
00d45d04 | 236 | return strcmp(keycollatekey, gtk_tree_entry_get_collate_key(entry)) != 0; |
f2e93537 | 237 | } |
865bb325 | 238 | } |
f2e93537 RR |
239 | |
240 | //----------------------------------------------------------------------------- | |
241 | // wxListBox | |
242 | //----------------------------------------------------------------------------- | |
243 | ||
2ee3ee1b VZ |
244 | // ---------------------------------------------------------------------------- |
245 | // construction | |
246 | // ---------------------------------------------------------------------------- | |
247 | ||
b6e5dfef | 248 | void wxListBox::Init() |
c801d85f | 249 | { |
d3b9f782 | 250 | m_treeview = NULL; |
88ac883a | 251 | #if wxUSE_CHECKLISTBOX |
caf6e6de | 252 | m_hasCheckBoxes = false; |
88ac883a | 253 | #endif // wxUSE_CHECKLISTBOX |
6de97a3b | 254 | } |
c801d85f | 255 | |
584ad2a3 MB |
256 | bool wxListBox::Create( wxWindow *parent, wxWindowID id, |
257 | const wxPoint &pos, const wxSize &size, | |
258 | const wxArrayString& choices, | |
259 | long style, const wxValidator& validator, | |
260 | const wxString &name ) | |
261 | { | |
262 | wxCArrayString chs(choices); | |
263 | ||
264 | return Create( parent, id, pos, size, chs.GetCount(), chs.GetStrings(), | |
265 | style, validator, name ); | |
266 | } | |
267 | ||
dcf40a56 | 268 | bool wxListBox::Create( wxWindow *parent, wxWindowID id, |
fd0eed64 RR |
269 | const wxPoint &pos, const wxSize &size, |
270 | int n, const wxString choices[], | |
2ee3ee1b VZ |
271 | long style, const wxValidator& validator, |
272 | const wxString &name ) | |
c801d85f | 273 | { |
4dcaf11a RR |
274 | if (!PreCreation( parent, pos, size ) || |
275 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
276 | { | |
223d09f6 | 277 | wxFAIL_MSG( wxT("wxListBox creation failed") ); |
caf6e6de | 278 | return false; |
4dcaf11a | 279 | } |
6de97a3b | 280 | |
d3b9f782 | 281 | m_widget = gtk_scrolled_window_new( NULL, NULL ); |
9ff9d30c | 282 | g_object_ref(m_widget); |
034be888 RR |
283 | if (style & wxLB_ALWAYS_SB) |
284 | { | |
285 | gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget), | |
286 | GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS ); | |
287 | } | |
288 | else | |
289 | { | |
290 | gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget), | |
291 | GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC ); | |
292 | } | |
ff8bfdbb | 293 | |
6493aaca | 294 | |
496e7ec6 | 295 | GTKScrolledWindowSetBorder(m_widget, style); |
6493aaca | 296 | |
4a46cbe8 RR |
297 | m_treeview = GTK_TREE_VIEW( gtk_tree_view_new( ) ); |
298 | ||
299 | //wxListBox doesn't have a header :) | |
300 | //NB: If enabled SetFirstItem doesn't work correctly | |
301 | gtk_tree_view_set_headers_visible(m_treeview, FALSE); | |
302 | ||
470402b9 | 303 | #if wxUSE_CHECKLISTBOX |
4a46cbe8 RR |
304 | if(m_hasCheckBoxes) |
305 | ((wxCheckListBox*)this)->DoCreateCheckList(); | |
470402b9 | 306 | #endif // wxUSE_CHECKLISTBOX |
4a46cbe8 RR |
307 | |
308 | // Create the data column | |
caf6e6de | 309 | gtk_tree_view_insert_column_with_attributes(m_treeview, -1, "", |
4a46cbe8 | 310 | gtk_cell_renderer_text_new(), |
caf6e6de | 311 | "text", |
4a46cbe8 RR |
312 | WXLISTBOX_DATACOLUMN, NULL); |
313 | ||
314 | // Now create+set the model (GtkListStore) - first argument # of columns | |
470402b9 | 315 | #if wxUSE_CHECKLISTBOX |
4a46cbe8 RR |
316 | if(m_hasCheckBoxes) |
317 | m_liststore = gtk_list_store_new(2, G_TYPE_BOOLEAN, | |
318 | GTK_TYPE_TREE_ENTRY); | |
319 | else | |
320 | #endif | |
321 | m_liststore = gtk_list_store_new(1, GTK_TYPE_TREE_ENTRY); | |
322 | ||
323 | gtk_tree_view_set_model(m_treeview, GTK_TREE_MODEL(m_liststore)); | |
caf6e6de | 324 | |
3fe39b0c | 325 | g_object_unref (m_liststore); //free on treeview destruction |
caf6e6de | 326 | |
4a46cbe8 RR |
327 | // Disable the pop-up textctrl that enables searching - note that |
328 | // the docs specify that even if this disabled (which we are doing) | |
329 | // the user can still have it through the start-interactive-search | |
330 | // key binding...either way we want to provide a searchequal callback | |
caf6e6de | 331 | // NB: If this is enabled a doubleclick event (activate) gets sent |
4a46cbe8 RR |
332 | // on a successful search |
333 | gtk_tree_view_set_search_column(m_treeview, WXLISTBOX_DATACOLUMN); | |
caf6e6de | 334 | gtk_tree_view_set_search_equal_func(m_treeview, |
4a46cbe8 RR |
335 | (GtkTreeViewSearchEqualFunc) gtk_listbox_searchequal_callback, |
336 | this, | |
337 | NULL); | |
338 | ||
339 | gtk_tree_view_set_enable_search(m_treeview, FALSE); | |
340 | ||
4a82abc8 | 341 | GtkSelectionMode mode; |
b4de6e0d VZ |
342 | // GTK_SELECTION_EXTENDED is a deprecated synonym for GTK_SELECTION_MULTIPLE |
343 | if ( style & (wxLB_MULTIPLE | wxLB_EXTENDED) ) | |
4a82abc8 | 344 | { |
fd0eed64 | 345 | mode = GTK_SELECTION_MULTIPLE; |
4a82abc8 | 346 | } |
b4de6e0d | 347 | else // no multi-selection flags specified |
4a82abc8 | 348 | { |
4a82abc8 | 349 | m_windowStyle |= wxLB_SINGLE; |
1d919083 VZ |
350 | |
351 | // Notice that we must use BROWSE and not GTK_SELECTION_SINGLE because | |
352 | // the latter allows to not select any items at all while a single | |
353 | // selection listbox is supposed to always have a selection (at least | |
354 | // once the user selected something, it might not have any initially). | |
355 | mode = GTK_SELECTION_BROWSE; | |
4a82abc8 | 356 | } |
6a6d4eed | 357 | |
1e6ffd66 | 358 | GtkTreeSelection* selection = gtk_tree_view_get_selection( m_treeview ); |
4a46cbe8 RR |
359 | gtk_tree_selection_set_mode( selection, mode ); |
360 | ||
470402b9 | 361 | // Handle sortable stuff |
a236aa20 | 362 | if(HasFlag(wxLB_SORT)) |
4a46cbe8 | 363 | { |
470402b9 | 364 | // Setup sorting in ascending (wx) order |
caf6e6de WS |
365 | gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(m_liststore), |
366 | WXLISTBOX_DATACOLUMN, | |
4a46cbe8 RR |
367 | GTK_SORT_ASCENDING); |
368 | ||
470402b9 | 369 | // Set the sort callback |
4a46cbe8 RR |
370 | gtk_tree_sortable_set_sort_func(GTK_TREE_SORTABLE(m_liststore), |
371 | WXLISTBOX_DATACOLUMN, | |
372 | (GtkTreeIterCompareFunc) gtk_listbox_sort_callback, | |
373 | this, //userdata | |
374 | NULL //"destroy notifier" | |
375 | ); | |
376 | } | |
377 | ||
dcf40a56 | 378 | |
dcd3c79c | 379 | gtk_container_add (GTK_CONTAINER (m_widget), GTK_WIDGET(m_treeview) ); |
caf6e6de | 380 | |
4a46cbe8 | 381 | gtk_widget_show( GTK_WIDGET(m_treeview) ); |
0bb3fc29 | 382 | m_focusWidget = GTK_WIDGET(m_treeview); |
dcf40a56 | 383 | |
a236aa20 | 384 | Append(n, choices); // insert initial items |
17a1ebd1 | 385 | |
470402b9 RR |
386 | // generate dclick events |
387 | g_signal_connect_after(m_treeview, "row-activated", | |
4a46cbe8 | 388 | G_CALLBACK(gtk_listbox_row_activated_callback), this); |
2ee3ee1b | 389 | |
a625c5b6 RR |
390 | // for intercepting dclick generation by <ENTER> |
391 | g_signal_connect (m_treeview, "key_press_event", | |
392 | G_CALLBACK (gtk_listbox_key_press_callback), | |
393 | this); | |
f03fc89f | 394 | m_parent->DoAddChild( this ); |
ff8bfdbb | 395 | |
abdeb9e7 | 396 | PostCreation(size); |
170acdc9 | 397 | SetInitialSize(size); // need this too because this is a wxControlWithItems |
dcf40a56 | 398 | |
1e6ffd66 RR |
399 | g_signal_connect_after (selection, "changed", |
400 | G_CALLBACK (gtk_listitem_changed_callback), this); | |
03647350 | 401 | |
caf6e6de | 402 | return true; |
6de97a3b | 403 | } |
c801d85f | 404 | |
fd0eed64 | 405 | wxListBox::~wxListBox() |
c801d85f | 406 | { |
8ab75332 PC |
407 | if (m_treeview) |
408 | { | |
409 | GTKDisconnect(m_treeview); | |
410 | GtkTreeSelection* selection = gtk_tree_view_get_selection(m_treeview); | |
411 | if (selection) | |
412 | GTKDisconnect(selection); | |
413 | } | |
4a82abc8 | 414 | |
caaa4cfd | 415 | Clear(); |
6de97a3b | 416 | } |
c801d85f | 417 | |
dec7b5a8 | 418 | void wxListBox::GTKDisableEvents() |
1e6ffd66 RR |
419 | { |
420 | GtkTreeSelection* selection = gtk_tree_view_get_selection( m_treeview ); | |
421 | ||
422 | g_signal_handlers_block_by_func(selection, | |
423 | (gpointer) gtk_listitem_changed_callback, this); | |
424 | } | |
425 | ||
dec7b5a8 | 426 | void wxListBox::GTKEnableEvents() |
1e6ffd66 RR |
427 | { |
428 | GtkTreeSelection* selection = gtk_tree_view_get_selection( m_treeview ); | |
429 | ||
430 | g_signal_handlers_unblock_by_func(selection, | |
431 | (gpointer) gtk_listitem_changed_callback, this); | |
03647350 | 432 | |
05d790f8 | 433 | UpdateOldSelections(); |
1e6ffd66 RR |
434 | } |
435 | ||
937fc7db RR |
436 | |
437 | void wxListBox::Update() | |
438 | { | |
439 | wxWindow::Update(); | |
03647350 | 440 | |
937fc7db | 441 | if (m_treeview) |
385e8575 | 442 | gdk_window_process_updates(gtk_widget_get_window(GTK_WIDGET(m_treeview)), true); |
937fc7db RR |
443 | } |
444 | ||
8161b5b9 VZ |
445 | // ---------------------------------------------------------------------------- |
446 | // adding items | |
447 | // ---------------------------------------------------------------------------- | |
448 | ||
a236aa20 VZ |
449 | int wxListBox::DoInsertItems(const wxArrayStringsAdapter& items, |
450 | unsigned int pos, | |
451 | void **clientData, | |
cfe8a907 | 452 | wxClientDataType type) |
bb0ca8df | 453 | { |
a236aa20 | 454 | wxCHECK_MSG( m_treeview != NULL, wxNOT_FOUND, wxT("invalid listbox") ); |
2ee3ee1b | 455 | |
9f884528 RD |
456 | InvalidateBestSize(); |
457 | ||
2eb1512a MR |
458 | GtkTreeIter* pIter = NULL; // append by default |
459 | GtkTreeIter iter; | |
a236aa20 | 460 | if ( pos != GetCount() ) |
bb0ca8df | 461 | { |
dec7b5a8 | 462 | wxCHECK_MSG( GTKGetIteratorFor(pos, &iter), wxNOT_FOUND, |
0d5f4ba3 | 463 | wxT("internal wxListBox error in insertion") ); |
bb0ca8df | 464 | |
4a46cbe8 | 465 | pIter = &iter; |
bb0ca8df | 466 | } |
2ee3ee1b | 467 | |
a236aa20 VZ |
468 | const unsigned int numItems = items.GetCount(); |
469 | for ( unsigned int i = 0; i < numItems; ++i ) | |
2ee3ee1b | 470 | { |
00d45d04 | 471 | wxGtkObject<GtkTreeEntry> entry(gtk_tree_entry_new()); |
a236aa20 | 472 | gtk_tree_entry_set_label(entry, wxGTK_CONV(items[i])); |
caf6e6de | 473 | gtk_tree_entry_set_destroy_func(entry, |
4a46cbe8 | 474 | (GtkTreeEntryDestroy)gtk_tree_entry_destroy_cb, |
9fa72bd2 | 475 | this); |
dcf40a56 | 476 | |
4a46cbe8 RR |
477 | GtkTreeIter itercur; |
478 | gtk_list_store_insert_before(m_liststore, &itercur, pIter); | |
c9433ea9 | 479 | |
dec7b5a8 | 480 | GTKSetItem(itercur, entry); |
fd0eed64 | 481 | |
cfe8a907 | 482 | if (clientData) |
dec7b5a8 | 483 | AssignNewItemClientData(GTKGetIndexFor(itercur), clientData, i, type); |
4a46cbe8 | 484 | } |
17a1ebd1 | 485 | |
bc60925f RR |
486 | UpdateOldSelections(); |
487 | ||
a236aa20 | 488 | return pos + numItems - 1; |
fd0eed64 | 489 | } |
dcf40a56 | 490 | |
2ee3ee1b | 491 | // ---------------------------------------------------------------------------- |
8161b5b9 | 492 | // deleting items |
2ee3ee1b | 493 | // ---------------------------------------------------------------------------- |
ff8bfdbb | 494 | |
a236aa20 | 495 | void wxListBox::DoClear() |
fd0eed64 | 496 | { |
4a46cbe8 | 497 | wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") ); |
fc54776e | 498 | |
dec7b5a8 | 499 | GTKDisableEvents(); // just in case |
2154130c | 500 | |
cdff1318 RD |
501 | InvalidateBestSize(); |
502 | ||
4a46cbe8 | 503 | gtk_list_store_clear( m_liststore ); /* well, THAT was easy :) */ |
03647350 | 504 | |
dec7b5a8 | 505 | GTKEnableEvents(); |
fb040ec1 VZ |
506 | |
507 | UpdateOldSelections(); | |
6de97a3b | 508 | } |
c801d85f | 509 | |
a236aa20 | 510 | void wxListBox::DoDeleteOneItem(unsigned int n) |
c801d85f | 511 | { |
4a46cbe8 | 512 | wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") ); |
fc54776e | 513 | |
cdff1318 RD |
514 | InvalidateBestSize(); |
515 | ||
dec7b5a8 | 516 | GTKDisableEvents(); // just in case |
2154130c | 517 | |
4a46cbe8 | 518 | GtkTreeIter iter; |
dec7b5a8 | 519 | wxCHECK_RET( GTKGetIteratorFor(n, &iter), wxT("wrong listbox index") ); |
dcf40a56 | 520 | |
0d5f4ba3 VZ |
521 | // this returns false if iter is invalid (e.g. deleting item at end) but |
522 | // since we don't use iter, we ignore the return value | |
4a46cbe8 | 523 | gtk_list_store_remove(m_liststore, &iter); |
03647350 | 524 | |
dec7b5a8 | 525 | GTKEnableEvents(); |
4a46cbe8 | 526 | } |
dcf40a56 | 527 | |
4a46cbe8 | 528 | // ---------------------------------------------------------------------------- |
0d5f4ba3 | 529 | // helper functions for working with iterators |
4a46cbe8 | 530 | // ---------------------------------------------------------------------------- |
2ee3ee1b | 531 | |
dec7b5a8 | 532 | bool wxListBox::GTKGetIteratorFor(unsigned pos, GtkTreeIter *iter) const |
4a46cbe8 | 533 | { |
0d5f4ba3 VZ |
534 | if ( !gtk_tree_model_iter_nth_child(GTK_TREE_MODEL(m_liststore), |
535 | iter, NULL, pos) ) | |
4a46cbe8 | 536 | { |
0d5f4ba3 VZ |
537 | wxLogDebug(wxT("gtk_tree_model_iter_nth_child(%u) failed"), pos); |
538 | return false; | |
f5e27805 | 539 | } |
ff8bfdbb | 540 | |
0d5f4ba3 VZ |
541 | return true; |
542 | } | |
543 | ||
dec7b5a8 | 544 | int wxListBox::GTKGetIndexFor(GtkTreeIter& iter) const |
0d5f4ba3 VZ |
545 | { |
546 | GtkTreePath *path = | |
547 | gtk_tree_model_get_path(GTK_TREE_MODEL(m_liststore), &iter); | |
548 | ||
549 | gint* pIntPath = gtk_tree_path_get_indices(path); | |
550 | ||
9a83f860 | 551 | wxCHECK_MSG( pIntPath, wxNOT_FOUND, wxT("failed to get iterator path") ); |
0d5f4ba3 VZ |
552 | |
553 | int idx = pIntPath[0]; | |
554 | ||
555 | gtk_tree_path_free( path ); | |
556 | ||
557 | return idx; | |
558 | } | |
559 | ||
560 | // get GtkTreeEntry from position (note: you need to g_unref it if valid) | |
dec7b5a8 | 561 | GtkTreeEntry *wxListBox::GTKGetEntry(unsigned n) const |
0d5f4ba3 VZ |
562 | { |
563 | GtkTreeIter iter; | |
dec7b5a8 | 564 | if ( !GTKGetIteratorFor(n, &iter) ) |
0d5f4ba3 VZ |
565 | return NULL; |
566 | ||
00d45d04 | 567 | return GetEntry(m_liststore, &iter, this); |
2ee3ee1b VZ |
568 | } |
569 | ||
dec7b5a8 | 570 | void wxListBox::GTKSetItem(GtkTreeIter& iter, const GtkTreeEntry *entry) |
0d5f4ba3 VZ |
571 | { |
572 | #if wxUSE_CHECKLISTBOX | |
573 | if ( m_hasCheckBoxes ) | |
574 | { | |
575 | gtk_list_store_set(m_liststore, &iter, | |
576 | 0, FALSE, // FALSE == not toggled | |
577 | 1, entry, | |
578 | -1); | |
579 | } | |
580 | else | |
581 | #endif // wxUSE_CHECKLISTBOX | |
582 | { | |
583 | gtk_list_store_set(m_liststore, &iter, 0, entry, -1); | |
584 | } | |
585 | } | |
586 | ||
8161b5b9 VZ |
587 | // ---------------------------------------------------------------------------- |
588 | // client data | |
589 | // ---------------------------------------------------------------------------- | |
590 | ||
aa61d352 | 591 | void* wxListBox::DoGetItemClientData(unsigned int n) const |
8161b5b9 | 592 | { |
00d45d04 | 593 | wxGtkObject<GtkTreeEntry> entry(GTKGetEntry(n)); |
4a46cbe8 | 594 | wxCHECK_MSG(entry, NULL, wxT("could not get entry")); |
8161b5b9 | 595 | |
00d45d04 | 596 | return gtk_tree_entry_get_userdata( entry ); |
8161b5b9 VZ |
597 | } |
598 | ||
aa61d352 | 599 | void wxListBox::DoSetItemClientData(unsigned int n, void* clientData) |
8161b5b9 | 600 | { |
00d45d04 | 601 | wxGtkObject<GtkTreeEntry> entry(GTKGetEntry(n)); |
4a46cbe8 | 602 | wxCHECK_RET(entry, wxT("could not get entry")); |
8161b5b9 | 603 | |
4a46cbe8 | 604 | gtk_tree_entry_set_userdata( entry, clientData ); |
8161b5b9 VZ |
605 | } |
606 | ||
2ee3ee1b VZ |
607 | // ---------------------------------------------------------------------------- |
608 | // string list access | |
609 | // ---------------------------------------------------------------------------- | |
610 | ||
33c6e437 | 611 | void wxListBox::SetString(unsigned int n, const wxString& label) |
2ee3ee1b | 612 | { |
8228b893 | 613 | wxCHECK_RET( IsValid(n), wxT("invalid index in wxListBox::SetString") ); |
4a46cbe8 | 614 | wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") ); |
2ee3ee1b | 615 | |
dec7b5a8 | 616 | GtkTreeEntry* entry = GTKGetEntry(n); |
4a46cbe8 | 617 | wxCHECK_RET( entry, wxT("wrong listbox index") ); |
2ee3ee1b | 618 | |
33c6e437 VZ |
619 | // update the item itself |
620 | gtk_tree_entry_set_label(entry, wxGTK_CONV(label)); | |
4a46cbe8 | 621 | |
33c6e437 VZ |
622 | // and update the model which will refresh the tree too |
623 | GtkTreeIter iter; | |
dec7b5a8 | 624 | wxCHECK_RET( GTKGetIteratorFor(n, &iter), wxT("failed to get iterator") ); |
4a46cbe8 | 625 | |
0d5f4ba3 VZ |
626 | // FIXME: this resets the checked status of a wxCheckListBox item |
627 | ||
dec7b5a8 | 628 | GTKSetItem(iter, entry); |
6de97a3b | 629 | } |
c801d85f | 630 | |
aa61d352 | 631 | wxString wxListBox::GetString(unsigned int n) const |
c801d85f | 632 | { |
4a46cbe8 | 633 | wxCHECK_MSG( m_treeview != NULL, wxEmptyString, wxT("invalid listbox") ); |
fc54776e | 634 | |
00d45d04 | 635 | wxGtkObject<GtkTreeEntry> entry(GTKGetEntry(n)); |
4a46cbe8 RR |
636 | wxCHECK_MSG( entry, wxEmptyString, wxT("wrong listbox index") ); |
637 | ||
00d45d04 | 638 | return wxGTK_CONV_BACK( gtk_tree_entry_get_label(entry) ); |
2ee3ee1b VZ |
639 | } |
640 | ||
aa61d352 | 641 | unsigned int wxListBox::GetCount() const |
2ee3ee1b | 642 | { |
8228b893 | 643 | wxCHECK_MSG( m_treeview != NULL, 0, wxT("invalid listbox") ); |
2ee3ee1b | 644 | |
aa61d352 | 645 | return (unsigned int)gtk_tree_model_iter_n_children(GTK_TREE_MODEL(m_liststore), NULL); |
6de97a3b | 646 | } |
c801d85f | 647 | |
11e62fe6 | 648 | int wxListBox::FindString( const wxString &item, bool bCase ) const |
c801d85f | 649 | { |
4a46cbe8 | 650 | wxCHECK_MSG( m_treeview != NULL, wxNOT_FOUND, wxT("invalid listbox") ); |
ff8bfdbb | 651 | |
4a46cbe8 | 652 | //Sort of hackish - maybe there is a faster way |
aa61d352 | 653 | unsigned int nCount = wxListBox::GetCount(); |
ff8bfdbb | 654 | |
aa61d352 | 655 | for(unsigned int i = 0; i < nCount; ++i) |
4a46cbe8 RR |
656 | { |
657 | if( item.IsSameAs( wxListBox::GetString(i), bCase ) ) | |
8228b893 | 658 | return (int)i; |
fd0eed64 RR |
659 | } |
660 | ||
dcf40a56 | 661 | |
4a46cbe8 | 662 | // it's not an error if the string is not found -> no wxCHECK |
2ee3ee1b | 663 | return wxNOT_FOUND; |
6de97a3b | 664 | } |
c801d85f | 665 | |
2ee3ee1b VZ |
666 | // ---------------------------------------------------------------------------- |
667 | // selection | |
668 | // ---------------------------------------------------------------------------- | |
669 | ||
09e744f5 VZ |
670 | void wxListBox::GTKOnActivated(int item) |
671 | { | |
ce7fe42e | 672 | SendEvent(wxEVT_LISTBOX_DCLICK, item, IsSelected(item)); |
09e744f5 VZ |
673 | } |
674 | ||
24ee1bef VZ |
675 | void wxListBox::GTKOnSelectionChanged() |
676 | { | |
677 | if ( HasFlag(wxLB_MULTIPLE | wxLB_EXTENDED) ) | |
678 | { | |
679 | CalcAndSendEvent(); | |
680 | } | |
681 | else // single selection | |
682 | { | |
09e744f5 VZ |
683 | const int item = GetSelection(); |
684 | if ( DoChangeSingleSelection(item) ) | |
ce7fe42e | 685 | SendEvent(wxEVT_LISTBOX, item, true); |
24ee1bef VZ |
686 | } |
687 | } | |
688 | ||
fd0eed64 | 689 | int wxListBox::GetSelection() const |
c801d85f | 690 | { |
e6e83933 WS |
691 | wxCHECK_MSG( m_treeview != NULL, wxNOT_FOUND, wxT("invalid listbox")); |
692 | wxCHECK_MSG( HasFlag(wxLB_SINGLE), wxNOT_FOUND, | |
4a46cbe8 | 693 | wxT("must be single selection listbox")); |
ff8bfdbb | 694 | |
caf6e6de | 695 | GtkTreeIter iter; |
4a46cbe8 RR |
696 | GtkTreeSelection* selection = gtk_tree_view_get_selection(m_treeview); |
697 | ||
caf6e6de | 698 | // only works on single-sel |
4a46cbe8 | 699 | if (!gtk_tree_selection_get_selected(selection, NULL, &iter)) |
e6e83933 | 700 | return wxNOT_FOUND; |
4a46cbe8 | 701 | |
dec7b5a8 | 702 | return GTKGetIndexFor(iter); |
6de97a3b | 703 | } |
c801d85f | 704 | |
fd0eed64 | 705 | int wxListBox::GetSelections( wxArrayInt& aSelections ) const |
c801d85f | 706 | { |
e6e83933 | 707 | wxCHECK_MSG( m_treeview != NULL, wxNOT_FOUND, wxT("invalid listbox") ); |
c801d85f | 708 | |
fd0eed64 RR |
709 | aSelections.Empty(); |
710 | ||
05d790f8 | 711 | int i = 0; |
caf6e6de | 712 | GtkTreeIter iter; |
4a46cbe8 RR |
713 | GtkTreeSelection* selection = gtk_tree_view_get_selection(m_treeview); |
714 | ||
715 | if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(m_liststore), &iter)) | |
716 | { //gtk_tree_selection_get_selected_rows is GTK 2.2+ so iter instead | |
717 | do | |
fd0eed64 | 718 | { |
4a46cbe8 RR |
719 | if (gtk_tree_selection_iter_is_selected(selection, &iter)) |
720 | aSelections.Add(i); | |
721 | ||
722 | i++; | |
723 | } while(gtk_tree_model_iter_next(GTK_TREE_MODEL(m_liststore), &iter)); | |
6a6d4eed | 724 | } |
dcf40a56 | 725 | |
4a46cbe8 | 726 | return aSelections.GetCount(); |
6de97a3b | 727 | } |
c801d85f | 728 | |
2ee3ee1b | 729 | bool wxListBox::IsSelected( int n ) const |
c801d85f | 730 | { |
caf6e6de | 731 | wxCHECK_MSG( m_treeview != NULL, false, wxT("invalid listbox") ); |
ff8bfdbb | 732 | |
4a46cbe8 | 733 | GtkTreeSelection* selection = gtk_tree_view_get_selection(m_treeview); |
9ef6ff8c | 734 | |
4a46cbe8 | 735 | GtkTreeIter iter; |
dec7b5a8 | 736 | wxCHECK_MSG( GTKGetIteratorFor(n, &iter), false, wxT("Invalid index") ); |
9ef6ff8c | 737 | |
d5027818 | 738 | return gtk_tree_selection_iter_is_selected(selection, &iter) != 0; |
6de97a3b | 739 | } |
c801d85f | 740 | |
c6179a84 | 741 | void wxListBox::DoSetSelection( int n, bool select ) |
c801d85f | 742 | { |
1e6ffd66 RR |
743 | wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") ); |
744 | ||
dec7b5a8 | 745 | GTKDisableEvents(); |
03647350 | 746 | |
1e6ffd66 RR |
747 | GtkTreeSelection* selection = gtk_tree_view_get_selection(m_treeview); |
748 | ||
ef33382e VZ |
749 | // passing -1 to SetSelection() is documented to deselect all items |
750 | if ( n == wxNOT_FOUND ) | |
751 | { | |
1e6ffd66 | 752 | gtk_tree_selection_unselect_all(selection); |
dec7b5a8 | 753 | GTKEnableEvents(); |
470402b9 | 754 | return; |
ef33382e VZ |
755 | } |
756 | ||
757 | wxCHECK_RET( IsValid(n), wxT("invalid index in wxListBox::SetSelection") ); | |
758 | ||
03647350 | 759 | |
4a46cbe8 | 760 | GtkTreeIter iter; |
dec7b5a8 | 761 | wxCHECK_RET( GTKGetIteratorFor(n, &iter), wxT("Invalid index") ); |
ff8bfdbb | 762 | |
fd0eed64 | 763 | if (select) |
4a46cbe8 | 764 | gtk_tree_selection_select_iter(selection, &iter); |
fd0eed64 | 765 | else |
4a46cbe8 | 766 | gtk_tree_selection_unselect_iter(selection, &iter); |
e4161a2a | 767 | |
0b2e06f9 RR |
768 | GtkTreePath* path = gtk_tree_model_get_path( |
769 | GTK_TREE_MODEL(m_liststore), &iter); | |
770 | ||
771 | gtk_tree_view_scroll_to_cell(m_treeview, path, NULL, FALSE, 0.0f, 0.0f); | |
772 | ||
773 | gtk_tree_path_free(path); | |
014b0d06 | 774 | |
dec7b5a8 | 775 | GTKEnableEvents(); |
1e6ffd66 RR |
776 | } |
777 | ||
0d29a482 | 778 | void wxListBox::DoScrollToCell(int n, float alignY, float alignX) |
c801d85f | 779 | { |
4a46cbe8 | 780 | wxCHECK_RET( m_treeview, wxT("invalid listbox") ); |
8228b893 | 781 | wxCHECK_RET( IsValid(n), wxT("invalid index")); |
9ef6ff8c | 782 | |
4a46cbe8 | 783 | //RN: I have no idea why this line is needed... |
1897abe1 | 784 | if (gtk_widget_has_grab(GTK_WIDGET(m_treeview))) |
9ef6ff8c | 785 | return; |
f96b15a3 | 786 | |
28354d90 | 787 | GtkTreeIter iter; |
dec7b5a8 | 788 | if ( !GTKGetIteratorFor(n, &iter) ) |
0d5f4ba3 | 789 | return; |
4a46cbe8 | 790 | |
28354d90 VZ |
791 | GtkTreePath* path = gtk_tree_model_get_path( |
792 | GTK_TREE_MODEL(m_liststore), &iter); | |
9ef6ff8c | 793 | |
28354d90 VZ |
794 | // Scroll to the desired cell (0.0 == topleft alignment) |
795 | gtk_tree_view_scroll_to_cell(m_treeview, path, NULL, | |
0d29a482 | 796 | TRUE, alignY, alignX); |
4a46cbe8 | 797 | |
28354d90 | 798 | gtk_tree_path_free(path); |
6de97a3b | 799 | } |
c801d85f | 800 | |
0d29a482 VZ |
801 | void wxListBox::DoSetFirstItem(int n) |
802 | { | |
803 | DoScrollToCell(n, 0, 0); | |
804 | } | |
805 | ||
806 | void wxListBox::EnsureVisible(int n) | |
807 | { | |
808 | DoScrollToCell(n, 0.5, 0); | |
809 | } | |
810 | ||
c00fed0e VZ |
811 | // ---------------------------------------------------------------------------- |
812 | // hittest | |
813 | // ---------------------------------------------------------------------------- | |
814 | ||
57772185 | 815 | int wxListBox::DoListHitTest(const wxPoint& point) const |
c00fed0e | 816 | { |
a183ddba VZ |
817 | // gtk_tree_view_get_path_at_pos() also gets items that are not visible and |
818 | // we only want visible items we need to check for it manually here | |
22a35096 | 819 | if ( !GetClientRect().Contains(point) ) |
a183ddba VZ |
820 | return wxNOT_FOUND; |
821 | ||
57772185 | 822 | // need to translate from master window since it is in client coords |
c00fed0e | 823 | gint binx, biny; |
caf6e6de | 824 | gdk_window_get_geometry(gtk_tree_view_get_bin_window(m_treeview), |
9dc44eff | 825 | &binx, &biny, NULL, NULL); |
c00fed0e VZ |
826 | |
827 | GtkTreePath* path; | |
57772185 VZ |
828 | if ( !gtk_tree_view_get_path_at_pos |
829 | ( | |
caf6e6de | 830 | m_treeview, |
57772185 VZ |
831 | point.x - binx, |
832 | point.y - biny, | |
833 | &path, | |
834 | NULL, // [out] column (always 0 here) | |
835 | NULL, // [out] x-coord relative to the cell (not interested) | |
836 | NULL // [out] y-coord relative to the cell | |
837 | ) ) | |
c00fed0e VZ |
838 | { |
839 | return wxNOT_FOUND; | |
840 | } | |
841 | ||
842 | int index = gtk_tree_path_get_indices(path)[0]; | |
843 | gtk_tree_path_free(path); | |
844 | ||
845 | return index; | |
846 | } | |
4a46cbe8 | 847 | |
2ee3ee1b VZ |
848 | // ---------------------------------------------------------------------------- |
849 | // helpers | |
850 | // ---------------------------------------------------------------------------- | |
c801d85f | 851 | |
fd0eed64 | 852 | GtkWidget *wxListBox::GetConnectWidget() |
e3e65dac | 853 | { |
e5e41cfe VZ |
854 | // the correct widget for listbox events (such as mouse clicks for example) |
855 | // is m_treeview, not the parent scrolled window | |
856 | return GTK_WIDGET(m_treeview); | |
6de97a3b | 857 | } |
e3e65dac | 858 | |
1c2b98d6 | 859 | GdkWindow *wxListBox::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const |
868a2826 | 860 | { |
1c2b98d6 | 861 | return gtk_tree_view_get_bin_window(m_treeview); |
868a2826 | 862 | } |
e3e65dac | 863 | |
f40fdaa3 | 864 | void wxListBox::DoApplyWidgetStyle(GtkRcStyle *style) |
c058d771 | 865 | { |
9dc44eff PC |
866 | #ifdef __WXGTK3__ |
867 | // don't know if this is even necessary, or how to do it | |
868 | #else | |
a1b806b9 | 869 | if (m_hasBgCol && m_backgroundColour.IsOk()) |
e380f72b | 870 | { |
04e044c4 | 871 | GdkWindow *window = gtk_tree_view_get_bin_window(m_treeview); |
4a46cbe8 | 872 | if (window) |
f03fc89f | 873 | { |
08f60019 | 874 | m_backgroundColour.CalcPixel( gdk_drawable_get_colormap( window ) ); |
f03fc89f VZ |
875 | gdk_window_set_background( window, m_backgroundColour.GetColor() ); |
876 | gdk_window_clear( window ); | |
877 | } | |
e380f72b | 878 | } |
9dc44eff | 879 | #endif |
ff8bfdbb | 880 | |
9dc44eff | 881 | GTKApplyStyle(GTK_WIDGET(m_treeview), style); |
68dda785 | 882 | } |
dcf924a3 | 883 | |
f68586e5 VZ |
884 | wxSize wxListBox::DoGetBestSize() const |
885 | { | |
4a46cbe8 RR |
886 | wxCHECK_MSG(m_treeview, wxDefaultSize, wxT("invalid tree view")); |
887 | ||
cdff1318 | 888 | // Start with a minimum size that's not too small |
f96b15a3 | 889 | int cx, cy; |
2b5f62a0 | 890 | GetTextExtent( wxT("X"), &cx, &cy); |
47179317 | 891 | int lbWidth = 0; |
c64371de | 892 | int lbHeight = 10; |
cdff1318 | 893 | |
47179317 VZ |
894 | // Find the widest string. |
895 | const unsigned int count = GetCount(); | |
896 | if ( count ) | |
cdff1318 RD |
897 | { |
898 | int wLine; | |
47179317 VZ |
899 | for ( unsigned int i = 0; i < count; i++ ) |
900 | { | |
901 | GetTextExtent(GetString(i), &wLine, NULL); | |
902 | if ( wLine > lbWidth ) | |
903 | lbWidth = wLine; | |
cdff1318 | 904 | } |
47179317 | 905 | } |
cdff1318 | 906 | |
47179317 | 907 | lbWidth += 3 * cx; |
cdff1318 | 908 | |
47179317 VZ |
909 | // And just a bit more for the checkbox if present and then some |
910 | // (these are rough guesses) | |
470402b9 | 911 | #if wxUSE_CHECKLISTBOX |
47179317 VZ |
912 | if ( m_hasCheckBoxes ) |
913 | { | |
914 | lbWidth += 35; | |
915 | cy = cy > 25 ? cy : 25; // rough height of checkbox | |
cdff1318 | 916 | } |
47179317 | 917 | #endif |
caf6e6de | 918 | |
cdff1318 RD |
919 | // Add room for the scrollbar |
920 | lbWidth += wxSystemSettings::GetMetric(wxSYS_VSCROLL_X); | |
f96b15a3 | 921 | |
47179317 VZ |
922 | // Don't make the listbox too tall but don't make it too small neither |
923 | lbHeight = (cy+4) * wxMin(wxMax(count, 3), 10); | |
924 | ||
9f884528 | 925 | wxSize best(lbWidth, lbHeight); |
17a1ebd1 | 926 | CacheBestSize(best); |
9f884528 | 927 | return best; |
f68586e5 VZ |
928 | } |
929 | ||
9d522606 RD |
930 | // static |
931 | wxVisualAttributes | |
932 | wxListBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
933 | { | |
7fff16b8 | 934 | return GetDefaultAttributesFromGTKWidget(gtk_tree_view_new(), true); |
9d522606 RD |
935 | } |
936 | ||
3ae4c570 | 937 | #endif // wxUSE_LISTBOX |