[root]/QTModules
Measurements
(5 files, 192 lines)
Resources
(1 files, 5 lines)
Icons
(4 files, 0 lines)
UI
(3 files, 833 lines)
Widgets
(4 files, 112 lines)
SlicerWelcome
(5 files, 202 lines)
Resources
(1 files, 48 lines)
HTML
(13 files, 440 lines)
Images
(19 files, 710 lines)
UI
(1 files, 522 lines)
Volumes
(5 files, 187 lines)
Resources
(1 files, 6 lines)
Icons
(2 files, 0 lines)
UI
(1 files, 40 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 14 (100.0%) | 82 (100.0%) | 5.8 |
| jcfr | 13 (92.9%) | 81 (98.8%) | 6.2 |
| finetjul | 1 (7.1%) | 1 (1.2%) | 1.0 |
ENH: In CMakeLists.txt, change deprecated SUBDIRS command into ADD_SUBDIRECTORY
See http://cmake.org/cmake/help/cmake-2-8-docs.html#command:subdirs
when subdirs command was taking a list of directory, change it
using the following pattern:
Before:
subdirs(sagarmatha kumbhu eiger)
After:
SET(dirs
sagarmatha
kumbhu
eiger
)
FOREACH(dir ${dirs})
ADD_SUBDIRECTORY(${dir})
ENDFOREACH(dir)
0 lines of code changed in 1 file:
ENH: Update CMakeLists.txt - CMake 2.6 is now required
The following line have been added:
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
IF(COMMAND CMAKE_POLICY)
CMAKE_POLICY(SET CMP0003 NEW)
ENDIF(COMMAND CMAKE_POLICY)
MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY)
0 lines of code changed in 1 file:
ENH: SlicerQT - Refactor QTCLI to consider qSlicerAbstractModuleWidget
qSlicerAbstractModuleWidget has also a new method 'module()' allowing
to obtain the module object associated with a moduleWidget.
The API of qSlicerModulePanel (and based class) has been updated to
use qSlicerAbstractModuleWidget.
0 lines of code changed in 1 file:
ENH: SlicerQT - Refactor Modules - Added qSlicerAsbtractModuleWidget
QTModules and CLI module are disabled for now
The class qSlicerAbstractModule now inherit from QObject.
All UI specific code has been moved to qSlicerAbstractModuleWidget.
qSlicerAbstractModule provide a function named 'widgetRepresentation'
allowing to obtain the corresponding widget.
0 lines of code changed in 1 file:
ENH: SlicerQT - Add the QT module 'SlicerWelcome'
0 lines of code changed in 1 file:
ENH: SlicerQT - Split Base/GUIQT into Base/QTBase and Base/QTGUI
9 lines of code changed in 1 file:
ENH: SlicerQt - Major refactoring. Module are now initialized within the overloaded function 'initializer'. qCTKFactory classed is now the base for Plugin and Object factory. Other kind of factory can easily be implemented. Module title should be set in the CMakeLists.txt of each QT module.
3 lines of code changed in 2 files:
COMP: SlicerQT: Fix windows compilation errors
1 lines of code changed in 1 file:
BUG: QtSlicer - Since minium version required is 2.6, update Slicer3QTModuleMacros to avoid triggering the CMP00012 warning with cmake version above 2.6.5
0 lines of code changed in 1 file:
BUG: QtSlicer - Update Slicer3QTModuleMacros to configure qSlicerQTModulesConfigure.h.in and qSlicerQTModulesWin32Header.h.in appropriately for the considered qt module
42 lines of code changed in 3 files:
ENH: QtSlicer - Add directory structure (and corresponding CMake file) containing loadable Qt Modules.
27 lines of code changed in 1 file: