1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/choice.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
14 #include "wx/choice.h"
15 #include "wx/arrstr.h"
17 #include "wx/gtk/private.h"
19 //-----------------------------------------------------------------------------
21 //-----------------------------------------------------------------------------
23 extern void wxapp_install_idle_handler();
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 extern bool g_blockEventsOnDrag
;
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
37 static void gtk_choice_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxChoice
*choice
)
40 wxapp_install_idle_handler();
42 if (!choice
->m_hasVMT
) return;
44 if (g_blockEventsOnDrag
) return;
46 int selection
= wxNOT_FOUND
;
48 selection
= gtk_option_menu_get_history( GTK_OPTION_MENU(choice
->GetHandle()) );
50 choice
->m_selection_hack
= selection
;
52 wxCommandEvent
event(wxEVT_COMMAND_CHOICE_SELECTED
, choice
->GetId() );
53 int n
= choice
->GetSelection();
56 event
.SetString( choice
->GetStringSelection() );
57 event
.SetEventObject(choice
);
59 if ( choice
->HasClientObjectData() )
60 event
.SetClientObject( choice
->GetClientObject(n
) );
61 else if ( choice
->HasClientUntypedData() )
62 event
.SetClientData( choice
->GetClientData(n
) );
64 choice
->GetEventHandler()->ProcessEvent(event
);
68 //-----------------------------------------------------------------------------
70 //-----------------------------------------------------------------------------
72 IMPLEMENT_DYNAMIC_CLASS(wxChoice
,wxControl
)
76 m_strings
= (wxSortedArrayString
*)NULL
;
79 bool wxChoice::Create( wxWindow
*parent
, wxWindowID id
,
80 const wxPoint
&pos
, const wxSize
&size
,
81 const wxArrayString
& choices
,
82 long style
, const wxValidator
& validator
,
83 const wxString
&name
)
85 wxCArrayString
chs(choices
);
87 return Create( parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
88 style
, validator
, name
);
91 bool wxChoice::Create( wxWindow
*parent
, wxWindowID id
,
92 const wxPoint
&pos
, const wxSize
&size
,
93 int n
, const wxString choices
[],
94 long style
, const wxValidator
& validator
, const wxString
&name
)
97 #if (GTK_MINOR_VERSION > 0)
98 m_acceptsFocus
= true;
101 if (!PreCreation( parent
, pos
, size
) ||
102 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
104 wxFAIL_MSG( wxT("wxChoice creation failed") );
108 m_widget
= gtk_option_menu_new();
110 if ( style
& wxCB_SORT
)
112 // if our m_strings != NULL, DoAppend() will check for it and insert
113 // items in the correct order
114 m_strings
= new wxSortedArrayString
;
117 // begin with no selection
118 m_selection_hack
= wxNOT_FOUND
;
120 GtkWidget
*menu
= gtk_menu_new();
122 for (int i
= 0; i
< n
; i
++)
124 GtkAddHelper(menu
, i
, choices
[i
]);
127 gtk_option_menu_set_menu( GTK_OPTION_MENU(m_widget
), menu
);
129 m_parent
->DoAddChild( this );
132 SetBestSize(size
); // need this too because this is a wxControlWithItems
137 wxChoice::~wxChoice()
144 int wxChoice::DoAppend( const wxString
&item
)
146 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid choice control") );
148 GtkWidget
*menu
= gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) );
150 return GtkAddHelper(menu
, GetCount(), item
);
153 int wxChoice::DoInsert( const wxString
&item
, int pos
)
155 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid choice control") );
156 wxCHECK_MSG( (pos
>=0) && (pos
<=GetCount()), -1, wxT("invalid index"));
158 if (pos
== GetCount())
159 return DoAppend(item
);
161 GtkWidget
*menu
= gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) );
163 // if the item to insert is at or before the selection, and the selection is valid
164 if ((pos
<= m_selection_hack
) && (m_selection_hack
!= wxNOT_FOUND
))
166 // move the selection forward one
170 return GtkAddHelper(menu
, pos
, item
);
173 void wxChoice::DoSetItemClientData( int n
, void* clientData
)
175 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice control") );
177 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
178 wxCHECK_RET( node
, wxT("invalid index in wxChoice::DoSetItemClientData") );
180 node
->SetData( (wxObject
*) clientData
);
183 void* wxChoice::DoGetItemClientData( int n
) const
185 wxCHECK_MSG( m_widget
!= NULL
, NULL
, wxT("invalid choice control") );
187 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
188 wxCHECK_MSG( node
, NULL
, wxT("invalid index in wxChoice::DoGetItemClientData") );
190 return node
->GetData();
193 void wxChoice::DoSetItemClientObject( int n
, wxClientData
* clientData
)
195 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice control") );
197 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
198 wxCHECK_RET( node
, wxT("invalid index in wxChoice::DoSetItemClientObject") );
200 // wxItemContainer already deletes data for us
202 node
->SetData( (wxObject
*) clientData
);
205 wxClientData
* wxChoice::DoGetItemClientObject( int n
) const
207 wxCHECK_MSG( m_widget
!= NULL
, (wxClientData
*) NULL
, wxT("invalid choice control") );
209 wxList::compatibility_iterator node
= m_clientList
.Item( n
);
210 wxCHECK_MSG( node
, (wxClientData
*)NULL
,
211 wxT("invalid index in wxChoice::DoGetItemClientObject") );
213 return (wxClientData
*) node
->GetData();
216 void wxChoice::Clear()
218 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice") );
220 gtk_option_menu_remove_menu( GTK_OPTION_MENU(m_widget
) );
221 GtkWidget
*menu
= gtk_menu_new();
222 gtk_option_menu_set_menu( GTK_OPTION_MENU(m_widget
), menu
);
224 if ( HasClientObjectData() )
226 // destroy the data (due to Robert's idea of using wxList<wxObject>
227 // and not wxList<wxClientData> we can't just say
228 // m_clientList.DeleteContents(true) - this would crash!
229 wxList::compatibility_iterator node
= m_clientList
.GetFirst();
232 delete (wxClientData
*)node
->GetData();
233 node
= node
->GetNext();
236 m_clientList
.Clear();
241 // begin with no selection
242 m_selection_hack
= wxNOT_FOUND
;
245 void wxChoice::Delete( int n
)
247 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice") );
249 // VZ: apparently GTK+ doesn't have a built-in function to do it (not even
250 // in 2.0), hence this dumb implementation -- still better than nothing
254 wxCHECK_RET( n
>= 0 && n
< count
, _T("invalid index in wxChoice::Delete") );
256 // if the item to delete is before the selection, and the selection is valid
257 if ((n
< m_selection_hack
) && (m_selection_hack
!= wxNOT_FOUND
))
259 // move the selection back one
262 else if (n
== m_selection_hack
)
264 // invalidate the selection
265 m_selection_hack
= wxNOT_FOUND
;
268 const bool hasClientData
= m_clientDataItemsType
!= wxClientData_None
;
269 const bool hasObjectData
= m_clientDataItemsType
== wxClientData_Object
;
271 wxList::compatibility_iterator node
= m_clientList
.GetFirst();
274 wxArrayPtrVoid itemsData
;
276 for ( i
= 0; i
< count
; i
++ )
280 items
.Add(GetString(i
));
283 // also save the client data
284 itemsData
.Add(node
->GetData());
287 else // need to delete the client object too
291 delete (wxClientData
*)node
->GetData();
297 node
= node
->GetNext();
303 // prevent Clear() from destroying all client data
304 m_clientDataItemsType
= wxClientData_None
;
309 for ( i
= 0; i
< count
- 1; i
++ )
314 SetClientObject(i
, (wxClientData
*)itemsData
[i
]);
315 else if ( hasClientData
)
316 SetClientData(i
, itemsData
[i
]);
320 int wxChoice::FindString( const wxString
&string
, bool bCase
) const
322 wxCHECK_MSG( m_widget
!= NULL
, wxNOT_FOUND
, wxT("invalid choice") );
324 // If you read this code once and you think you understand
325 // it, then you are very wrong. Robert Roebling.
327 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) ) );
329 GList
*child
= menu_shell
->children
;
332 GtkBin
*bin
= GTK_BIN( child
->data
);
333 GtkLabel
*label
= (GtkLabel
*) NULL
;
335 label
= GTK_LABEL(bin
->child
);
337 label
= GTK_LABEL(GTK_BIN(m_widget
)->child
);
339 wxASSERT_MSG( label
!= NULL
, wxT("wxChoice: invalid label") );
341 wxString
tmp( wxGTK_CONV_BACK( gtk_label_get_text( label
) ) );
342 if (string
.IsSameAs( tmp
, bCase
))
352 int wxChoice::GetSelection() const
354 wxCHECK_MSG( m_widget
!= NULL
, wxNOT_FOUND
, wxT("invalid choice") );
356 return m_selection_hack
;
360 void wxChoice::SetString( int n
, const wxString
& str
)
362 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice") );
364 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) ) );
366 GList
*child
= menu_shell
->children
;
369 GtkBin
*bin
= GTK_BIN( child
->data
);
372 GtkLabel
*label
= (GtkLabel
*) NULL
;
374 label
= GTK_LABEL(bin
->child
);
376 label
= GTK_LABEL(GTK_BIN(m_widget
)->child
);
378 wxASSERT_MSG( label
!= NULL
, wxT("wxChoice: invalid label") );
380 gtk_label_set_text( label
, wxGTK_CONV( str
) );
389 wxString
wxChoice::GetString( int n
) const
391 wxCHECK_MSG( m_widget
!= NULL
, wxEmptyString
, wxT("invalid choice") );
393 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) ) );
395 GList
*child
= menu_shell
->children
;
398 GtkBin
*bin
= GTK_BIN( child
->data
);
401 GtkLabel
*label
= (GtkLabel
*) NULL
;
403 label
= GTK_LABEL(bin
->child
);
405 label
= GTK_LABEL(GTK_BIN(m_widget
)->child
);
407 wxASSERT_MSG( label
!= NULL
, wxT("wxChoice: invalid label") );
409 return wxString( wxGTK_CONV_BACK( gtk_label_get_text( label
) ) );
415 wxFAIL_MSG( wxT("wxChoice: invalid index in GetString()") );
417 return wxEmptyString
;
420 int wxChoice::GetCount() const
422 wxCHECK_MSG( m_widget
!= NULL
, 0, wxT("invalid choice") );
424 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) ) );
426 GList
*child
= menu_shell
->children
;
435 void wxChoice::SetSelection( int n
)
437 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid choice") );
440 gtk_option_menu_set_history( GTK_OPTION_MENU(m_widget
), (gint
)tmp
);
442 // set the local selection variable manually
443 if ((n
>= 0) && (n
< GetCount()))
445 // a valid selection has been made
446 m_selection_hack
= n
;
448 else if ((n
== wxNOT_FOUND
) || (GetCount() == 0))
450 // invalidates the selection if there are no items
451 // or if it is specifically set to wxNOT_FOUND
452 m_selection_hack
= wxNOT_FOUND
;
456 // this selects the first item by default if the selection is out of bounds
457 m_selection_hack
= 0;
461 void wxChoice::DoApplyWidgetStyle(GtkRcStyle
*style
)
463 GtkMenuShell
*menu_shell
= GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget
) ) );
465 gtk_widget_modify_style( m_widget
, style
);
466 gtk_widget_modify_style( GTK_WIDGET( menu_shell
), style
);
468 GList
*child
= menu_shell
->children
;
471 gtk_widget_modify_style( GTK_WIDGET( child
->data
), style
);
473 GtkBin
*bin
= GTK_BIN( child
->data
);
474 GtkWidget
*label
= (GtkWidget
*) NULL
;
478 label
= GTK_BIN(m_widget
)->child
;
480 gtk_widget_modify_style( label
, style
);
486 int wxChoice::GtkAddHelper(GtkWidget
*menu
, int pos
, const wxString
& item
)
488 wxCHECK_MSG((pos
>=0) && (pos
<=(int)m_clientList
.GetCount()), -1, wxT("invalid index"));
490 GtkWidget
*menu_item
= gtk_menu_item_new_with_label( wxGTK_CONV( item
) );
495 // sorted control, need to insert at the correct index
496 index
= m_strings
->Add(item
);
498 gtk_menu_shell_insert( GTK_MENU_SHELL(menu
), menu_item
, index
);
502 m_clientList
.Insert( m_clientList
.Item(index
- 1),
507 m_clientList
.Insert( (wxObject
*) NULL
);
512 // don't call wxChoice::GetCount() from here because it doesn't work
513 // if we're called from ctor (and GtkMenuShell is still NULL)
515 // normal control, just append
516 if (pos
== (int)m_clientList
.GetCount())
518 gtk_menu_shell_append( GTK_MENU_SHELL(menu
), menu_item
);
519 m_clientList
.Append( (wxObject
*) NULL
);
520 index
= m_clientList
.GetCount() - 1;
524 gtk_menu_shell_insert( GTK_MENU_SHELL(menu
), menu_item
, pos
);
525 m_clientList
.Insert( pos
, (wxObject
*) NULL
);
530 if (GTK_WIDGET_REALIZED(m_widget
))
532 gtk_widget_realize( menu_item
);
533 gtk_widget_realize( GTK_BIN(menu_item
)->child
);
538 // The best size of a wxChoice should probably
539 // be changed everytime the control has been
540 // changed, but at least after adding an item
541 // it has to change. Adapted from Matt Ownby.
542 InvalidateBestSize();
544 g_signal_connect_after (menu_item
, "activate",
545 G_CALLBACK (gtk_choice_clicked_callback
),
548 gtk_widget_show( menu_item
);
550 // return the index of the item in the control
554 wxSize
wxChoice::DoGetBestSize() const
556 wxSize
ret( wxControl::DoGetBestSize() );
558 // we know better our horizontal extent: it depends on the longest string
564 size_t count
= GetCount();
565 for ( size_t n
= 0; n
< count
; n
++ )
567 GetTextExtent( GetString(n
), &width
, NULL
, NULL
, NULL
);
572 // add extra for the choice "=" button
574 // VZ: I don't know how to get the right value, it seems to be in
575 // GtkOptionMenuProps struct from gtkoptionmenu.c but we can't get
576 // to it - maybe we can use gtk_option_menu_size_request() for this
579 // This default value works only for the default GTK+ theme (i.e.
580 // no theme at all) (FIXME)
581 static const int widthChoiceIndicator
= 35;
582 ret
.x
+= widthChoiceIndicator
;
585 // but not less than the minimal width
589 // If this request_size is called with no entries then
590 // the returned height is wrong. Give it a reasonable
593 ret
.y
= 8 + GetCharHeight();
599 bool wxChoice::IsOwnGtkWindow( GdkWindow
*window
)
601 return GTK_BUTTON(m_widget
)->event_window
;
606 wxChoice::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
608 return GetDefaultAttributesFromGTKWidget(gtk_option_menu_new
);
612 #endif // wxUSE_CHOICE