00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __SIMIAN_FIELD_PROPERTIES_DOT_H
00022 #define __SIMIAN_FIELD_PROPERTIES_DOT_H
00023
00024 #include <qwidget.h>
00025 #include <volume/VolField.h>
00026 #include <qstring.h>
00027
00028 class FieldProperties : public QWidget {
00029 Q_OBJECT
00030 public:
00031 FieldProperties(VolFieldSP vf, QWidget *parent=0, const char *name=0, WFlags wf=0);
00032 virtual ~FieldProperties() {}
00033
00034 public slots:
00035 virtual void setName(const QString &name);
00036 virtual void setActive(bool onoff);
00037 virtual void showProperties(void);
00038
00039 protected:
00040
00041 virtual void confFieldProps();
00042
00043 VolFieldSP _vf;
00044 };
00045
00046
00047 #endif
00048
00049