diff --git a/Modules/ModuleList.cmake b/Modules/ModuleList.cmake index e8c8e06df4..d2e2f659ec 100644 --- a/Modules/ModuleList.cmake +++ b/Modules/ModuleList.cmake @@ -1,71 +1,72 @@ # The entries in the mitk_modules list must be # ordered according to their dependencies. set(mitk_modules Core AppUtil DCMTesting RDF LegacyIO DataTypesExt Overlays LegacyGL AlgorithmsExt MapperExt DICOMReader DICOMTesting Qt4Qt5TestModule SceneSerializationBase PlanarFigure ImageDenoising ImageExtraction ImageStatistics LegacyAdaptors SceneSerialization GraphAlgorithms Multilabel ContourModel SurfaceInterpolation Segmentation PlanarFigureSegmentation OpenViewCore QmlItems QtWidgets QtWidgetsExt SegmentationUI DiffusionImaging GPGPU OpenIGTLink IGTBase IGT CameraCalibration RigidRegistration RigidRegistrationUI DeformableRegistration DeformableRegistrationUI OpenCL OpenCVVideoSupport QtOverlays InputDevices ToFHardware ToFProcessing ToFUI US USUI DicomUI Simulation Remeshing Python Persistence OpenIGTLinkUI IGTUI VtkShaders DicomRT IOExt XNAT + XNATUI TubeGraph ) if(MITK_ENABLE_PIC_READER) list(APPEND mitk_modules IpPicSupportIO) endif() diff --git a/Modules/XNATUI/CMakeLists.txt b/Modules/XNATUI/CMakeLists.txt new file mode 100644 index 0000000000..d636b90e47 --- /dev/null +++ b/Modules/XNATUI/CMakeLists.txt @@ -0,0 +1,6 @@ +MITK_CREATE_MODULE( + INCLUDE_DIRS Qmitk + PACKAGE_DEPENDS + PUBLIC CTK|CTKXNATCore + PRIVATE Qt4 Qt5|UiTools+XmlPatterns +) diff --git a/Modules/XNATUI/Qmitk/QmitkXnatProjectInfoWidget.cpp b/Modules/XNATUI/Qmitk/QmitkXnatProjectInfoWidget.cpp new file mode 100644 index 0000000000..6104a08867 --- /dev/null +++ b/Modules/XNATUI/Qmitk/QmitkXnatProjectInfoWidget.cpp @@ -0,0 +1,17 @@ +/*=================================================================== + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center, +Division of Medical and Biological Informatics. +All rights reserved. + +This software is distributed WITHOUT ANY WARRANTY; without +even the implied warranty of MERCHANTABILITY or FITNESS FOR +A PARTICULAR PURPOSE. + +See LICENSE.txt or http://www.mitk.org for details. + +===================================================================*/ + +#include "QmitkXnatProjectInfoWidget.h" diff --git a/Modules/XNATUI/Qmitk/QmitkXnatProjectInfoWidget.h b/Modules/XNATUI/Qmitk/QmitkXnatProjectInfoWidget.h new file mode 100644 index 0000000000..247eb20cf8 --- /dev/null +++ b/Modules/XNATUI/Qmitk/QmitkXnatProjectInfoWidget.h @@ -0,0 +1,32 @@ +/*=================================================================== + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center, +Division of Medical and Biological Informatics. +All rights reserved. + +This software is distributed WITHOUT ANY WARRANTY; without +even the implied warranty of MERCHANTABILITY or FITNESS FOR +A PARTICULAR PURPOSE. + +See LICENSE.txt or http://www.mitk.org for details. + +===================================================================*/ + +#ifndef QMITKXNATPROJECTINFOWIDGET_H +#define QMITKXNATPROJECTINFOWIDGET_H + +#include + +// Qt +#include + +class MITKXNATUI_EXPORT QmitkXnatProjectInfoWidget : public QWidget +{ + Q_OBJECT +}; + + + +#endif // QMITKXNATPROJECTINFOWIDGET_H diff --git a/Modules/XNATUI/Qmitk/QmitkXnatProjectInfoWidgetControls.ui b/Modules/XNATUI/Qmitk/QmitkXnatProjectInfoWidgetControls.ui new file mode 100644 index 0000000000..7631c81da9 --- /dev/null +++ b/Modules/XNATUI/Qmitk/QmitkXnatProjectInfoWidgetControls.ui @@ -0,0 +1,19 @@ + + + QmitkXnatProjectInfoWidgetControls + + + + 0 + 0 + 400 + 300 + + + + Form + + + + + diff --git a/Modules/XNATUI/files.cmake b/Modules/XNATUI/files.cmake new file mode 100644 index 0000000000..14995a7fbc --- /dev/null +++ b/Modules/XNATUI/files.cmake @@ -0,0 +1,11 @@ +set( CPP_FILES +Qmitk/QmitkXnatProjectInfoWidget.cpp +) + +set(MOC_H_FILES +Qmitk/QmitkXnatProjectInfoWidget.h +) + +set(UI_FILES +Qmitk/QmitkXnatProjectInfoWidgetControls.ui +)