00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef STATEFORM_H
00011 #define STATEFORM_H
00012
00013 #include <qvariant.h>
00014 #include <qwidget.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QLabel;
00020
00021 class StateForm : public QWidget
00022 {
00023 Q_OBJECT
00024
00025 public:
00026 StateForm( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00027 ~StateForm();
00028
00029 QLabel* publications;
00030 QLabel* parts;
00031 QLabel* authors;
00032 QLabel* files;
00033 QLabel* publishers;
00034 QLabel* journals;
00035 QLabel* notes;
00036 QLabel* links;
00037 QLabel* PixmapLabel1;
00038
00039 protected:
00040 virtual QPixmap loadBackgroundImage( void );
00041
00042 QVBoxLayout* StateFormLayout;
00043 QHBoxLayout* layout4;
00044 QVBoxLayout* layout3;
00045
00046 protected slots:
00047 virtual void languageChange();
00048
00049 };
00050
00051 #endif // STATEFORM_H