tychoBCGEN  0.5
 All Data Structures Namespaces Files Functions Variables
tutorial.h
Go to the documentation of this file.
1 #ifndef TUTORIAL_H
2 #define TUTORIAL_H
3 
4 #include <QDialog>
5 #include <QPixmap>
6 #include <QImage>
7 #include <QGraphicsView>
8 #include <QEvent>
9 #include <QGraphicsScene>
10 
11 
12 namespace Ui {
13 class tutorial;
14 }
15 
16 class tutorial : public QDialog
17 {
18  Q_OBJECT
19 
20 public:
21  explicit tutorial(QWidget *parent = 0);
22 
23 
24  ~tutorial();
25 
26 private:
29  QPixmap pixmap_tutorial;
30  QGraphicsScene *scene_tutorial;
31 
32 protected:
33  void resizeEvent(QResizeEvent *event);
34 };
35 
36 #endif // TUTORIAL_H