qt5
Last change
on this file since 59c6cfe was
59c6cfe,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
started work on displaying map
- implemented mapwindow
- map is hard-coded for now
TODO: finish getting map path from the event
|
-
Property mode set to
100644
|
File size:
348 bytes
|
Line | |
---|
1 | #ifndef MAPWINDOW_H |
---|
2 | #define MAPWINDOW_H |
---|
3 | |
---|
4 | #include <QDialog> |
---|
5 | #include <QPixmap> |
---|
6 | #include "ui_mapwindow.h" |
---|
7 | |
---|
8 | class MapWindow : public QDialog, Ui::MapWindow |
---|
9 | { |
---|
10 | public: |
---|
11 | MapWindow(const QPixmap &aImage, QWidget *aParent = NULL); |
---|
12 | ~MapWindow() {} |
---|
13 | protected: |
---|
14 | virtual void mouseDoubleClickEvent(QMouseEvent *event); |
---|
15 | }; |
---|
16 | |
---|
17 | #endif /* MAPWINDOW_H */ |
---|
18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.