Computer Assited Medical Intervention Tool Kit  version 4.1
DicomComponentExtension.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * $CAMITK_LICENCE_BEGIN$
3  *
4  * CamiTK - Computer Assisted Medical Intervention ToolKit
5  * (c) 2001-2018 Univ. Grenoble Alpes, CNRS, TIMC-IMAG UMR 5525 (GMCAO)
6  *
7  * Visit http://camitk.imag.fr for more information
8  *
9  * This file is part of CamiTK.
10  *
11  * CamiTK is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * CamiTK 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 Lesser General Public License version 3 for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * version 3 along with CamiTK. If not, see <http://www.gnu.org/licenses/>.
22  *
23  * $CAMITK_LICENCE_END$
24  ****************************************************************************/
25 
26 #ifndef DICOMCOMPONENTEXTENSION_H
27 #define DICOMCOMPONENTEXTENSION_H
28 
29 #include <QObject>
30 
31 #include<ComponentExtension.h>
32 
33 namespace camitk {
34 class Component;
35 }
36 
37 class DicomDialog;
38 class DicomDialogEntry;
39 
40 #include "DicomSerie.h"
41 
42 
53  Q_OBJECT
54  Q_INTERFACES(camitk::ComponentExtension)
55  Q_PLUGIN_METADATA(IID "fr.imag.camitk.imaging.component.dicom")
56 
57 public:
59  DicomComponentExtension() : ComponentExtension() {};
60 
62  virtual QString getName() const {
63  return "DICOM";
64  };
65 
67  virtual QString getDescription() const {
68  return "This allows one to read a single .dcm DICOM image file using the library GDCM 2.2.x";
69  };
70 
71 
75  virtual QStringList getFileExtensions() const;
76 
80  virtual camitk::Component* open(const QString&);
81 
86  virtual bool save(camitk::Component*) const;
87 
89  virtual bool hasDataDirectory() const;
90 
91 protected:
93  virtual ~DicomComponentExtension() = default;
94 
95 private:
99 
102 
104  QList<DicomSerie*> serieParsed;
105 
107  QList<DicomDialogEntry*> serieDialogEntries;
108 
109 };
110 
111 #endif // DICOMCOMPONENTEXTENSION
112 
camitk::Component * lastOpenedComponent
Last opened component.
Definition: DicomComponentExtension.h:98
DICOM image Component manager.
Definition: DicomComponentExtension.h:52
Definition: Action.cpp:36
This class describes what is a generic Component extension.
Definition: ComponentExtension.h:57
This class represents a line in the Dialog box of the DICOM series the user is prompted to open...
Definition: DicomDialogEntry.h:41
A Component represents something that could be included in the explorer view, the interactive 3D view...
Definition: sdk/libraries/core/component/Component.h:298
virtual QString getDescription() const
Method returning the component extension descrption.
Definition: DicomComponentExtension.h:67
A component is something that composed something and could also be a part of something.
Definition: modeling/libraries/pml/Component.h:48
virtual QString getName() const
Method returning the component extension name.
Definition: DicomComponentExtension.h:62
QList< DicomDialogEntry * > serieDialogEntries
The series dialog entries representation in the VIEW.
Definition: DicomComponentExtension.h:107
DicomComponentExtension()
Constructor.
Definition: DicomComponentExtension.h:59
QList< DicomSerie * > serieParsed
The different Dicom SERIES parsed.
Definition: DicomComponentExtension.h:104
Dialog class to select the DICOM series to open, using a GUI.
Definition: DicomDialog.h:46
DicomDialog * dialog
The dialog that asks the user which dicom image files he wishes to open.
Definition: DicomComponentExtension.h:101