Directory QTModules/

Directory Created:
2009-10-30 09:56
Total Files:
3
Deleted Files:
0
Lines of Code:
70

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

Lines of Code

QTModules/ Lines of Code

Developers

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

Most Recent Commits

jcfr 2009-12-08 18:34 Rev.: 11226

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:

  • QTModules: CMakeLists.txt (changed)
jcfr 2009-12-07 23:15 Rev.: 11209

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:

  • QTModules: CMakeLists.txt (changed)
jcfr 2009-12-05 11:09 Rev.: 11169

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:

  • QTModules: CMakeLists.txt (changed)
jcfr 2009-12-05 11:09 Rev.: 11167

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:

  • QTModules: CMakeLists.txt (changed)
jcfr 2009-11-25 16:00 Rev.: 11052

ENH: SlicerQT - Add the QT module 'SlicerWelcome'

0 lines of code changed in 1 file:

  • QTModules: CMakeLists.txt (changed)
jcfr 2009-11-10 20:34 Rev.: 10926

ENH: SlicerQT - Split Base/GUIQT into Base/QTBase and Base/QTGUI

9 lines of code changed in 1 file:

  • QTModules: qSlicerQTModulesWin32Header.h.in (+9 -9)
jcfr 2009-11-06 17:59 Rev.: 10894

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:

  • QTModules: CMakeLists.txt (+1 -1), qSlicerQTModulesConfigure.h.in (+2)
finetjul 2009-11-02 05:31 Rev.: 10838

COMP: SlicerQT: Fix windows compilation errors

1 lines of code changed in 1 file:

  • QTModules: CMakeLists.txt (+1 -1)
jcfr 2009-10-30 17:37 Rev.: 10820

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:

  • QTModules: CMakeLists.txt (-1)
jcfr 2009-10-30 16:16 Rev.: 10816

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:

  • QTModules: CMakeLists.txt (+1), qSlicerQTModulesConfigure.h.in (new 20), qSlicerQTModulesWin32Header.h.in (new 21)
jcfr 2009-10-30 09:56 Rev.: 10807

ENH: QtSlicer - Add directory structure (and corresponding CMake file) containing loadable Qt Modules.

27 lines of code changed in 1 file:

  • QTModules: CMakeLists.txt (new 27)
Generated by StatSVN 0.5.0