diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-04-13 08:37:00 +0200 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-04-13 08:37:00 +0200 |
| commit | b60bb2ed272972847cb533be2e86bd2d7e565918 (patch) | |
| tree | 3c5c8024a55e942da90a985a5c6a24f5d63df2ff /mainwindow.h | |
| parent | 80e36da2bbb4c6ce0e6f04ccff595f61769bb4ab (diff) | |
| download | GUI_SS2015-b60bb2ed272972847cb533be2e86bd2d7e565918.tar.gz GUI_SS2015-b60bb2ed272972847cb533be2e86bd2d7e565918.zip | |
Adds tasks 2 and 3
Diffstat (limited to 'mainwindow.h')
| -rw-r--r-- | mainwindow.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h index 6f225be..410878f 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -3,7 +3,9 @@ #include <QMainWindow> #include <QDebug> +#include <QMouseEvent> #include "dlgpreferences.h" +#include "interactioncanvas.h" namespace Ui { class MainWindow; @@ -24,6 +26,10 @@ private slots: void on_actionPreferences_triggered(); private: Ui::MainWindow *ui; + + // QWidget interface +protected: + void mouseMoveEvent(QMouseEvent *mouseEvent); }; #endif // MAINWINDOW_H |
