Computer Assited Medical Intervention Tool Kit  version 5.0
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-2021 Univ. Grenoble Alpes, CNRS, Grenoble INP, 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 <QObject>
30
32
33namespace camitk {
34class Component;
35}
36
37class DicomDialog;
39
40#include "DicomSeries.h"
41
42
53 Q_OBJECT
54 Q_INTERFACES(camitk::ComponentExtension)
55 Q_PLUGIN_METADATA(IID "fr.imag.camitk.imaging.component.dicom")
56
57public:
60
62 virtual QString getName() const override {
63 return "DICOM";
64 };
65
67 virtual QString getDescription() const override {
68 return "This extension adds support for DICOM single image file (.dcm) and series thanks to the gdcm library";
69 };
70
71
75 virtual QStringList getFileExtensions() const override;
76
80 virtual camitk::Component* open(const QString&) override;
81
86 virtual bool save(camitk::Component*) const override;
87
89 virtual bool hasDataDirectory() const override;
90
91protected:
93 virtual ~DicomComponentExtension() = default;
94
95private:
99
102
104 QList<DicomSeries*> seriesParsed;
105
107 QList<DicomDialogEntry*> seriesDialogEntries;
108
109};
110
111#endif // DICOMCOMPONENTEXTENSION
112
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:52
camitk::Component * lastOpenedComponent
Last opened component.
Definition: DicomComponentExtension.h:98
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:47
virtual bool hasDataDirectory() const override
this method returns true as this component loads images from a directory (not a single file)
Definition: DicomComponentExtension.cpp:112
virtual QString getName() const override
Method returning the component extension name.
Definition: DicomComponentExtension.h:62
DicomDialog * dialog
The dialog that asks the user which dicom image files he wishes to open.
Definition: DicomComponentExtension.h:101
virtual QString getDescription() const override
Method returning the component extension description.
Definition: DicomComponentExtension.h:67
QList< DicomDialogEntry * > seriesDialogEntries
The series dialog entries representation in the VIEW.
Definition: DicomComponentExtension.h:107
QList< DicomSeries * > seriesParsed
The different Dicom SERIES parsed.
Definition: DicomComponentExtension.h:104
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:55
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:102
DicomComponentExtension()
Constructor.
Definition: DicomComponentExtension.h:59
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
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:302
Definition: Action.cpp:35