00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef FORM1_H
00011 #define FORM1_H
00012
00013 #include <qvariant.h>
00014 #include <qdialog.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class QListView;
00021 class QListViewItem;
00022
00023 class Form1 : public QDialog
00024 {
00025 Q_OBJECT
00026
00027 public:
00028 Form1( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00029 ~Form1();
00030
00031 QListView* SensorsList;
00032
00033 public slots:
00034 virtual void onRBList(QListViewItem *,const QPoint &pt,int );
00035
00036 protected:
00037 QGridLayout* Form1Layout;
00038 QSpacerItem* spacer24_2;
00039 QSpacerItem* spacer24;
00040 QSpacerItem* spacer7;
00041
00042 protected slots:
00043 virtual void languageChange();
00044
00045 };
00046
00047 #endif // FORM1_H