summaryrefslogtreecommitdiffstats
path: root/Project/MouseEventsHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project/MouseEventsHandler.h')
-rw-r--r--Project/MouseEventsHandler.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Project/MouseEventsHandler.h b/Project/MouseEventsHandler.h
new file mode 100644
index 0000000..ab5680a
--- /dev/null
+++ b/Project/MouseEventsHandler.h
@@ -0,0 +1,18 @@
+#ifndef MOUSEEVENTSHANDLER_H
+#define MOUSEEVENTSHANDLER_H
+
+#include "Workspace.h"
+
+class MouseEventsHandler : public Workspace
+{
+private:
+ Workspace* m_workspace;
+public:
+ MouseEventsHandler(Workspace* workspace);
+ ~MouseEventsHandler();
+
+ void OnKeyDown(wxKeyEvent& event);
+
+};
+
+#endif // MOUSEEVENTSHANDLER_H