00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef __SIMIAN_FIELD_VECTOR_PROPERTIES_DOT_H
00024 #define __SIMIAN_FIELD_VECTOR_PROPERTIES_DOT_H
00025
00026 #include <qwidget.h>
00027 #include "FieldProperties.h"
00028 #include <volume/Volume.h>
00029
00030 class FieldVecProps : public QWidget {
00031 Q_OBJECT
00032 public:
00033 FieldVecProps(VolumeSP v, QWidget *parent=0, const char *name=0, WFlags wf=0);
00034 virtual ~FieldVecProps();
00035
00036 protected:
00037 virtual void conf();
00038
00039 VolumeSP _v;
00040 };
00041
00042
00043 #endif
00044