]> Creatis software - clitk.git/blob - vv/vvQDicomSeriesSelector.h
Initial revision
[clitk.git] / vv / vvQDicomSeriesSelector.h
1 /*=========================================================================
2
3  Program:   vv
4  Module:    $RCSfile: vvQDicomSeriesSelector.h,v $
5  Language:  C++
6  Date:      $Date: 2010/01/06 13:31:57 $
7  Version:   $Revision: 1.1 $
8  Author :   Pierre Seroul (pierre.seroul@gmail.com)
9
10 Copyright (C) 2008
11 Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr
12 CREATIS-LRMN http://www.creatis.insa-lyon.fr
13
14 This program is free software: you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation, version 3 of the License.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program.  If not, see <http://www.gnu.org/licenses/>.
25
26 =========================================================================*/
27 #ifndef VVDICOMSERIESSELECTOR_H
28 #define VVDICOMSERIESSELECTOR_H
29
30 // vv include
31 #include "ui_vvDicomSeriesSelector.h"
32 #include "clitkCommon.h"
33 #include "vvQProgressDialogITKCommand.h"
34
35 namespace gdcm {class File;}
36
37 // qt include
38 #include <QSplitter>
39 #include <QFileDialog>
40
41 class vvDicomSeriesSelector : public QDialog {
42     Q_OBJECT
43
44 public:
45     vvDicomSeriesSelector(QWidget * parent=0);
46     virtual void show();
47     virtual void close();
48     std::vector<std::string> * GetFilenames() {
49         return mFilenames;
50     }
51
52 protected slots:
53     void BrowseButtonRelease();
54     void SearchButtonRelease();
55     void itemSelectionChanged();
56     void itemDetailsSelectionChanged();
57
58 protected:
59     QString mPreviousPath;
60     QString mFoldername;
61     void AddSerieToTheTable(int i, std::vector<std::string> & filenames);
62     QString MakeDicomInfo(std::string & s, gdcm::File *header);
63     QString AddInfo(gdcm::File *header, QString n, unsigned short group, unsigned short elem);
64     QString AddInfo(std::string n, std::string m);
65
66 private:
67     Ui::vvDicomSeriesSelector ui;
68     std::string mCurrentSerie;
69     std::map<std::string, std::vector<std::string>* > mListOfSeriesFilenames;
70     std::vector<std::string> * mFilenames;
71     std::map<std::string, QString> mDicomInfo;
72     std::map<std::string, gdcm::File*> mDicomHeader;
73     std::map<std::string, std::string> mDicomDetails;
74 };
75
76 #endif // VVDICOMSERIESSELECTOR_H