|
Slicer 4.2
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
|
00001 /*============================================================================== 00002 00003 Program: 3D Slicer 00004 00005 Copyright (c) Kitware Inc. 00006 00007 See COPYRIGHT.txt 00008 or http://www.slicer.org/copyright/copyright.txt for details. 00009 00010 Unless required by applicable law or agreed to in writing, software 00011 distributed under the License is distributed on an "AS IS" BASIS, 00012 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 See the License for the specific language governing permissions and 00014 limitations under the License. 00015 00016 This file was originally developed by Julien Finet, Kitware Inc. 00017 and was partially funded by NIH grant 3P41RR013218-12S1 00018 00019 ==============================================================================*/ 00020 00021 #ifndef __qSlicerROIModule_h 00022 #define __qSlicerROIModule_h 00023 00025 #include <ctkPimpl.h> 00026 00028 #include "qSlicerCoreModule.h" 00029 00030 #include "qSlicerModulesCoreExport.h" 00031 00032 class qSlicerAbstractModuleWidget; 00033 class qSlicerROIModulePrivate; 00034 00035 class Q_SLICER_MODULES_CORE_EXPORT qSlicerROIModule : 00036 public qSlicerCoreModule 00037 { 00038 Q_OBJECT 00039 public: 00040 typedef qSlicerCoreModule Superclass; 00041 qSlicerROIModule(QObject *parent=0); 00042 virtual ~qSlicerROIModule(); 00043 00044 qSlicerGetTitleMacro("ROI"); 00045 00047 virtual QString helpText()const; 00048 virtual QString acknowledgementText()const; 00049 virtual QStringList contributors()const; 00050 virtual QStringList categories()const; 00051 protected: 00052 00054 virtual qSlicerAbstractModuleRepresentation * createWidgetRepresentation(); 00055 00057 virtual vtkMRMLAbstractLogic* createLogic(); 00058 00059 protected: 00060 QScopedPointer<qSlicerROIModulePrivate> d_ptr; 00061 00062 private: 00063 Q_DECLARE_PRIVATE(qSlicerROIModule); 00064 Q_DISABLE_COPY(qSlicerROIModule); 00065 }; 00066 00067 #endif
1.7.4