Commit
42ae191d7613cad794b1092741369bc96ac78654
Authored by
Klum
Added subjectviewer and subjectviewergrid
|
| |
1
| +#include "subjectviewer.h" |
|
| |
2
| + |
|
| |
3
| +SubjectViewer::SubjectViewer() |
|
| |
4
| +{ |
|
| |
5
| +} |
|
| |
1
| +#ifndef SUBJECTVIEWER_H |
|
| |
2
| +#define SUBJECTVIEWER_H |
|
| |
3
| + |
|
| |
4
| +class SubjectViewer : public FaceViewer |
|
| |
5
| +{ |
|
| |
6
| +public: |
|
| |
7
| + SubjectViewer(); |
|
| |
8
| +}; |
|
| |
9
| + |
|
| |
10
| +#endif // SUBJECTVIEWER_H |
|
| |
1
| +#include "subjectviewergrid.h" |
|
| |
2
| + |
|
| |
3
| +SubjectViewerGrid::SubjectViewerGrid(QWidget *parent) : |
|
| |
4
| + TemplateViewerGrid(parent) |
|
| |
5
| +{ |
|
| |
6
| +} |
|
| |
1
| +#ifndef SUBJECTVIEWERGRID_H |
|
| |
2
| +#define SUBJECTVIEWERGRID_H |
|
| |
3
| + |
|
| |
4
| +class SubjectViewerGrid : public TemplateViewerGrid |
|
| |
5
| +{ |
|
| |
6
| + Q_OBJECT |
|
| |
7
| +public: |
|
| |
8
| + explicit SubjectViewerGrid(QWidget *parent = 0); |
|
| |
9
| + |
|
| |
10
| +signals: |
|
| |
11
| + |
|
| |
12
| +public slots: |
|
| |
13
| + |
|
| |
14
| +}; |
|
| |
15
| + |
|
| |
16
| +#endif // SUBJECTVIEWERGRID_H |