]> Creatis software - clitk.git/blob - vv/vvInfoPanel.h
49fde928cc049b52b0ecc50c912e90c1e256a660
[clitk.git] / vv / vvInfoPanel.h
1 /*=========================================================================
2
3  Program:   vv
4  Language:  C++
5  Author :   Pierre Seroul (pierre.seroul@gmail.com)
6
7 Copyright (C) 2008
8 Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr
9 CREATIS-LRMN http://www.creatis.insa-lyon.fr
10
11 This program is free software: you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation, version 3 of the License.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
23 =========================================================================*/
24 #ifndef vvInfoPanel_h
25 #define vvInfoPanel_h
26
27 #include <iostream>
28 #include <vector>
29
30 #include "ui_vvInfoPanel.h"
31
32 class vvInfoPanel : public QWidget, private Ui::vvInfoPanel
33 {
34     Q_OBJECT
35
36 public:
37     vvInfoPanel(QWidget * parent=0):QWidget(parent) {
38         setupUi(this);
39     }
40     ~vvInfoPanel() {}
41
42     void setFileName(QString text);
43     void setSizeMM(QString text);
44     void setOrigin(QString text);
45     void setSpacing(QString text);
46     void setNPixel(QString text);
47     void setDimension(QString text);
48     void setSizePixel(QString text);
49     void setCurrentInfo(int visibility, double x, double y, double z, double X, double Y, double Z, double value);
50     void setViews(int window, int view, int slice);
51
52 public slots:
53
54 private:
55
56 };
57
58 #endif