|
Revision 8, 1.0 kB
(checked in by pantley2, 4 years ago)
|
added old DEUS project to SVN
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
#ifndef DIRECTORFORM_H |
|---|
| 10 |
#define DIRECTORFORM_H |
|---|
| 11 |
|
|---|
| 12 |
#include <qvariant.h> |
|---|
| 13 |
#include <qwidget.h> |
|---|
| 14 |
class QVBoxLayout; |
|---|
| 15 |
class QHBoxLayout; |
|---|
| 16 |
class QGridLayout; |
|---|
| 17 |
class QFrame; |
|---|
| 18 |
class QLabel; |
|---|
| 19 |
|
|---|
| 20 |
class DirectorForm : public QWidget |
|---|
| 21 |
{ |
|---|
| 22 |
Q_OBJECT |
|---|
| 23 |
|
|---|
| 24 |
public: |
|---|
| 25 |
DirectorForm( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
|---|
| 26 |
~DirectorForm(); |
|---|
| 27 |
|
|---|
| 28 |
QFrame* ForwardFrame; |
|---|
| 29 |
QLabel* TextLabel1; |
|---|
| 30 |
QFrame* Line2; |
|---|
| 31 |
QFrame* RegressionFrame; |
|---|
| 32 |
QLabel* TextLabel2; |
|---|
| 33 |
|
|---|
| 34 |
protected: |
|---|
| 35 |
QHBoxLayout* DirectorFormLayout; |
|---|
| 36 |
QVBoxLayout* Layout5; |
|---|
| 37 |
QVBoxLayout* Layout6; |
|---|
| 38 |
bool event( QEvent* ); |
|---|
| 39 |
}; |
|---|
| 40 |
|
|---|
| 41 |
#endif |
|---|
| 42 |
|
|---|