VAT  3.0
Video Analysis Tool
viewportqlabel.h
1 #ifndef VIEWPORTQLABEL_H
2 #define VIEWPORTQLABEL_H
3 
4 #include <QLabel>
5 #include <QPainter>
6 #include <QMouseEvent>
7 #include "ImageWindowDisplay.h"
8 
9 class ViewportQLabel : public QLabel
10 {
11  Q_OBJECT
12 
13 public:
14  ViewportQLabel(QWidget *parent = 0);
15  ~ViewportQLabel();
16 
17  ImageWindowDisplay *display_window;
18  QString label;
19 
20 public slots:
21  void free_window();
22 
23 protected:
24  void mouseDoubleClickEvent(QMouseEvent *event);
25 // void paintEvent(QPaintEvent *event);
26 
27 };
28 
29 #endif // VIEWPORTQLABEL_H
Definition: viewportqlabel.h:9
The ImageWindowDisplay class is a container used to show images inside de main graphic interface Main...
Definition: ImageWindowDisplay.h:15