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