]> git.saurik.com Git - wxWidgets.git/commitdiff
added CreateAccelTable() helper which creates the accel table for just this menu
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 27 Jan 2009 16:45:24 +0000 (16:45 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 27 Jan 2009 16:45:24 +0000 (16:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58461 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/menu.h
src/msw/menu.cpp

index 213c9d1675fd1fba7fa59b9c9b395ef1baa92d4d..60f660ccc77f07c21d0dd65819dbe01ccfb9e360 100644 (file)
@@ -75,8 +75,8 @@ public:
 
 #if wxUSE_ACCEL
     // called by wxMenuBar to build its accel table from the accels of all menus
-    bool HasAccels() const { return !m_accels.IsEmpty(); }
-    size_t GetAccelCount() const { return m_accels.GetCount(); }
+    bool HasAccels() const { return !m_accels.empty(); }
+    size_t GetAccelCount() const { return m_accels.size(); }
     size_t CopyAccels(wxAcceleratorEntry *accels) const;
 
     // called by wxMenuItem when its accels changes
@@ -84,6 +84,11 @@ public:
 
     // helper used by wxMenu itself (returns the index in m_accels)
     int FindAccel(int id) const;
+
+    // used only by wxMDIParentFrame currently but could be useful elsewhere:
+    // returns a new accelerator table with accelerators for just this menu
+    // (shouldn't be called if we don't have any accelerators)
+    wxAcceleratorTable *CreateAccelTable() const;
 #endif // wxUSE_ACCEL
 
 protected:
index 8cae440b7b087db6a2e2a64f0d15d73718660d93..32676538ba3a4255ed265144fd90a7b5d5b342e7 100644 (file)
@@ -39,6 +39,8 @@
     #include "wx/ownerdrw.h"
 #endif
 
+#include "wx/ptr_scpd.h"
+
 #include "wx/msw/private.h"
 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
 
@@ -714,6 +716,15 @@ size_t wxMenu::CopyAccels(wxAcceleratorEntry *accels) const
     return count;
 }
 
+wxAcceleratorTable *wxMenu::CreateAccelTable() const
+{
+    const size_t count = m_accels.size();
+    wxScopedArray<wxAcceleratorEntry> accels(new wxAcceleratorEntry[count]);
+    CopyAccels(accels.get());
+
+    return new wxAcceleratorTable(count, accels.get());
+}
+
 #endif // wxUSE_ACCEL
 
 // ---------------------------------------------------------------------------