X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7266b6723573ce6317577226cb1e5d32826e24e8..e9d804ebea801ce6268b962999410c2b21fad617:/include/wx/accel.h diff --git a/include/wx/accel.h b/include/wx/accel.h index a5202e4173..6c3b950e1e 100644 --- a/include/wx/accel.h +++ b/include/wx/accel.h @@ -44,10 +44,25 @@ class WXDLLEXPORT wxAcceleratorEntry public: wxAcceleratorEntry(int flags = 0, int keyCode = 0, int cmd = 0, wxMenuItem *item = NULL) + : m_flags(flags) + , m_keyCode(keyCode) + , m_command(cmd) + , m_item(item) + { } + + wxAcceleratorEntry(const wxAcceleratorEntry& entry) + : m_flags(entry.m_flags) + , m_keyCode(entry.m_keyCode) + , m_command(entry.m_command) + , m_item(entry.m_item) + { } + + wxAcceleratorEntry& operator=(const wxAcceleratorEntry& entry) { - Set(flags, keyCode, cmd, item); + Set(entry.m_flags, entry.m_keyCode, entry.m_command, entry.m_item); + return *this; } - + void Set(int flags, int keyCode, int cmd, wxMenuItem *item = NULL) { m_flags = flags; @@ -75,9 +90,9 @@ public: bool operator!=(const wxAcceleratorEntry& entry) const { return !(*this == entry); } -#if defined(__WXMOTIF__) || defined(__WXX11__) +#if defined(__WXMOTIF__) // Implementation use only - bool MatchesEvent(const wxKeyEvent& event) const ; + bool MatchesEvent(const wxKeyEvent& event) const; #endif private: @@ -109,8 +124,6 @@ private: #include "wx/mac/accel.h" #elif defined(__WXPM__) #include "wx/os2/accel.h" -#elif defined(__WXSTUBS__) - #include "wx/stubs/accel.h" #endif WXDLLEXPORT_DATA(extern wxAcceleratorTable) wxNullAcceleratorTable;