]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/listbox.cpp
mac paths updated
[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
470402b9 122 if (listbox->HasFlag(wxLB_MULTIPLE) || listbox->HasFlag(wxLB_EXTENDED))
159b66c0 123 {
05d790f8 124 listbox->CalcAndSendEvent();
470402b9
RR
125 }
126 else
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;
fd0eed64 424 if (style & wxLB_MULTIPLE)
4a82abc8 425 {
fd0eed64 426 mode = GTK_SELECTION_MULTIPLE;
4a82abc8 427 }
fd0eed64 428 else if (style & wxLB_EXTENDED)
4a82abc8 429 {
fd0eed64 430 mode = GTK_SELECTION_EXTENDED;
4a82abc8
RR
431 }
432 else
433 {
434 // if style was 0 set single mode
435 m_windowStyle |= wxLB_SINGLE;
4fcfa27c 436 mode = GTK_SELECTION_SINGLE;
4a82abc8 437 }
6a6d4eed 438
1e6ffd66 439 GtkTreeSelection* selection = gtk_tree_view_get_selection( m_treeview );
4a46cbe8
RR
440 gtk_tree_selection_set_mode( selection, mode );
441
470402b9 442 // Handle sortable stuff
a236aa20 443 if(HasFlag(wxLB_SORT))
4a46cbe8 444 {
470402b9 445 // Setup sorting in ascending (wx) order
caf6e6de
WS
446 gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(m_liststore),
447 WXLISTBOX_DATACOLUMN,
4a46cbe8
RR
448 GTK_SORT_ASCENDING);
449
470402b9 450 // Set the sort callback
4a46cbe8
RR
451 gtk_tree_sortable_set_sort_func(GTK_TREE_SORTABLE(m_liststore),
452 WXLISTBOX_DATACOLUMN,
453 (GtkTreeIterCompareFunc) gtk_listbox_sort_callback,
454 this, //userdata
455 NULL //"destroy notifier"
456 );
457 }
458
dcf40a56 459
dcd3c79c 460 gtk_container_add (GTK_CONTAINER (m_widget), GTK_WIDGET(m_treeview) );
caf6e6de 461
4a46cbe8 462 gtk_widget_show( GTK_WIDGET(m_treeview) );
0bb3fc29 463 m_focusWidget = GTK_WIDGET(m_treeview);
dcf40a56 464
a236aa20 465 Append(n, choices); // insert initial items
17a1ebd1 466
470402b9
RR
467 // generate dclick events
468 g_signal_connect_after(m_treeview, "row-activated",
4a46cbe8 469 G_CALLBACK(gtk_listbox_row_activated_callback), this);
2ee3ee1b 470
a625c5b6
RR
471 // for intercepting dclick generation by <ENTER>
472 g_signal_connect (m_treeview, "key_press_event",
473 G_CALLBACK (gtk_listbox_key_press_callback),
474 this);
f03fc89f 475 m_parent->DoAddChild( this );
ff8bfdbb 476
abdeb9e7 477 PostCreation(size);
170acdc9 478 SetInitialSize(size); // need this too because this is a wxControlWithItems
dcf40a56 479
1e6ffd66
RR
480 g_signal_connect_after (selection, "changed",
481 G_CALLBACK (gtk_listitem_changed_callback), this);
482
caf6e6de 483 return true;
6de97a3b 484}
c801d85f 485
fd0eed64 486wxListBox::~wxListBox()
c801d85f 487{
caf6e6de 488 m_hasVMT = false;
4a82abc8 489
caaa4cfd 490 Clear();
6de97a3b 491}
c801d85f 492
1e6ffd66
RR
493void wxListBox::GtkDisableEvents()
494{
495 GtkTreeSelection* selection = gtk_tree_view_get_selection( m_treeview );
496
497 g_signal_handlers_block_by_func(selection,
498 (gpointer) gtk_listitem_changed_callback, this);
499}
500
501void wxListBox::GtkEnableEvents()
502{
503 GtkTreeSelection* selection = gtk_tree_view_get_selection( m_treeview );
504
505 g_signal_handlers_unblock_by_func(selection,
506 (gpointer) gtk_listitem_changed_callback, this);
507
05d790f8 508 UpdateOldSelections();
1e6ffd66
RR
509}
510
8161b5b9
VZ
511// ----------------------------------------------------------------------------
512// adding items
513// ----------------------------------------------------------------------------
514
a236aa20
VZ
515int wxListBox::DoInsertItems(const wxArrayStringsAdapter& items,
516 unsigned int pos,
517 void **clientData,
cfe8a907 518 wxClientDataType type)
bb0ca8df 519{
a236aa20 520 wxCHECK_MSG( m_treeview != NULL, wxNOT_FOUND, wxT("invalid listbox") );
2ee3ee1b 521
9f884528
RD
522 InvalidateBestSize();
523
2eb1512a
MR
524 GtkTreeIter* pIter = NULL; // append by default
525 GtkTreeIter iter;
a236aa20 526 if ( pos != GetCount() )
bb0ca8df 527 {
a236aa20 528 wxCHECK_MSG( GtkGetIteratorFor(pos, &iter), wxNOT_FOUND,
0d5f4ba3 529 wxT("internal wxListBox error in insertion") );
bb0ca8df 530
4a46cbe8 531 pIter = &iter;
bb0ca8df 532 }
2ee3ee1b 533
a236aa20
VZ
534 const unsigned int numItems = items.GetCount();
535 for ( unsigned int i = 0; i < numItems; ++i )
2ee3ee1b 536 {
4a46cbe8 537 GtkTreeEntry* entry = gtk_tree_entry_new();
a236aa20 538 gtk_tree_entry_set_label(entry, wxGTK_CONV(items[i]));
caf6e6de 539 gtk_tree_entry_set_destroy_func(entry,
4a46cbe8 540 (GtkTreeEntryDestroy)gtk_tree_entry_destroy_cb,
9fa72bd2 541 this);
dcf40a56 542
4a46cbe8
RR
543 GtkTreeIter itercur;
544 gtk_list_store_insert_before(m_liststore, &itercur, pIter);
c9433ea9 545
0d5f4ba3 546 GtkSetItem(itercur, entry);
fd0eed64 547
0d5f4ba3 548 g_object_unref (entry);
cfe8a907
PC
549
550 if (clientData)
551 AssignNewItemClientData(GtkGetIndexFor(itercur), clientData, i, type);
4a46cbe8 552 }
17a1ebd1 553
bc60925f
RR
554 UpdateOldSelections();
555
a236aa20 556 return pos + numItems - 1;
fd0eed64 557}
dcf40a56 558
2ee3ee1b 559// ----------------------------------------------------------------------------
8161b5b9 560// deleting items
2ee3ee1b 561// ----------------------------------------------------------------------------
ff8bfdbb 562
a236aa20 563void wxListBox::DoClear()
fd0eed64 564{
4a46cbe8 565 wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") );
fc54776e 566
2154130c
RR
567 GtkDisableEvents(); // just in case
568
cdff1318
RD
569 InvalidateBestSize();
570
4a46cbe8 571 gtk_list_store_clear( m_liststore ); /* well, THAT was easy :) */
2154130c
RR
572
573 GtkEnableEvents();
6de97a3b 574}
c801d85f 575
a236aa20 576void wxListBox::DoDeleteOneItem(unsigned int n)
c801d85f 577{
4a46cbe8 578 wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") );
fc54776e 579
cdff1318
RD
580 InvalidateBestSize();
581
2154130c
RR
582 GtkDisableEvents(); // just in case
583
4a46cbe8 584 GtkTreeIter iter;
0d5f4ba3 585 wxCHECK_RET( GtkGetIteratorFor(n, &iter), wxT("wrong listbox index") );
dcf40a56 586
0d5f4ba3
VZ
587 // this returns false if iter is invalid (e.g. deleting item at end) but
588 // since we don't use iter, we ignore the return value
4a46cbe8 589 gtk_list_store_remove(m_liststore, &iter);
2154130c
RR
590
591 GtkEnableEvents();
4a46cbe8 592}
dcf40a56 593
4a46cbe8 594// ----------------------------------------------------------------------------
0d5f4ba3 595// helper functions for working with iterators
4a46cbe8 596// ----------------------------------------------------------------------------
2ee3ee1b 597
0d5f4ba3 598bool wxListBox::GtkGetIteratorFor(unsigned pos, GtkTreeIter *iter) const
4a46cbe8 599{
0d5f4ba3
VZ
600 if ( !gtk_tree_model_iter_nth_child(GTK_TREE_MODEL(m_liststore),
601 iter, NULL, pos) )
4a46cbe8 602 {
0d5f4ba3
VZ
603 wxLogDebug(wxT("gtk_tree_model_iter_nth_child(%u) failed"), pos);
604 return false;
f5e27805 605 }
ff8bfdbb 606
0d5f4ba3
VZ
607 return true;
608}
609
610int wxListBox::GtkGetIndexFor(GtkTreeIter& iter) const
611{
612 GtkTreePath *path =
613 gtk_tree_model_get_path(GTK_TREE_MODEL(m_liststore), &iter);
614
615 gint* pIntPath = gtk_tree_path_get_indices(path);
616
617 wxCHECK_MSG( pIntPath, wxNOT_FOUND, _T("failed to get iterator path") );
618
619 int idx = pIntPath[0];
620
621 gtk_tree_path_free( path );
622
623 return idx;
624}
625
626// get GtkTreeEntry from position (note: you need to g_unref it if valid)
627GtkTreeEntry *wxListBox::GtkGetEntry(unsigned n) const
628{
629 GtkTreeIter iter;
630 if ( !GtkGetIteratorFor(n, &iter) )
631 return NULL;
632
4a46cbe8
RR
633
634 GtkTreeEntry* entry = NULL;
635 gtk_tree_model_get(GTK_TREE_MODEL(m_liststore), &iter,
636 WXLISTBOX_DATACOLUMN, &entry, -1);
637
638 return entry;
2ee3ee1b
VZ
639}
640
0d5f4ba3
VZ
641void wxListBox::GtkSetItem(GtkTreeIter& iter, const GtkTreeEntry *entry)
642{
643#if wxUSE_CHECKLISTBOX
644 if ( m_hasCheckBoxes )
645 {
646 gtk_list_store_set(m_liststore, &iter,
647 0, FALSE, // FALSE == not toggled
648 1, entry,
649 -1);
650 }
651 else
652#endif // wxUSE_CHECKLISTBOX
653 {
654 gtk_list_store_set(m_liststore, &iter, 0, entry, -1);
655 }
656}
657
8161b5b9
VZ
658// ----------------------------------------------------------------------------
659// client data
660// ----------------------------------------------------------------------------
661
aa61d352 662void* wxListBox::DoGetItemClientData(unsigned int n) const
8161b5b9 663{
aa61d352 664 wxCHECK_MSG( IsValid(n), NULL,
4a46cbe8 665 wxT("Invalid index passed to GetItemClientData") );
8161b5b9 666
4a46cbe8
RR
667 GtkTreeEntry* entry = GtkGetEntry(n);
668 wxCHECK_MSG(entry, NULL, wxT("could not get entry"));
8161b5b9 669
4a46cbe8 670 void* userdata = gtk_tree_entry_get_userdata( entry );
3fe39b0c 671 g_object_unref (entry);
4a46cbe8 672 return userdata;
8161b5b9
VZ
673}
674
aa61d352 675void wxListBox::DoSetItemClientData(unsigned int n, void* clientData)
8161b5b9 676{
aa61d352 677 wxCHECK_RET( IsValid(n),
4a46cbe8 678 wxT("Invalid index passed to SetItemClientData") );
8161b5b9 679
4a46cbe8
RR
680 GtkTreeEntry* entry = GtkGetEntry(n);
681 wxCHECK_RET(entry, wxT("could not get entry"));
8161b5b9 682
4a46cbe8 683 gtk_tree_entry_set_userdata( entry, clientData );
3fe39b0c 684 g_object_unref (entry);
8161b5b9
VZ
685}
686
2ee3ee1b
VZ
687// ----------------------------------------------------------------------------
688// string list access
689// ----------------------------------------------------------------------------
690
33c6e437 691void wxListBox::SetString(unsigned int n, const wxString& label)
2ee3ee1b 692{
8228b893 693 wxCHECK_RET( IsValid(n), wxT("invalid index in wxListBox::SetString") );
4a46cbe8 694 wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") );
2ee3ee1b 695
4a46cbe8
RR
696 GtkTreeEntry* entry = GtkGetEntry(n);
697 wxCHECK_RET( entry, wxT("wrong listbox index") );
2ee3ee1b 698
33c6e437
VZ
699 // update the item itself
700 gtk_tree_entry_set_label(entry, wxGTK_CONV(label));
4a46cbe8 701
33c6e437
VZ
702 // and update the model which will refresh the tree too
703 GtkTreeIter iter;
0d5f4ba3 704 wxCHECK_RET( GtkGetIteratorFor(n, &iter), _T("failed to get iterator") );
4a46cbe8 705
0d5f4ba3
VZ
706 // FIXME: this resets the checked status of a wxCheckListBox item
707
708 GtkSetItem(iter, entry);
6de97a3b 709}
c801d85f 710
aa61d352 711wxString wxListBox::GetString(unsigned int n) const
c801d85f 712{
4a46cbe8 713 wxCHECK_MSG( m_treeview != NULL, wxEmptyString, wxT("invalid listbox") );
fc54776e 714
4a46cbe8
RR
715 GtkTreeEntry* entry = GtkGetEntry(n);
716 wxCHECK_MSG( entry, wxEmptyString, wxT("wrong listbox index") );
717
718 wxString label = wxGTK_CONV_BACK( gtk_tree_entry_get_label(entry) );
2ee3ee1b 719
3fe39b0c 720 g_object_unref (entry);
4a46cbe8 721 return label;
2ee3ee1b
VZ
722}
723
aa61d352 724unsigned int wxListBox::GetCount() const
2ee3ee1b 725{
8228b893 726 wxCHECK_MSG( m_treeview != NULL, 0, wxT("invalid listbox") );
2ee3ee1b 727
aa61d352 728 return (unsigned int)gtk_tree_model_iter_n_children(GTK_TREE_MODEL(m_liststore), NULL);
6de97a3b 729}
c801d85f 730
11e62fe6 731int wxListBox::FindString( const wxString &item, bool bCase ) const
c801d85f 732{
4a46cbe8 733 wxCHECK_MSG( m_treeview != NULL, wxNOT_FOUND, wxT("invalid listbox") );
ff8bfdbb 734
4a46cbe8 735 //Sort of hackish - maybe there is a faster way
aa61d352 736 unsigned int nCount = wxListBox::GetCount();
ff8bfdbb 737
aa61d352 738 for(unsigned int i = 0; i < nCount; ++i)
4a46cbe8
RR
739 {
740 if( item.IsSameAs( wxListBox::GetString(i), bCase ) )
8228b893 741 return (int)i;
fd0eed64
RR
742 }
743
dcf40a56 744
4a46cbe8 745 // it's not an error if the string is not found -> no wxCHECK
2ee3ee1b 746 return wxNOT_FOUND;
6de97a3b 747}
c801d85f 748
2ee3ee1b
VZ
749// ----------------------------------------------------------------------------
750// selection
751// ----------------------------------------------------------------------------
752
fd0eed64 753int wxListBox::GetSelection() const
c801d85f 754{
e6e83933
WS
755 wxCHECK_MSG( m_treeview != NULL, wxNOT_FOUND, wxT("invalid listbox"));
756 wxCHECK_MSG( HasFlag(wxLB_SINGLE), wxNOT_FOUND,
4a46cbe8 757 wxT("must be single selection listbox"));
ff8bfdbb 758
caf6e6de 759 GtkTreeIter iter;
4a46cbe8
RR
760 GtkTreeSelection* selection = gtk_tree_view_get_selection(m_treeview);
761
caf6e6de 762 // only works on single-sel
4a46cbe8 763 if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
e6e83933 764 return wxNOT_FOUND;
4a46cbe8 765
0d5f4ba3 766 return GtkGetIndexFor(iter);
6de97a3b 767}
c801d85f 768
fd0eed64 769int wxListBox::GetSelections( wxArrayInt& aSelections ) const
c801d85f 770{
e6e83933 771 wxCHECK_MSG( m_treeview != NULL, wxNOT_FOUND, wxT("invalid listbox") );
c801d85f 772
fd0eed64
RR
773 aSelections.Empty();
774
05d790f8 775 int i = 0;
caf6e6de 776 GtkTreeIter iter;
4a46cbe8
RR
777 GtkTreeSelection* selection = gtk_tree_view_get_selection(m_treeview);
778
779 if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(m_liststore), &iter))
780 { //gtk_tree_selection_get_selected_rows is GTK 2.2+ so iter instead
781 do
fd0eed64 782 {
4a46cbe8
RR
783 if (gtk_tree_selection_iter_is_selected(selection, &iter))
784 aSelections.Add(i);
785
786 i++;
787 } while(gtk_tree_model_iter_next(GTK_TREE_MODEL(m_liststore), &iter));
6a6d4eed 788 }
dcf40a56 789
4a46cbe8 790 return aSelections.GetCount();
6de97a3b 791}
c801d85f 792
2ee3ee1b 793bool wxListBox::IsSelected( int n ) const
c801d85f 794{
caf6e6de 795 wxCHECK_MSG( m_treeview != NULL, false, wxT("invalid listbox") );
ff8bfdbb 796
4a46cbe8 797 GtkTreeSelection* selection = gtk_tree_view_get_selection(m_treeview);
9ef6ff8c 798
4a46cbe8 799 GtkTreeIter iter;
0d5f4ba3 800 wxCHECK_MSG( GtkGetIteratorFor(n, &iter), false, wxT("Invalid index") );
9ef6ff8c 801
4a46cbe8 802 return gtk_tree_selection_iter_is_selected(selection, &iter);
6de97a3b 803}
c801d85f 804
c6179a84 805void wxListBox::DoSetSelection( int n, bool select )
c801d85f 806{
1e6ffd66
RR
807 wxCHECK_RET( m_treeview != NULL, wxT("invalid listbox") );
808
809 GtkDisableEvents();
810
811 GtkTreeSelection* selection = gtk_tree_view_get_selection(m_treeview);
812
ef33382e
VZ
813 // passing -1 to SetSelection() is documented to deselect all items
814 if ( n == wxNOT_FOUND )
815 {
1e6ffd66
RR
816 gtk_tree_selection_unselect_all(selection);
817 GtkEnableEvents();
470402b9 818 return;
ef33382e
VZ
819 }
820
821 wxCHECK_RET( IsValid(n), wxT("invalid index in wxListBox::SetSelection") );
822
1e6ffd66 823
4a46cbe8 824 GtkTreeIter iter;
0d5f4ba3 825 wxCHECK_RET( GtkGetIteratorFor(n, &iter), wxT("Invalid index") );
ff8bfdbb 826
fd0eed64 827 if (select)
4a46cbe8 828 gtk_tree_selection_select_iter(selection, &iter);
fd0eed64 829 else
4a46cbe8 830 gtk_tree_selection_unselect_iter(selection, &iter);
e4161a2a 831
0b2e06f9
RR
832 GtkTreePath* path = gtk_tree_model_get_path(
833 GTK_TREE_MODEL(m_liststore), &iter);
834
835 gtk_tree_view_scroll_to_cell(m_treeview, path, NULL, FALSE, 0.0f, 0.0f);
836
837 gtk_tree_path_free(path);
014b0d06 838
1e6ffd66
RR
839 GtkEnableEvents();
840}
841
0d29a482 842void wxListBox::DoScrollToCell(int n, float alignY, float alignX)
c801d85f 843{
4a46cbe8 844 wxCHECK_RET( m_treeview, wxT("invalid listbox") );
8228b893 845 wxCHECK_RET( IsValid(n), wxT("invalid index"));
9ef6ff8c 846
4a46cbe8
RR
847 //RN: I have no idea why this line is needed...
848 if (gdk_pointer_is_grabbed () && GTK_WIDGET_HAS_GRAB (m_treeview))
9ef6ff8c 849 return;
f96b15a3 850
28354d90 851 GtkTreeIter iter;
0d5f4ba3
VZ
852 if ( !GtkGetIteratorFor(n, &iter) )
853 return;
4a46cbe8 854
28354d90
VZ
855 GtkTreePath* path = gtk_tree_model_get_path(
856 GTK_TREE_MODEL(m_liststore), &iter);
9ef6ff8c 857
28354d90
VZ
858 // Scroll to the desired cell (0.0 == topleft alignment)
859 gtk_tree_view_scroll_to_cell(m_treeview, path, NULL,
0d29a482 860 TRUE, alignY, alignX);
4a46cbe8 861
28354d90 862 gtk_tree_path_free(path);
6de97a3b 863}
c801d85f 864
0d29a482
VZ
865void wxListBox::DoSetFirstItem(int n)
866{
867 DoScrollToCell(n, 0, 0);
868}
869
870void wxListBox::EnsureVisible(int n)
871{
872 DoScrollToCell(n, 0.5, 0);
873}
874
c00fed0e
VZ
875// ----------------------------------------------------------------------------
876// hittest
877// ----------------------------------------------------------------------------
878
57772185 879int wxListBox::DoListHitTest(const wxPoint& point) const
c00fed0e 880{
a183ddba
VZ
881 // gtk_tree_view_get_path_at_pos() also gets items that are not visible and
882 // we only want visible items we need to check for it manually here
22a35096 883 if ( !GetClientRect().Contains(point) )
a183ddba
VZ
884 return wxNOT_FOUND;
885
57772185 886 // need to translate from master window since it is in client coords
c00fed0e 887 gint binx, biny;
caf6e6de 888 gdk_window_get_geometry(gtk_tree_view_get_bin_window(m_treeview),
c00fed0e
VZ
889 &binx, &biny, NULL, NULL, NULL);
890
891 GtkTreePath* path;
57772185
VZ
892 if ( !gtk_tree_view_get_path_at_pos
893 (
caf6e6de 894 m_treeview,
57772185
VZ
895 point.x - binx,
896 point.y - biny,
897 &path,
898 NULL, // [out] column (always 0 here)
899 NULL, // [out] x-coord relative to the cell (not interested)
900 NULL // [out] y-coord relative to the cell
901 ) )
c00fed0e
VZ
902 {
903 return wxNOT_FOUND;
904 }
905
906 int index = gtk_tree_path_get_indices(path)[0];
907 gtk_tree_path_free(path);
908
909 return index;
910}
4a46cbe8 911
2ee3ee1b
VZ
912// ----------------------------------------------------------------------------
913// helpers
914// ----------------------------------------------------------------------------
c801d85f 915
ff8bfdbb 916#if wxUSE_TOOLTIPS
6e5f6c7c 917void wxListBox::ApplyToolTip( GtkTooltips *tips, const gchar *tip )
b1170810 918{
4a46cbe8 919 // RN: Is this needed anymore?
6e5f6c7c 920 gtk_tooltips_set_tip( tips, GTK_WIDGET( m_treeview ), tip, (gchar*) NULL );
b1170810 921}
ff8bfdbb 922#endif // wxUSE_TOOLTIPS
b1170810 923
fd0eed64 924GtkWidget *wxListBox::GetConnectWidget()
e3e65dac 925{
e5e41cfe
VZ
926 // the correct widget for listbox events (such as mouse clicks for example)
927 // is m_treeview, not the parent scrolled window
928 return GTK_WIDGET(m_treeview);
6de97a3b 929}
e3e65dac 930
1c2b98d6 931GdkWindow *wxListBox::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
868a2826 932{
1c2b98d6 933 return gtk_tree_view_get_bin_window(m_treeview);
868a2826 934}
e3e65dac 935
f40fdaa3 936void wxListBox::DoApplyWidgetStyle(GtkRcStyle *style)
c058d771 937{
f40fdaa3 938 if (m_hasBgCol && m_backgroundColour.Ok())
e380f72b 939 {
04e044c4 940 GdkWindow *window = gtk_tree_view_get_bin_window(m_treeview);
4a46cbe8 941 if (window)
f03fc89f 942 {
08f60019 943 m_backgroundColour.CalcPixel( gdk_drawable_get_colormap( window ) );
f03fc89f
VZ
944 gdk_window_set_background( window, m_backgroundColour.GetColor() );
945 gdk_window_clear( window );
946 }
e380f72b 947 }
ff8bfdbb 948
4a46cbe8 949 gtk_widget_modify_style( GTK_WIDGET(m_treeview), style );
68dda785 950}
dcf924a3 951
f68586e5
VZ
952wxSize wxListBox::DoGetBestSize() const
953{
4a46cbe8
RR
954 wxCHECK_MSG(m_treeview, wxDefaultSize, wxT("invalid tree view"));
955
cdff1318 956 // Start with a minimum size that's not too small
f96b15a3 957 int cx, cy;
2b5f62a0 958 GetTextExtent( wxT("X"), &cx, &cy);
47179317 959 int lbWidth = 0;
c64371de 960 int lbHeight = 10;
cdff1318 961
47179317
VZ
962 // Find the widest string.
963 const unsigned int count = GetCount();
964 if ( count )
cdff1318
RD
965 {
966 int wLine;
47179317
VZ
967 for ( unsigned int i = 0; i < count; i++ )
968 {
969 GetTextExtent(GetString(i), &wLine, NULL);
970 if ( wLine > lbWidth )
971 lbWidth = wLine;
cdff1318 972 }
47179317 973 }
cdff1318 974
47179317 975 lbWidth += 3 * cx;
cdff1318 976
47179317
VZ
977 // And just a bit more for the checkbox if present and then some
978 // (these are rough guesses)
470402b9 979#if wxUSE_CHECKLISTBOX
47179317
VZ
980 if ( m_hasCheckBoxes )
981 {
982 lbWidth += 35;
983 cy = cy > 25 ? cy : 25; // rough height of checkbox
cdff1318 984 }
47179317 985#endif
caf6e6de 986
cdff1318
RD
987 // Add room for the scrollbar
988 lbWidth += wxSystemSettings::GetMetric(wxSYS_VSCROLL_X);
f96b15a3 989
47179317
VZ
990 // Don't make the listbox too tall but don't make it too small neither
991 lbHeight = (cy+4) * wxMin(wxMax(count, 3), 10);
992
9f884528 993 wxSize best(lbWidth, lbHeight);
17a1ebd1 994 CacheBestSize(best);
9f884528 995 return best;
f68586e5
VZ
996}
997
9d522606
RD
998// static
999wxVisualAttributes
1000wxListBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
1001{
4a46cbe8 1002 return GetDefaultAttributesFromGTKWidget(gtk_tree_view_new, true);
9d522606
RD
1003}
1004
3ae4c570 1005#endif // wxUSE_LISTBOX