00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef CLUSTERPROPERTIESLAYOUT_H
00011 #define CLUSTERPROPERTIESLAYOUT_H
00012
00013 #include <qvariant.h>
00014 #include <qwidget.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class QGroupBox;
00021 class QLineEdit;
00022 class QLabel;
00023
00024 class ClusterPropertiesLayout : public QWidget
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 ClusterPropertiesLayout( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00030 ~ClusterPropertiesLayout();
00031
00032 QGroupBox* groupBox;
00033 QLineEdit* nbSamplesLineEdit;
00034 QLabel* waveformLabel;
00035 QLabel* peakLabel;
00036 QLineEdit* peakIndexLineEdit;
00037
00038 protected:
00039 QGridLayout* ClusterPropertiesLayoutLayout;
00040 QSpacerItem* spacer1;
00041 QGridLayout* groupBoxLayout;
00042 QGridLayout* layout33;
00043 QSpacerItem* spacer4_2;
00044 QSpacerItem* spacer4;
00045
00046 protected slots:
00047 virtual void languageChange();
00048
00049 };
00050
00051 #endif // CLUSTERPROPERTIESLAYOUT_H