]> Creatis software - clitk.git/blob - vv/vvInfoPanel.h
removed headers
[clitk.git] / vv / vvInfoPanel.h
1 #ifndef vvInfoPanel_h
2 #define vvInfoPanel_h
3 #include <iostream>
4 #include <vector>
5
6 #include "ui_vvInfoPanel.h"
7
8 class vvInfoPanel : public QWidget, private Ui::vvInfoPanel
9 {
10     Q_OBJECT
11
12 public:
13     vvInfoPanel(QWidget * parent=0):QWidget(parent) {
14         setupUi(this);
15     }
16     ~vvInfoPanel() {}
17
18     void setFileName(QString text);
19     void setSizeMM(QString text);
20     void setOrigin(QString text);
21     void setSpacing(QString text);
22     void setNPixel(QString text);
23     void setDimension(QString text);
24     void setSizePixel(QString text);
25     void setCurrentInfo(int visibility, double x, double y, double z, double X, double Y, double Z, double value);
26     void setViews(int window, int view, int slice);
27
28 public slots:
29
30 private:
31
32 };
33
34 #endif