1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk1/choice.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #include "wx/wxprec.h"
14 #include "wx/choice.h"
17 #include "wx/arrstr.h"
20 #include "wx/gtk1/private.h"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 extern void wxapp_install_idle_handler();
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 extern bool g_blockEventsOnDrag
;
35 //-----------------------------------------------------------------------------
37 //-----------------------------------------------------------------------------
40 static void gtk_choice_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxChoice
*choice
)
43 wxapp_install_idle_handler();
45 if (!choice
->m_hasVMT
) return;
47 if (g_blockEventsOnDrag
) return;
49 int selection
= wxNOT_FOUND
;
51 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(choice
->GetHandle()) ) );
54 GList
*child
= menu_shell
->children
;
57 GtkBin
*bin
= GTK_BIN( child
->data
);
67 choice
->m_selection_hack
= selection
;
69 wxCommandEvent
event(wxEVT_COMMAND_CHOICE_SELECTED
, choice
->GetId() );
70 int n
= choice
->GetSelection();
73 event
.SetString( choice
->GetStringSelection() );
74 event
.SetEventObject(choice
);
76 if ( choice
->HasClientObjectData() )
77 event
.SetClientObject( choice
->GetClientObject(n
) );
78 else if ( choice
->HasClientUntypedData() )
79 event
.SetClientData( choice
->GetClientData(n
) );
81 choice
->GetEventHandler()->ProcessEvent(event
);
85 //-----------------------------------------------------------------------------
87 //-----------------------------------------------------------------------------
89 IMPLEMENT_DYNAMIC_CLASS(wxChoice
,wxControl
)
93 m_strings
= (wxSortedArrayString
*)NULL
;
96 bool wxChoice::Create( wxWindow
*parent
, wxWindowID id
,
97 const wxPoint
&pos
, const wxSize
&size
,
98 const wxArrayString
& choices
,
99 long style
, const wxValidator
& validator
,
100 const wxString
&name
)
102 wxCArrayString
chs(choices
);
104 return Create( parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
105 style
, validator
, name
);
108 bool wxChoice::Create( wxWindow
*parent
, wxWindowID id
,
109 const wxPoint
&pos
, const wxSize
&size
,
110 int n
, const wxString choices
[],
111 long style
, const wxValidator
& validator
, const wxString
&name
)
114 #if (GTK_MINOR_VERSION > 0)
115 m_acceptsFocus
= true;
118 if (!PreCreation( parent
, pos
, size
) ||
119 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
121 wxFAIL_MSG( wxT("wxChoice creation failed") );
125 m_widget
= gtk_option_menu_new();
127 if ( style
& wxCB_SORT
)
129 // if our m_strings != NULL, DoAppend() will check for it and insert
130 // items in the correct order
131 m_strings
= new wxSortedArrayString
;
134 // begin with no selection
135 m_selection_hack
= wxNOT_FOUND
;
137 GtkWidget
*menu
= gtk_menu_new();
139 for (unsigned int i
= 0; i
< (unsigned int)n
; i
++)
141 GtkAddHelper(menu
, i
, choices
[i
]);
144 gtk_option_menu_set_menu( GTK_OPTION_MENU(m_widget
), menu
);
146 m_parent
->DoAddChild( this );
149 SetBestSize(size
); // need this too because this is a wxControlWithItems
154 wxChoice::~wxChoice()
161 int wxChoice::DoAppend( const wxString
&item
)
163 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid choice control") );
165 GtkWidget
*menu
= gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) );
167 return GtkAddHelper(menu
, GetCount(), item
);
170 int wxChoice::DoInsert( const wxString
&item
, unsigned int pos
)
172 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid choice control") );
173 wxCHECK_MSG( IsValidInsert(pos
), -1, wxT("invalid index"));
175 if (pos
== GetCount())
176 return DoAppend(item
);
178 GtkWidget
*menu
= gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) );
180 // if the item to insert is at or before the selection, and the selection is valid
181 if (((int)pos
<= m_selection_hack
) && (m_selection_hack
!= wxNOT_FOUND
))
183 // move the selection forward one
187 return GtkAddHelper(menu
, pos
, item
);
190 void wxChoice::DoSetItemClientData(unsigned int n
, void* clientData
)
192 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice control") );
194 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
195 wxCHECK_RET( node
, wxT("invalid index in wxChoice::DoSetItemClientData") );
197 node
->SetData( (wxObject
*) clientData
);
200 void* wxChoice::DoGetItemClientData(unsigned int n
) const
202 wxCHECK_MSG( m_widget
!= NULL
, NULL
, wxT("invalid choice control") );
204 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
205 wxCHECK_MSG( node
, NULL
, wxT("invalid index in wxChoice::DoGetItemClientData") );
207 return node
->GetData();
210 void wxChoice::DoSetItemClientObject(unsigned int n
, wxClientData
* clientData
)
212 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice control") );
214 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
215 wxCHECK_RET( node
, wxT("invalid index in wxChoice::DoSetItemClientObject") );
217 // wxItemContainer already deletes data for us
219 node
->SetData( (wxObject
*) clientData
);
222 wxClientData
* wxChoice::DoGetItemClientObject(unsigned int n
) const
224 wxCHECK_MSG( m_widget
!= NULL
, (wxClientData
*) NULL
, wxT("invalid choice control") );
226 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
227 wxCHECK_MSG( node
, (wxClientData
*)NULL
,
228 wxT("invalid index in wxChoice::DoGetItemClientObject") );
230 return (wxClientData
*) node
->GetData();
233 void wxChoice::Clear()
235 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice") );
237 gtk_option_menu_remove_menu( GTK_OPTION_MENU(m_widget
) );
238 GtkWidget
*menu
= gtk_menu_new();
239 gtk_option_menu_set_menu( GTK_OPTION_MENU(m_widget
), menu
);
241 if ( HasClientObjectData() )
243 // destroy the data (due to Robert's idea of using wxList<wxObject>
244 // and not wxList<wxClientData> we can't just say
245 // m_clientList.DeleteContents(true) - this would crash!
246 wxList::compatibility_iterator node
= m_clientList
.GetFirst();
249 delete (wxClientData
*)node
->GetData();
250 node
= node
->GetNext();
253 m_clientList
.Clear();
258 // begin with no selection
259 m_selection_hack
= wxNOT_FOUND
;
262 void wxChoice::Delete(unsigned int n
)
264 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice") );
266 // VZ: apparently GTK+ doesn't have a built-in function to do it (not even
267 // in 2.0), hence this dumb implementation -- still better than nothing
269 unsigned int count
= GetCount();
271 wxCHECK_RET( IsValid(n
), _T("invalid index in wxChoice::Delete") );
273 // if the item to delete is before the selection, and the selection is valid
274 if (((int)n
< m_selection_hack
) && (m_selection_hack
!= wxNOT_FOUND
))
276 // move the selection back one
279 else if ((int)n
== m_selection_hack
)
281 // invalidate the selection
282 m_selection_hack
= wxNOT_FOUND
;
285 const bool hasClientData
= m_clientDataItemsType
!= wxClientData_None
;
286 const bool hasObjectData
= m_clientDataItemsType
== wxClientData_Object
;
288 wxList::compatibility_iterator node
= m_clientList
.GetFirst();
291 wxArrayPtrVoid itemsData
;
293 for ( i
= 0; i
< count
; i
++ )
297 items
.Add(GetString(i
));
300 // also save the client data
301 itemsData
.Add(node
->GetData());
304 else // need to delete the client object too
308 delete (wxClientData
*)node
->GetData();
314 node
= node
->GetNext();
320 // prevent Clear() from destroying all client data
321 m_clientDataItemsType
= wxClientData_None
;
326 for ( i
= 0; i
< count
- 1; i
++ )
331 SetClientObject(i
, (wxClientData
*)itemsData
[i
]);
332 else if ( hasClientData
)
333 SetClientData(i
, itemsData
[i
]);
337 int wxChoice::FindString( const wxString
&string
, bool bCase
) const
339 wxCHECK_MSG( m_widget
!= NULL
, wxNOT_FOUND
, wxT("invalid choice") );
341 // If you read this code once and you think you understand
342 // it, then you are very wrong. Robert Roebling.
344 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) ) );
346 GList
*child
= menu_shell
->children
;
349 GtkBin
*bin
= GTK_BIN( child
->data
);
350 GtkLabel
*label
= (GtkLabel
*) NULL
;
352 label
= GTK_LABEL(bin
->child
);
354 label
= GTK_LABEL( BUTTON_CHILD(m_widget
) );
356 wxASSERT_MSG( label
!= NULL
, wxT("wxChoice: invalid label") );
358 wxString
tmp( label
->label
);
360 if (string
.IsSameAs( tmp
, bCase
))
370 int wxChoice::GetSelection() const
372 wxCHECK_MSG( m_widget
!= NULL
, wxNOT_FOUND
, wxT("invalid choice") );
374 return m_selection_hack
;
378 void wxChoice::SetString(unsigned int n
, const wxString
& str
)
380 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice") );
382 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) ) );
383 unsigned int count
= 0;
384 GList
*child
= menu_shell
->children
;
387 GtkBin
*bin
= GTK_BIN( child
->data
);
390 GtkLabel
*label
= (GtkLabel
*) NULL
;
392 label
= GTK_LABEL(bin
->child
);
394 label
= GTK_LABEL( BUTTON_CHILD(m_widget
) );
396 wxASSERT_MSG( label
!= NULL
, wxT("wxChoice: invalid label") );
398 gtk_label_set_text( label
, wxGTK_CONV( str
) );
407 wxString
wxChoice::GetString(unsigned int n
) const
409 wxCHECK_MSG( m_widget
!= NULL
, wxEmptyString
, wxT("invalid choice") );
411 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) ) );
412 unsigned int count
= 0;
413 GList
*child
= menu_shell
->children
;
416 GtkBin
*bin
= GTK_BIN( child
->data
);
419 GtkLabel
*label
= (GtkLabel
*) NULL
;
421 label
= GTK_LABEL(bin
->child
);
423 label
= GTK_LABEL( BUTTON_CHILD(m_widget
) );
425 wxASSERT_MSG( label
!= NULL
, wxT("wxChoice: invalid label") );
427 return wxString( label
->label
);
433 wxFAIL_MSG( wxT("wxChoice: invalid index in GetString()") );
435 return wxEmptyString
;
438 unsigned int wxChoice::GetCount() const
440 wxCHECK_MSG( m_widget
!= NULL
, 0, wxT("invalid choice") );
442 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) ) );
443 unsigned int count
= 0;
444 GList
*child
= menu_shell
->children
;
453 void wxChoice::SetSelection( int n
)
455 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice") );
458 gtk_option_menu_set_history( GTK_OPTION_MENU(m_widget
), (gint
)tmp
);
460 // set the local selection variable manually
461 if (IsValid((unsigned int)n
))
463 // a valid selection has been made
464 m_selection_hack
= n
;
466 else if ((n
== wxNOT_FOUND
) || (GetCount() == 0))
468 // invalidates the selection if there are no items
469 // or if it is specifically set to wxNOT_FOUND
470 m_selection_hack
= wxNOT_FOUND
;
474 // this selects the first item by default if the selection is out of bounds
475 m_selection_hack
= 0;
479 void wxChoice::DoApplyWidgetStyle(GtkRcStyle
*style
)
481 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) ) );
483 gtk_widget_modify_style( m_widget
, style
);
484 gtk_widget_modify_style( GTK_WIDGET( menu_shell
), style
);
486 GList
*child
= menu_shell
->children
;
489 gtk_widget_modify_style( GTK_WIDGET( child
->data
), style
);
491 GtkBin
*bin
= GTK_BIN( child
->data
);
492 GtkWidget
*label
= (GtkWidget
*) NULL
;
496 label
= BUTTON_CHILD(m_widget
);
498 gtk_widget_modify_style( label
, style
);
504 int wxChoice::GtkAddHelper(GtkWidget
*menu
, unsigned int pos
, const wxString
& item
)
506 wxCHECK_MSG(pos
<=m_clientList
.GetCount(), -1, wxT("invalid index"));
508 GtkWidget
*menu_item
= gtk_menu_item_new_with_label( wxGTK_CONV( item
) );
513 // sorted control, need to insert at the correct index
514 index
= m_strings
->Add(item
);
516 gtk_menu_insert( GTK_MENU(menu
), menu_item
, index
);
520 m_clientList
.Insert( m_clientList
.Item(index
- 1),
525 m_clientList
.Insert( (wxObject
*) NULL
);
530 // don't call wxChoice::GetCount() from here because it doesn't work
531 // if we're called from ctor (and GtkMenuShell is still NULL)
533 // normal control, just append
534 if (pos
== m_clientList
.GetCount())
536 gtk_menu_append( GTK_MENU(menu
), menu_item
);
537 m_clientList
.Append( (wxObject
*) NULL
);
538 index
= m_clientList
.GetCount() - 1;
542 gtk_menu_insert( GTK_MENU(menu
), menu_item
, pos
);
543 m_clientList
.Insert( pos
, (wxObject
*) NULL
);
548 if (GTK_WIDGET_REALIZED(m_widget
))
550 gtk_widget_realize( menu_item
);
551 gtk_widget_realize( GTK_BIN(menu_item
)->child
);
556 // The best size of a wxChoice should probably
557 // be changed everytime the control has been
558 // changed, but at least after adding an item
559 // it has to change. Adapted from Matt Ownby.
560 InvalidateBestSize();
562 gtk_signal_connect_after( GTK_OBJECT( menu_item
), "activate",
563 GTK_SIGNAL_FUNC(gtk_choice_clicked_callback
), (gpointer
*)this );
565 gtk_widget_show( menu_item
);
567 // return the index of the item in the control
571 wxSize
wxChoice::DoGetBestSize() const
573 wxSize
ret( wxControl::DoGetBestSize() );
575 // we know better our horizontal extent: it depends on the longest string
581 unsigned int count
= GetCount();
582 for ( unsigned int n
= 0; n
< count
; n
++ )
584 GetTextExtent(GetString(n
), &width
, NULL
, NULL
, NULL
);
589 // add extra for the choice "=" button
591 // VZ: I don't know how to get the right value, it seems to be in
592 // GtkOptionMenuProps struct from gtkoptionmenu.c but we can't get
593 // to it - maybe we can use gtk_option_menu_size_request() for this
596 // This default value works only for the default GTK+ theme (i.e.
597 // no theme at all) (FIXME)
598 static const int widthChoiceIndicator
= 35;
599 ret
.x
+= widthChoiceIndicator
;
602 // but not less than the minimal width
606 // If this request_size is called with no entries then
607 // the returned height is wrong. Give it a reasonable
610 ret
.y
= 8 + GetCharHeight();
616 bool wxChoice::IsOwnGtkWindow( GdkWindow
*window
)
618 return (window
== m_widget
->window
);
623 wxChoice::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
625 return GetDefaultAttributesFromGTKWidget(gtk_option_menu_new
);
629 #endif // wxUSE_CHOICE