From: Vadim Zeitlin Date: Thu, 20 Sep 2012 20:02:02 +0000 (+0000) Subject: Add wxRibbonButtonBarEvent::GetButton(). X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7f08b8283b9ad93aca84a69a4091094c50f44940 Add wxRibbonButtonBarEvent::GetButton(). Allow to retrieve the button associated with the given button bar event. See #14630. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72528 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/ribbon/buttonbar.h b/include/wx/ribbon/buttonbar.h index 5028143817..7334d4d14b 100644 --- a/include/wx/ribbon/buttonbar.h +++ b/include/wx/ribbon/buttonbar.h @@ -195,25 +195,30 @@ class WXDLLIMPEXP_RIBBON wxRibbonButtonBarEvent : public wxCommandEvent public: wxRibbonButtonBarEvent(wxEventType command_type = wxEVT_NULL, int win_id = 0, - wxRibbonButtonBar* bar = NULL) + wxRibbonButtonBar* bar = NULL, + wxRibbonButtonBarButtonBase* button = NULL) : wxCommandEvent(command_type, win_id) - , m_bar(bar) + , m_bar(bar), m_button(button) { } #ifndef SWIG wxRibbonButtonBarEvent(const wxRibbonButtonBarEvent& e) : wxCommandEvent(e) { m_bar = e.m_bar; + m_button = e.m_button; } #endif wxEvent *Clone() const { return new wxRibbonButtonBarEvent(*this); } wxRibbonButtonBar* GetBar() {return m_bar;} + wxRibbonButtonBarButtonBase *GetButton() { return m_button; } void SetBar(wxRibbonButtonBar* bar) {m_bar = bar;} + void SetButton(wxRibbonButtonBarButtonBase* button) { m_button = button; } bool PopupMenu(wxMenu* menu); protected: wxRibbonButtonBar* m_bar; + wxRibbonButtonBarButtonBase *m_button; #ifndef SWIG private: diff --git a/interface/wx/ribbon/buttonbar.h b/interface/wx/ribbon/buttonbar.h index 05e23634d9..9b2aa1fdba 100644 --- a/interface/wx/ribbon/buttonbar.h +++ b/interface/wx/ribbon/buttonbar.h @@ -484,7 +484,8 @@ public: */ wxRibbonButtonBarEvent(wxEventType command_type = wxEVT_NULL, int win_id = 0, - wxRibbonButtonBar* bar = NULL); + wxRibbonButtonBar* bar = NULL, + wxRibbonButtonBarButtonBase* button = NULL); /** Returns the bar which contains the button which the event relates to. @@ -496,6 +497,20 @@ public: */ void SetBar(wxRibbonButtonBar* bar); + /** + Returns the button which the event relates to. + + @since 2.9.5 + */ + wxRibbonButtonBarButtonBase* GetButton(); + + /** + Sets the button relating to this event. + + @since 2.9.5 + */ + void SetButton(wxRibbonButtonBarButtonBase* bar); + /** Display a popup menu as a result of this (dropdown clicked) event. */ diff --git a/src/ribbon/buttonbar.cpp b/src/ribbon/buttonbar.cpp index 6a2fd4cbbd..761af0d18f 100644 --- a/src/ribbon/buttonbar.cpp +++ b/src/ribbon/buttonbar.cpp @@ -1098,6 +1098,7 @@ void wxRibbonButtonBar::OnMouseUp(wxMouseEvent& evt) } notification.SetEventObject(this); notification.SetBar(this); + notification.SetButton(m_active_button->base); m_lock_active_state = true; ProcessWindowEvent(notification); m_lock_active_state = false;