]> git.saurik.com Git - wxWidgets.git/commitdiff
Add wxRibbonButtonBar::GetActiveItem() and GetHoveredItem().
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 20 Sep 2012 20:01:36 +0000 (20:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 20 Sep 2012 20:01:36 +0000 (20:01 +0000)
Add accessors for the button being currently clicked or hovered over.

See #14630.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72527 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/ribbon/buttonbar.h
interface/wx/ribbon/buttonbar.h
src/ribbon/buttonbar.cpp

index 216d6e2a2e021dc12a8a1c6130735891bac67c97..502814381779fa3853a1ad90e85c098e8bc32e0e 100644 (file)
@@ -137,6 +137,9 @@ public:
     virtual void EnableButton(int button_id, bool enable = true);
     virtual void ToggleButton(int button_id, bool checked);
 
+    virtual wxRibbonButtonBarButtonBase *GetActiveItem() const;
+    virtual wxRibbonButtonBarButtonBase *GetHoveredItem() const;
+
     virtual void SetArtProvider(wxRibbonArtProvider* art);
     virtual bool IsSizingContinuous() const;
 
index 292d21b3262d92eac80e3c3a6676d0c94414d5c1..05e23634d9b5d4f4d6ed35aacd1b6fbb717ae5f1 100644 (file)
@@ -443,6 +443,23 @@ public:
             @false to set it to the untoggled/unpressed/unchecked state.
     */
     virtual void ToggleButton(int button_id, bool checked);
+
+    /**
+        Returns the active item of the button bar or NULL if there is none.
+        The active button is the one being clicked.
+
+        @since 2.9.5
+    */
+    virtual wxRibbonButtonBarButtonBase *GetActiveItem() const;
+
+    /**
+        Returns the hovered item of the button bar or NULL if there is none.
+        The hovered button is the one the mouse is over.
+
+        @since 2.9.5
+    */
+    virtual wxRibbonButtonBarButtonBase *GetHoveredItem() const;
+
 };
 
 /**
index b558e6daacefb20f494ab438bf23dd9cf32fc1a6..6a2fd4cbbd3be0901f9eb32a3903019e22c2a881 100644 (file)
@@ -1139,6 +1139,19 @@ void wxRibbonButtonBar::OnMouseLeave(wxMouseEvent& WXUNUSED(evt))
     if(repaint)
         Refresh(false);
 }
+
+wxRibbonButtonBarButtonBase *wxRibbonButtonBar::GetActiveItem() const
+{
+    return m_active_button == NULL ? NULL : m_active_button->base;
+}
+
+
+wxRibbonButtonBarButtonBase *wxRibbonButtonBar::GetHoveredItem() const
+{
+    return m_hovered_button == NULL ? NULL : m_hovered_button->base;
+}
+
+
 wxRibbonButtonBarButtonBase *wxRibbonButtonBar::GetItem(size_t n) const
 {
     wxCHECK_MSG(n >= 0 && n < m_buttons.GetCount(), NULL, "wxRibbonButtonBar item's index is out of bound");