Slicer 5.9
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
qSlicerIO.h
Go to the documentation of this file.
1/*==============================================================================
2
3 Program: 3D Slicer
4
5 Copyright (c) Kitware Inc.
6
7 See COPYRIGHT.txt
8 or http://www.slicer.org/copyright/copyright.txt for details.
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 This file was originally developed by Julien Finet, Kitware Inc.
17 and was partially funded by NIH grant 3P41RR013218-12S1
18
19==============================================================================*/
20
21#ifndef __qSlicerIO_h
22#define __qSlicerIO_h
23
24// Qt includes
25#include <QMap>
26#include <QMetaType>
27#include <QObject>
28#include <QString>
29#include <QStringList>
30#include <QVariant>
31
32// QtCore includes
33#include "qSlicerBaseQTCoreExport.h"
34#include "qSlicerObject.h"
35
37class qSlicerIOPrivate;
39
41class Q_SLICER_BASE_QTCORE_EXPORT qSlicerIO
42 : public QObject
43 , public qSlicerObject
44{
45 Q_OBJECT
46
47public:
48 typedef QObject Superclass;
49 explicit qSlicerIO(QObject* parent = nullptr);
50 ~qSlicerIO() override;
51
52 typedef QString IOFileType;
54
56 Q_INVOKABLE virtual QString description()const = 0;
57
59 Q_INVOKABLE virtual qSlicerIO::IOFileType fileType()const = 0;
60
65 Q_INVOKABLE virtual qSlicerIOOptions* options()const;
66
69
70protected:
71 QScopedPointer<qSlicerIOPrivate> d_ptr;
72
73private:
74 Q_DECLARE_PRIVATE(qSlicerIO);
75 Q_DISABLE_COPY(qSlicerIO);
76};
77
80
81#endif
QScopedPointer< qSlicerIOPrivate > d_ptr
Definition qSlicerIO.h:71
QString IOFileType
Definition qSlicerIO.h:52
virtual Q_INVOKABLE qSlicerIO::IOFileType fileType() const =0
Multiple readers can share the same file type.
QObject Superclass
Definition qSlicerIO.h:48
virtual Q_INVOKABLE qSlicerIOOptions * options() const
~qSlicerIO() override
QVariantMap IOProperties
Definition qSlicerIO.h:53
qSlicerIO(QObject *parent=nullptr)
virtual Q_INVOKABLE QString description() const =0
Unique name of the reader/writer.
Q_INVOKABLE vtkMRMLMessageCollection * userMessages() const
Additional warning or error messages occurred during IO operation.
Q_DECLARE_METATYPE(qSlicerExtensionsManagerModel::ServerAPI)
QMap< QString, QVariant > QVariantMap