Computer Assisted Medical Intervention Tool Kit  version 5.2
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-2024 Univ. Grenoble Alpes, CNRS, Grenoble INP - UGA, TIMC, 38000 Grenoble, France
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 <ComponentExtension.h>
30 
31 namespace camitk {
32 class Component;
33 }
34 
35 class DicomDialog;
36 class DicomDialogEntry;
37 class DicomSeries;
38 
39 
50  Q_OBJECT
51  Q_INTERFACES(camitk::ComponentExtension)
52  Q_PLUGIN_METADATA(IID "fr.imag.camitk.sdk.component.dicom")
53 
54 public:
57 
59  virtual QString getName() const override {
60  return "DICOM";
61  };
62 
64  virtual QString getDescription() const override {
65  return "This extension adds support for DICOM single image file (.dcm) and series thanks to the gdcm library";
66  };
67 
68 
72  virtual QStringList getFileExtensions() const override;
73 
77  virtual camitk::Component* open(const QString&) override;
78 
83  virtual bool save(camitk::Component*) const override;
84 
86  virtual bool hasDataDirectory() const override;
87 
88 protected:
90  virtual ~DicomComponentExtension() = default;
91 
92 private:
95  camitk::Component* lastOpenedComponent;
96 
98  DicomDialog* dialog;
99 
101  QList<DicomSeries*> seriesParsed;
102 
104  QList<DicomDialogEntry*> seriesDialogEntries;
105 
106 };
107 
108 #endif // DICOMCOMPONENTEXTENSION_H
109 
A component is something that composed something and could also be a part of something.
Definition: modeling/libraries/pml/Component.h:48
DICOM image Component manager.
Definition: DicomComponentExtension.h:49
virtual ~DicomComponentExtension()=default
Destructor.
virtual QStringList getFileExtensions() const override
Get the list of managed extensions (each file with an extension in the list can be loaded by this ext...
Definition: DicomComponentExtension.cpp:43
virtual bool hasDataDirectory() const override
this method returns true as this component loads images from a directory (not a single file)
Definition: DicomComponentExtension.cpp:120
virtual QString getName() const override
Method returning the component extension name.
Definition: DicomComponentExtension.h:59
virtual QString getDescription() const override
Method returning the component extension description.
Definition: DicomComponentExtension.h:64
virtual camitk::Component * open(const QString &) override
Open a single .dcm image or a directory containing files to be read This method may throw an AbortExc...
Definition: DicomComponentExtension.cpp:51
virtual bool save(camitk::Component *) const override
Save a given Component (does not have to be top-level) into one of the currently managed format.
Definition: DicomComponentExtension.cpp:110
DicomComponentExtension()
Constructor.
Definition: DicomComponentExtension.h:56
This class represents a line in the Dialog box of the DICOM series the user is prompted to open.
Definition: DicomDialogEntry.h:41
Dialog class to select the DICOM series to open, using a GUI.
Definition: DicomDialog.h:46
DicomSeries is a CamiTK high level class to represent a DICOM SERIES This class encapsulates GDCM obj...
Definition: DicomSeries.h:45
This class describes what is a generic Component extension.
Definition: ComponentExtension.h:60
ComponentExtension()
protected constructor,
Definition: ComponentExtension.cpp:35
A Component represents something that could be included in the explorer view, the interactive 3D view...
Definition: sdk/libraries/core/component/Component.h:303
Definition: Action.cpp:36