00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef PROJECTFORM_H
00011 #define PROJECTFORM_H
00012
00013 #include <qvariant.h>
00014 #include <qpixmap.h>
00015 #include <qwidget.h>
00016
00017 class QVBoxLayout;
00018 class QHBoxLayout;
00019 class QGridLayout;
00020 class LinkListBox;
00021 class QTabWidget;
00022 class QLabel;
00023 class QLineEdit;
00024 class QTextEdit;
00025
00026 class ProjectForm : public QWidget
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 ProjectForm( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00032 ~ProjectForm();
00033
00034 QTabWidget* tab;
00035 QWidget* tab_2;
00036 QLabel* textLabel1;
00037 QLineEdit* title;
00038 QLabel* textLabel2;
00039 QTextEdit* memo;
00040 QLabel* created;
00041 QLabel* modified;
00042 QWidget* TabPage;
00043 QLabel* textLabel3;
00044 LinkListBox* publs;
00045 QWidget* tab_3;
00046
00047 protected:
00048 QVBoxLayout* ProjectFormLayout;
00049 QVBoxLayout* tabLayout;
00050 QVBoxLayout* layout6;
00051 QHBoxLayout* layout5;
00052 QHBoxLayout* layout4;
00053 QHBoxLayout* TabPageLayout;
00054 QVBoxLayout* layout11;
00055
00056 protected slots:
00057 virtual void languageChange();
00058
00059 private:
00060 QPixmap image0;
00061
00062 };
00063
00064 #endif // PROJECTFORM_H