00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __SIMIAN_FIELD_VECTOR_PROBES_DOT_H
00023 #define __SIMIAN_FIELD_VECTOR_PROBES_DOT_H
00024
00025 #include <qwidget.h>
00026 #include <volume/Volume.h>
00027
00028 class FieldVecProbes : public QWidget {
00029 Q_OBJECT
00030 public:
00031 FieldVecProbes(VolumeSP vol, QWidget *parent, const char *name=0, WFlags wf=0);
00032 virtual ~FieldVecProbes();
00033
00034 signals:
00035 void probePosChanged(int xp, int yp, int zp);
00036
00037 public slots:
00038 virtual void setProbePos(int xp, int yp, int zp);
00039
00040 protected:
00041 virtual void conf();
00042
00043 VolumeSP _vol;
00044 };
00045
00046
00047 #endif
00048