|
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 LOADDIALOG_H |
|---|
| 10 |
#define LOADDIALOG_H |
|---|
| 11 |
|
|---|
| 12 |
#include <qvariant.h> |
|---|
| 13 |
#include <qdialog.h> |
|---|
| 14 |
class QVBoxLayout; |
|---|
| 15 |
class QHBoxLayout; |
|---|
| 16 |
class QGridLayout; |
|---|
| 17 |
class QLabel; |
|---|
| 18 |
class QListView; |
|---|
| 19 |
class QListViewItem; |
|---|
| 20 |
class QPushButton; |
|---|
| 21 |
|
|---|
| 22 |
class LoadDialog : public QDialog |
|---|
| 23 |
{ |
|---|
| 24 |
Q_OBJECT |
|---|
| 25 |
|
|---|
| 26 |
public: |
|---|
| 27 |
LoadDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); |
|---|
| 28 |
~LoadDialog(); |
|---|
| 29 |
|
|---|
| 30 |
QListView* ListView; |
|---|
| 31 |
QLabel* TextLabel2; |
|---|
| 32 |
QPushButton* LoadButton; |
|---|
| 33 |
QPushButton* CancelButton; |
|---|
| 34 |
QPushButton* DeleteButton; |
|---|
| 35 |
|
|---|
| 36 |
protected: |
|---|
| 37 |
QVBoxLayout* LoadDialogLayout; |
|---|
| 38 |
QHBoxLayout* Layout10; |
|---|
| 39 |
}; |
|---|
| 40 |
|
|---|
| 41 |
#endif |
|---|
| 42 |
|
|---|