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_SLICER_INFO_DOT_H
00024 #define __SIMIAN_SLICER_INFO_DOT_H
00025
00026 #include <qwidget.h>
00027 #include <qtabwidget.h>
00028 #include <volume/Volume.h>
00029
00030 class SlicerInfo : public QWidget {
00031 Q_OBJECT
00032 public:
00033 SlicerInfo(QWidget *parent, const char *name=0, WFlags wf=0);
00034 virtual ~SlicerInfo();
00035
00036 public slots:
00037 virtual void setVolume(VolumeSP vol);
00038 virtual void setProbePos(int xp, int yp, int zp);
00039
00040 signals:
00041 void probePosChanged(int xp, int yp, int zp);
00042
00043 protected:
00044
00045 enum PAGES {
00046 FIELD_INFO,
00047 FIELD_PROBE
00048 };
00049
00050
00051 virtual void conf();
00052
00053 QTabWidget *_tabs;
00054 VolumeSP _vol;
00055
00056 };
00057
00058
00059 #endif
00060
00061