1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "listbox.h"
16 #include "wx/dynarray.h"
17 #include "wx/listbox.h"
21 //-----------------------------------------------------------------------------
23 //-----------------------------------------------------------------------------
25 extern bool g_blockEventsOnDrag
;
27 //-----------------------------------------------------------------------------
28 // "select" and "deselect"
29 //-----------------------------------------------------------------------------
31 static void gtk_listitem_select_callback( GtkWidget
*WXUNUSED(widget
), wxListBox
*listbox
)
33 if (!listbox
->HasVMT()) return;
34 if (g_blockEventsOnDrag
) return;
36 wxCommandEvent
event(wxEVT_COMMAND_LISTBOX_SELECTED
, listbox
->GetId() );
38 wxArrayInt aSelections
;
39 int count
= listbox
->GetSelections(aSelections
);
42 event
.m_commandInt
= aSelections
[0] ;
43 event
.m_clientData
= listbox
->GetClientData(event
.m_commandInt
);
44 wxString
str(listbox
->GetString(event
.m_commandInt
));
46 event
.m_commandString
= copystring((char *)(const char *)str
);
50 event
.m_commandInt
= -1 ;
51 event
.m_commandString
= copystring("") ;
54 event
.SetEventObject( listbox
);
56 listbox
->GetEventHandler()->ProcessEvent( event
);
57 if (event
.m_commandString
) delete[] event
.m_commandString
;
60 //-----------------------------------------------------------------------------
62 //-----------------------------------------------------------------------------
64 IMPLEMENT_DYNAMIC_CLASS(wxListBox
,wxControl
)
66 wxListBox::wxListBox(void)
68 m_list
= (GtkList
*) NULL
;
71 bool wxListBox::Create( wxWindow
*parent
, wxWindowID id
,
72 const wxPoint
&pos
, const wxSize
&size
,
73 int n
, const wxString choices
[],
74 long style
, const wxValidator
& validator
, const wxString
&name
)
78 PreCreation( parent
, id
, pos
, size
, style
, name
);
80 SetValidator( validator
);
82 m_widget
= gtk_scrolled_window_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
83 gtk_scrolled_window_set_policy( GTK_SCROLLED_WINDOW(m_widget
),
84 GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
86 m_list
= GTK_LIST( gtk_list_new() );
88 GtkSelectionMode mode
= GTK_SELECTION_BROWSE
;
89 if (style
& wxLB_MULTIPLE
)
90 mode
= GTK_SELECTION_MULTIPLE
;
91 else if (style
& wxLB_EXTENDED
)
92 mode
= GTK_SELECTION_EXTENDED
;
94 gtk_list_set_selection_mode( GTK_LIST(m_list
), mode
);
96 gtk_container_add (GTK_CONTAINER(m_widget
), GTK_WIDGET(m_list
) );
97 gtk_widget_show( GTK_WIDGET(m_list
) );
99 wxSize newSize
= size
;
100 if (newSize
.x
== -1) newSize
.x
= 100;
101 if (newSize
.y
== -1) newSize
.y
= 110;
102 SetSize( newSize
.x
, newSize
.y
);
104 for (int i
= 0; i
< n
; i
++)
106 GtkWidget
*list_item
;
107 list_item
= gtk_list_item_new_with_label( choices
[i
] );
109 gtk_container_add( GTK_CONTAINER(m_list
), list_item
);
111 gtk_signal_connect( GTK_OBJECT(list_item
), "select",
112 GTK_SIGNAL_FUNC(gtk_listitem_select_callback
), (gpointer
)this );
114 if (style
& wxLB_MULTIPLE
)
115 gtk_signal_connect( GTK_OBJECT(list_item
), "deselect",
116 GTK_SIGNAL_FUNC(gtk_listitem_select_callback
), (gpointer
)this );
118 m_clientData
.Append( (wxObject
*)NULL
);
120 gtk_widget_show( list_item
);
125 gtk_widget_realize( GTK_WIDGET(m_list
) );
132 void wxListBox::Append( const wxString
&item
)
134 Append( item
, (char*)NULL
);
137 void wxListBox::Append( const wxString
&item
, char *clientData
)
139 GtkWidget
*list_item
= gtk_list_item_new_with_label( item
);
143 GtkBin
*bin
= GTK_BIN( list_item
);
144 gtk_widget_set_style( bin
->child
,
146 gtk_widget_get_style( m_widget
) ) );
149 gtk_signal_connect( GTK_OBJECT(list_item
), "select",
150 GTK_SIGNAL_FUNC(gtk_listitem_select_callback
), (gpointer
)this );
152 if (GetWindowStyleFlag() & wxLB_MULTIPLE
)
153 gtk_signal_connect( GTK_OBJECT(list_item
), "deselect",
154 GTK_SIGNAL_FUNC(gtk_listitem_select_callback
), (gpointer
)this );
156 m_clientData
.Append( (wxObject
*)clientData
);
158 gtk_container_add( GTK_CONTAINER(m_list
), list_item
);
160 gtk_widget_show( list_item
);
162 ConnectWidget( list_item
);
164 ConnectDnDWidget( list_item
);
168 void wxListBox::Clear(void)
170 gtk_list_clear_items( m_list
, 0, Number() );
172 m_clientData
.Clear();
175 void wxListBox::Delete( int n
)
177 GList
*child
= g_list_nth( m_list
->children
, n
);
181 wxFAIL_MSG("wrong listbox index");
185 GList
*list
= g_list_append( NULL
, child
->data
);
186 gtk_list_remove_items( m_list
, list
);
189 wxNode
*node
= m_clientData
.Nth( n
);
192 wxFAIL_MSG("wrong listbox index");
195 m_clientData
.DeleteNode( node
);
198 void wxListBox::Deselect( int n
)
200 gtk_list_unselect_item( m_list
, n
);
203 int wxListBox::FindString( const wxString
&item
) const
205 GList
*child
= m_list
->children
;
209 GtkBin
*bin
= GTK_BIN( child
->data
);
210 GtkLabel
*label
= GTK_LABEL( bin
->child
);
211 if (item
== label
->label
) return count
;
216 // it's not an error if the string is not found - this function may be used to
217 // test for existence of the string in the listbox, so don't give any
218 // errors/assert failures.
223 char *wxListBox::GetClientData( int n
) const
225 wxNode
*node
= m_clientData
.Nth( n
);
226 if (node
) return ((char*)node
->Data());
228 wxFAIL_MSG("wrong listbox index");
229 return (char *) NULL
;
232 int wxListBox::GetSelection(void) const
234 GList
*child
= m_list
->children
;
238 if (GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
) return count
;
245 int wxListBox::GetSelections(wxArrayInt
& aSelections
) const
247 // get the number of selected items first
248 GList
*child
= m_list
->children
;
250 for ( child
= m_list
->children
; child
!= NULL
; child
= child
->next
)
252 if ( GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
260 aSelections
.Alloc(count
); // optimization attempt
262 for ( child
= m_list
->children
; child
!= NULL
; child
= child
->next
, i
++ )
264 if ( GTK_WIDGET(child
->data
)->state
== GTK_STATE_SELECTED
)
272 wxString
wxListBox::GetString( int n
) const
274 GList
*child
= g_list_nth( m_list
->children
, n
);
277 GtkBin
*bin
= GTK_BIN( child
->data
);
278 GtkLabel
*label
= GTK_LABEL( bin
->child
);
281 wxFAIL_MSG("wrong listbox index");
285 wxString
wxListBox::GetStringSelection(void) const
287 GList
*selection
= m_list
->selection
;
290 GtkBin
*bin
= GTK_BIN( selection
->data
);
291 wxString tmp
= GTK_LABEL( bin
->child
)->label
;
294 wxFAIL_MSG("no listbox selection available");
298 int wxListBox::Number(void)
300 GList
*child
= m_list
->children
;
302 while (child
) { count
++; child
= child
->next
; }
306 bool wxListBox::Selected( int n
)
308 GList
*target
= g_list_nth( m_list
->children
, n
);
311 GList
*child
= m_list
->selection
;
314 if (child
->data
== target
->data
) return TRUE
;
318 wxFAIL_MSG("wrong listbox index");
322 void wxListBox::Set( int WXUNUSED(n
), const wxString
*WXUNUSED(choices
) )
324 wxFAIL_MSG("wxListBox::Set not implemented");
327 void wxListBox::SetClientData( int n
, char *clientData
)
329 wxNode
*node
= m_clientData
.Nth( n
);
332 node
->SetData( (wxObject
*)clientData
);
336 wxFAIL_MSG("wrong listbox index");
340 void wxListBox::SetFirstItem( int WXUNUSED(n
) )
342 wxFAIL_MSG("wxListBox::SetFirstItem not implemented");
345 void wxListBox::SetFirstItem( const wxString
&WXUNUSED(item
) )
347 wxFAIL_MSG("wxListBox::SetFirstItem not implemented");
350 void wxListBox::SetSelection( int n
, bool select
)
353 gtk_list_select_item( m_list
, n
);
355 gtk_list_unselect_item( m_list
, n
);
358 void wxListBox::SetString( int n
, const wxString
&string
)
360 GList
*child
= g_list_nth( m_list
->children
, n
);
363 GtkBin
*bin
= GTK_BIN( child
->data
);
364 GtkLabel
*label
= GTK_LABEL( bin
->child
);
365 gtk_label_set( label
, string
);
369 wxFAIL_MSG("wrong listbox index");
373 void wxListBox::SetStringSelection( const wxString
&string
, bool select
)
375 SetSelection( FindString(string
), select
);
378 int wxListBox::GetIndex( GtkWidget
*item
) const
382 GList
*child
= m_list
->children
;
386 if (GTK_WIDGET(child
->data
) == item
) return count
;
394 void wxListBox::SetDropTarget( wxDropTarget
*dropTarget
)
396 GList
*child
= m_list
->children
;
399 DisconnectDnDWidget( GTK_WIDGET( child
->data
) );
403 wxWindow::SetDropTarget( dropTarget
);
405 child
= m_list
->children
;
408 ConnectDnDWidget( GTK_WIDGET( child
->data
) );
413 GtkWidget
*wxListBox::GetConnectWidget(void)
415 return GTK_WIDGET(m_list
);
418 void wxListBox::SetFont( const wxFont
&font
)
420 wxWindow::SetFont( font
);
422 GList
*child
= m_list
->children
;
425 GtkBin
*bin
= (GtkBin
*) child
->data
;
426 gtk_widget_set_style( bin
->child
,
428 gtk_widget_get_style( m_widget
) ) );
433 bool wxListBox::IsOwnGtkWindow( GdkWindow
*window
)
435 if (wxWindow::IsOwnGtkWindow( window
)) return TRUE
;
437 GList
*child
= m_list
->children
;
440 GtkBin
*bin
= (GtkBin
*) child
->data
;
441 if (bin
->child
->window
== window
) return TRUE
;