X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6de97a3b945c99fb942209df48be26f43c1b436d..e55ad60e195f1007db921b2a73a3cac98ed9df65:/src/gtk/menu.cpp diff --git a/src/gtk/menu.cpp b/src/gtk/menu.cpp index 35832b897f..7bf133ec47 100644 --- a/src/gtk/menu.cpp +++ b/src/gtk/menu.cpp @@ -27,7 +27,7 @@ wxMenuBar::wxMenuBar() { m_needParent = FALSE; // hmmm - PreCreation( NULL, -1, wxDefaultPosition, wxDefaultSize, 0, "menu" ); + PreCreation( (wxWindow *) NULL, -1, wxDefaultPosition, wxDefaultSize, 0, "menu" ); m_menus.DeleteContents( TRUE ); @@ -150,7 +150,7 @@ bool wxMenuBar::Enabled( int id ) const } //----------------------------------------------------------------------------- -// wxMenu +// "activate" //----------------------------------------------------------------------------- static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu ) @@ -161,7 +161,7 @@ static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu ) if (!menu->IsEnabled(id)) return; - wxCommandEvent event( wxEVENT_TYPE_MENU_COMMAND, id ); + wxCommandEvent event( wxEVT_COMMAND_MENU_SELECTED, id ); event.SetEventObject( menu ); event.SetInt(id ); @@ -177,6 +177,40 @@ static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu ) if (win) win->GetEventHandler()->ProcessEvent( event ); } +//----------------------------------------------------------------------------- +// "select" +//----------------------------------------------------------------------------- + +static void gtk_menu_hilight_callback( GtkWidget *widget, wxMenu *menu ) +{ + int id = menu->FindMenuIdByMenuItem(widget); + + wxASSERT( id != -1 ); // should find it! + + if (!menu->IsEnabled(id)) return; + + wxCommandEvent event( wxEVT_MENU_HIGHLIGHT, id ); + event.SetEventObject( menu ); + event.SetInt(id ); + +/* wxMSW doesn't call callback here either + if (menu->m_callback) + { + (void) (*(menu->m_callback)) (*menu, event); + return; + } +*/ + + if (menu->GetEventHandler()->ProcessEvent(event)) return; + + wxWindow *win = menu->GetInvokingWindow(); + if (win) win->GetEventHandler()->ProcessEvent( event ); +} + +//----------------------------------------------------------------------------- +// wxMenu +//----------------------------------------------------------------------------- + IMPLEMENT_DYNAMIC_CLASS(wxMenuItem,wxObject) wxMenuItem::wxMenuItem() @@ -185,8 +219,8 @@ wxMenuItem::wxMenuItem() m_isCheckMenu = FALSE; m_isChecked = FALSE; m_isEnabled = TRUE; - m_subMenu = NULL; - m_menuItem = NULL; + m_subMenu = (wxMenu *) NULL; + m_menuItem = (GtkWidget *) NULL; } void wxMenuItem::SetText(const wxString& str) @@ -202,12 +236,18 @@ void wxMenuItem::SetText(const wxString& str) void wxMenuItem::Check( bool check ) { - wxCHECK_RET( IsCheckable(), _("Can't check uncheckable item!") ) + wxCHECK_RET( IsCheckable(), "Can't check uncheckable item!" ) m_isChecked = check; gtk_check_menu_item_set_state( (GtkCheckMenuItem*)m_menuItem, (gint)check ); } +void wxMenuItem::Enable( bool enable ) +{ + gtk_widget_set_sensitive( m_menuItem, enable ); + m_isEnabled = enable; +} + bool wxMenuItem::IsChecked() const { wxCHECK( IsCheckable(), FALSE ); // can't get state of uncheckable item! @@ -225,7 +265,7 @@ wxMenu::wxMenu( const wxString& title, const wxFunction func ) { m_title = title; m_items.DeleteContents( TRUE ); - m_invokingWindow = NULL; + m_invokingWindow = (wxWindow *) NULL; m_menu = gtk_menu_new(); // Do not show! m_callback = func; m_eventHandler = this; @@ -237,6 +277,17 @@ wxMenu::wxMenu( const wxString& title, const wxFunction func ) } } +void wxMenu::SetTitle( const wxString& title ) +{ + // Waiting for something better. + m_title = title; +} + +const wxString wxMenu::GetTitle() const +{ + return m_title; +} + void wxMenu::AppendSeparator() { wxMenuItem *mitem = new wxMenuItem(); @@ -254,17 +305,22 @@ void wxMenu::Append( int id, const wxString &item, const wxString &helpStr, bool wxMenuItem *mitem = new wxMenuItem(); mitem->SetId(id); mitem->SetText(item); - mitem->SetHelpString(helpStr); + mitem->SetHelp(helpStr); mitem->SetCheckable(checkable); const char *text = mitem->GetText(); GtkWidget *menuItem = checkable ? gtk_check_menu_item_new_with_label(text) : gtk_menu_item_new_with_label(text); + mitem->SetMenuItem(menuItem); gtk_signal_connect( GTK_OBJECT(menuItem), "activate", GTK_SIGNAL_FUNC(gtk_menu_clicked_callback), (gpointer*)this ); + gtk_signal_connect( GTK_OBJECT(menuItem), "select", + GTK_SIGNAL_FUNC(gtk_menu_hilight_callback), + (gpointer*)this ); + gtk_menu_append( GTK_MENU(m_menu), menuItem ); gtk_widget_show( menuItem ); m_items.Append( mitem ); @@ -277,7 +333,7 @@ void wxMenu::Append( int id, const wxString &text, wxMenu *subMenu, const wxStri mitem->SetText(text); GtkWidget *menuItem = gtk_menu_item_new_with_label(mitem->GetText()); - mitem->SetHelpString(helpStr); + mitem->SetHelp(helpStr); mitem->SetMenuItem(menuItem); mitem->SetSubMenu(subMenu); @@ -344,10 +400,30 @@ bool wxMenu::IsChecked( int id ) const void wxMenu::SetLabel( int id, const wxString &label ) { wxMenuItem *item = FindItem(id); - if ( item ) + if (item) item->SetText(label); } +wxString wxMenu::GetLabel( int id ) const +{ + wxMenuItem *item = FindItem(id); + if (item) return item->GetText(); + return ""; +} + +void wxMenu::SetHelpString( int id, const wxString& helpString ) +{ + wxMenuItem *item = FindItem(id); + if (item) item->SetHelp( helpString ); +} + +wxString wxMenu::GetHelpString( int id ) const +{ + wxMenuItem *item = FindItem(id); + if (item) return item->GetHelp(); + return ""; +} + int wxMenu::FindMenuIdByMenuItem( GtkWidget *menuItem ) const { wxNode *node = m_items.First(); @@ -372,9 +448,9 @@ wxMenuItem *wxMenu::FindItem(int id) const node = node->Next(); } - wxLogDebug(_("wxMenu::FindItem: item %d not found."), id); + wxLogDebug( "wxMenu::FindItem: item %d not found.", id); - return NULL; + return (wxMenuItem *) NULL; } void wxMenu::SetInvokingWindow( wxWindow *win )