- inline int GetFlags() const { return m_flags; }
- inline int GetKeyCode() const { return m_keyCode; }
- inline int GetCommand() const { return m_command; }
+ int GetFlags() const { return m_flags; }
+ int GetKeyCode() const { return m_keyCode; }
+ int GetCommand() const { return m_command; }
+
+ void operator = (const wxAcceleratorEntry& entry)
+ {
+ m_flags = entry.m_flags; m_keyCode = entry.m_keyCode; m_command = entry.m_command;
+ }
+
+ // Implementation use only
+ bool MatchesEvent(const wxKeyEvent& event) const;