|
Revision 8, 1.5 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 AUTHORFORM_H |
|---|
| 10 |
#define AUTHORFORM_H |
|---|
| 11 |
|
|---|
| 12 |
#include <qvariant.h> |
|---|
| 13 |
#include <qwidget.h> |
|---|
| 14 |
class QVBoxLayout; |
|---|
| 15 |
class QHBoxLayout; |
|---|
| 16 |
class QGridLayout; |
|---|
| 17 |
class QFrame; |
|---|
| 18 |
class QGroupBox; |
|---|
| 19 |
class QLabel; |
|---|
| 20 |
class QLineEdit; |
|---|
| 21 |
class QMultiLineEdit; |
|---|
| 22 |
class QPushButton; |
|---|
| 23 |
class QSlider; |
|---|
| 24 |
class QTable; |
|---|
| 25 |
|
|---|
| 26 |
class AuthorForm : public QWidget |
|---|
| 27 |
{ |
|---|
| 28 |
Q_OBJECT |
|---|
| 29 |
|
|---|
| 30 |
public: |
|---|
| 31 |
AuthorForm( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
|---|
| 32 |
~AuthorForm(); |
|---|
| 33 |
|
|---|
| 34 |
QFrame* Frame; |
|---|
| 35 |
QLabel* TextLabel1; |
|---|
| 36 |
QSlider* ZoomSlider; |
|---|
| 37 |
QPushButton* FitButton; |
|---|
| 38 |
QPushButton* CenterButton; |
|---|
| 39 |
QLabel* ViewLabel; |
|---|
| 40 |
QPushButton* ReturnButton; |
|---|
| 41 |
QGroupBox* GroupBox1; |
|---|
| 42 |
QLabel* TextLabel3; |
|---|
| 43 |
QLabel* TextLabel2; |
|---|
| 44 |
QMultiLineEdit* NewNodeName; |
|---|
| 45 |
QPushButton* NewNodeButton; |
|---|
| 46 |
QFrame* Line2; |
|---|
| 47 |
QLabel* TextLabel3_3_2; |
|---|
| 48 |
QTable* Table; |
|---|
| 49 |
QLabel* TextLabel1_2; |
|---|
| 50 |
QLineEdit* SaveName; |
|---|
| 51 |
QPushButton* SaveButton; |
|---|
| 52 |
QPushButton* LoadButton; |
|---|
| 53 |
QPushButton* DoneButton; |
|---|
| 54 |
|
|---|
| 55 |
protected: |
|---|
| 56 |
QHBoxLayout* AuthorFormLayout; |
|---|
| 57 |
QVBoxLayout* Layout6; |
|---|
| 58 |
QHBoxLayout* Layout5; |
|---|
| 59 |
QVBoxLayout* Layout5_2; |
|---|
| 60 |
QVBoxLayout* GroupBox1Layout; |
|---|
| 61 |
QHBoxLayout* Layout4; |
|---|
| 62 |
bool event( QEvent* ); |
|---|
| 63 |
}; |
|---|
| 64 |
|
|---|
| 65 |
#endif |
|---|
| 66 |
|
|---|