Directory Modules/QdecModule/

Directory Created:
2007-06-22 09:41
Total Files:
11
Deleted Files:
3
Lines of Code:
3528

[root]/Modules/QdecModule
            directory in repo Testing (1 files, 18 lines)

Lines of Code

Modules/QdecModule/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 156 (100.0%) 3936 (100.0%) 25.2
naucoin 123 (78.8%) 3835 (97.4%) 31.1
barre 11 (7.1%) 80 (2.0%) 7.2
tgl 10 (6.4%) 7 (0.2%) 0.7
pieper 3 (1.9%) 7 (0.2%) 2.3
millerjv 2 (1.3%) 6 (0.2%) 3.0
freudling 1 (0.6%) 1 (0.0%) 1.0
lorensen 2 (1.3%) 0 (0.0%) 0.0
jcfr 2 (1.3%) 0 (0.0%) 0.0
domibel 1 (0.6%) 0 (0.0%) 0.0
blezek 1 (0.6%) 0 (0.0%) 0.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:

  • Modules/QdecModule: 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:

  • Modules/QdecModule: CMakeLists.txt (changed)
barre 2009-10-29 17:36 Rev.: 10795

ENH: support for new cameras and new views. Port from Slicer 3.4 branch. As mentioned on the mailing list, apologies for instabilities while these core changes are further tested. Fiducials do not seem to follow camera for example, this will be fixed. Send bugs to sebastien.barre@kitware.com; Thank you.

7 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+7 -6)
naucoin 2009-10-26 17:14 Rev.: 10756

COMP: check return value from fgets

10 lines of code changed in 1 file:

  • Modules/QdecModule: vtkGDFReader.cxx (+10 -2)
domibel 2009-08-16 11:14 Rev.: 10267

ENH: Version numbering for shared libraries

0 lines of code changed in 1 file:

  • Modules/QdecModule: CMakeLists.txt (changed)
naucoin 2009-06-09 15:29 Rev.: 9666

BUG: init Index

0 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (changed)
naucoin 2009-02-25 14:58 Rev.: 8746

BUG: filled in missing categories

5 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.h (+5)
lorensen 2008-12-27 11:34 Rev.: 8192

COMP: many warnings removed. STYLE: mainly indentation.

0 lines of code changed in 2 files:

  • Modules/QdecModule: vtkGDFReader.cxx (changed), vtkQdecModuleLogic.cxx (changed)
barre 2008-12-22 23:09 Rev.: 8177

ENH: moving view/camera changes to a branch.

* 7927 (barre): remove
* 7928 (barre): remove
* 7993 (barre): remove
* 8061 (barre): remove
* 8071 (barre): remove
* 8075 (barre): remove
* 8081 (barre): remove
* 8082 (barre): remove
* 8119 (barre): remove
* 8160 (barre): remove
* 8161 (barre): remove
* 8168 (barre): remove

Applications/GUI/Slicer3.cxx | 13 +-
Base/GUI/vtkSlicerApplication.cxx | 16 +-
Base/GUI/vtkSlicerApplicationGUI.cxx | 855 +++++++-------------
Base/GUI/vtkSlicerApplicationGUI.h | 96 +--
Base/GUI/vtkSlicerCamerasGUI.cxx | 290 +++-----
Base/GUI/vtkSlicerCamerasGUI.h | 44 +-
Base/GUI/vtkSlicerFiducialListWidget.cxx | 60 +--
Base/GUI/vtkSlicerFiducialListWidget.h | 4 -
Base/GUI/vtkSlicerNodeSelectorWidget.cxx | 10 +-
Base/GUI/vtkSlicerNodeSelectorWidget.h | 3 +-
Base/GUI/vtkSlicerROIDisplayWidget.cxx | 1 +
Base/GUI/vtkSlicerROIDisplayWidget.h | 1 +
Base/GUI/vtkSlicerROIViewerWidget.cxx | 15 +-
Base/GUI/vtkSlicerViewControlGUI.cxx | 364 ++++-----
Base/GUI/vtkSlicerViewerWidget.cxx | 230 ++----
Base/GUI/vtkSlicerViewerWidget.h | 16 +-
Libs/MRML/vtkMRMLCameraNode.cxx | 90 +--
Libs/MRML/vtkMRMLCameraNode.h | 37 +-
Libs/MRML/vtkMRMLLayoutNode.cxx | 7 +-
Libs/MRML/vtkMRMLScene.cxx | 21 +-
Libs/MRML/vtkMRMLScene.h | 1 -
Libs/MRML/vtkMRMLSceneSnapshotNode.cxx | 2 -
Libs/MRML/vtkMRMLViewNode.cxx | 33 +-
Libs/MRML/vtkMRMLViewNode.h | 12 +-
.../ChangeTracker/Wizard/vtkChangeTrackerStep.cxx | 6 +-
Modules/QdecModule/vtkQdecModuleGUI.cxx | 13 +-
.../VolumeRendering/vtkSlicerVRGrayscaleHelper.cxx | 225 ++----
Modules/VolumeRendering/vtkSlicerVRHelper.cxx | 15 +-
Modules/VolumeRendering/vtkVolumeRenderingGUI.cxx | 12 +-
29 files changed, 818 insertions(+), 1674 deletions(-)

0 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (changed)
barre 2008-12-08 05:01 Rev.: 8075

ENH: second stab at custom views

0 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (changed)
tgl 2008-11-21 00:20 Rev.: 7941

ENH using XML files to show how it can be done

2 lines of code changed in 3 files:

  • Modules/QdecModule: CMakeLists.txt (changed), QdecModule.txt (del), QdecModule.xml (new 2)
tgl 2008-06-23 15:28 Rev.: 7147

STYLE: moving the module-specific picking code to Init(), its slightly better here then as part of an overloaded SetApplicationGUI() method. Done in consultation with N. Aucoin duing 2008 Summer Project Week

4 lines of code changed in 2 files:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+3 -3), vtkQdecModuleGUI.h (+1 -1)
naucoin 2008-06-20 13:57 Rev.: 7120

BUG: in the change to QdecModule becoming a LoadableModule, the viewer widget and interactor style were not getting set. Subclass the SetApplicationGUI method to set these pointers so that plot events can be observed

33 lines of code changed in 2 files:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+27), vtkQdecModuleGUI.h (+6 -1)
naucoin 2008-06-19 13:50 Rev.: 7116

ENH: adding a test to make sure that the required libraries are present: itcl, iwidgets, blt

21 lines of code changed in 1 file:

  • Modules/QdecModule: CMakeLists.txt (+21)
barre 2008-05-31 12:31 Rev.: 6953

ENH: fix some minor installation issues; the Python modules are now found correctly. The Qdec module doesn't complain anymore. In general, the Tcl/Python subtree structure for each module is kept in the installation tree or build tree, so it should be easy to understand where files are coming from. Thanks to Dan and Luca for the feedback.

2 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleLogic.cxx (+2 -2)
naucoin 2008-05-30 10:54 Rev.: 6938

BUG: update the name so that the tcl init function can be found

1 lines of code changed in 1 file:

  • Modules/QdecModule: QdecModule.txt (+1 -1)
barre 2008-05-27 17:44 Rev.: 6889

ENH: Plugins and Modules have specific location for their binairies/dll, different from the usual bin/ and lib/ (i.e. lib/Slicer3/Plugins, lib/Slicer3/Modules). This was achieved by setting LIBRARY_OUTPUT_PATH and EXECUTABLE_OUTPUT_PATH from the slicer3_set_default_modules_output_path and slicer3_set_default_plugins_output_path macro, but it is a dangerous practice to override a global variable, as it propagates to subtrees. As a result, SlicerTractographySeeding, which combines a module and a CLP in the same CMakeLists, was not built to the proper directory; ExtractSkeleton was not output in the right location either, and several tests ended up in Plugins instead of bin/ (GaussianBlurImageFilterTest, OrientImageTest). Fix this by creating a macro that will set the LIBRARY_OUTPUT_DIRECTORY and RUNTIME_OUTPUT_DIRECTORY explicitly on a *target* basis, using SET_TARGET_PROPERTIES. This removes the side-effects described above.

2 lines of code changed in 1 file:

  • Modules/QdecModule: CMakeLists.txt (+2 -3)
barre 2008-05-26 10:17 Rev.: 6851

ENH: added slicer3_install_modules and slicer3_install_plugins macro to hide the big INSTALL() command that was used to install plugins/modules; this is more elegant, and enable us to have better control on installation by modifying just one file.

1 lines of code changed in 1 file:

  • Modules/QdecModule: CMakeLists.txt (+1 -5)
barre 2008-05-22 17:31 Rev.: 6833

ENH: more cleanup to allow LoadableModule to be loaded from the Module Search Paths (i.e. outside Slicer3). Provide API to retrieve module's resources paths from either locations (inside or outside a Slicer3's build/installed tree)

2 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.h (+2 -2)
naucoin 2008-05-20 16:18 Rev.: 6788

BUG: added the info about how to plot results

1 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+1 -1)
barre 2008-05-20 02:29 Rev.: 6772

ENH: Slicer3 Spring Installation Clean Up

66 lines of code changed in 4 files:

  • Modules/QdecModule: CMakeLists.txt (+58 -92), vtkQdecModule.h (+2 -2), vtkQdecModuleConfigure.h.in (+1 -10), vtkQdecModuleLogic.cxx (+5 -5)
tgl 2008-05-02 20:08 Rev.: 6593

BUG: Implement SetModuleLogic(vtkSlicerLogic*) for loadable compatibility

0 lines of code changed in 2 files:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (changed), vtkQdecModuleGUI.h (changed)
tgl 2008-04-29 21:23 Rev.: 6579

BUG typo in GENERATELM call did not add QdecModule LM libs to source

0 lines of code changed in 1 file:

  • Modules/QdecModule: CMakeLists.txt (changed)
tgl 2008-04-28 22:05 Rev.: 6570

ENH results of merge with 6049:6469 from branches/tgl_loadable_modules. Adds GenerateLM to create entry points for loadable module support via a text file and CMake macro. WFEngine, NeuroNav, Qdec and GAD are setup, other modules have text files, but the macro in the CMakeLists file is commented out. Updated Slicer3_main, the modules above will only be loaded if the DLL is found at run-time. Lastly made a change to vtkSlicerViewerWidget, check for a NULL ModelHierarchyLogic pointer before continuing, which might not be the right thing to do.

1 lines of code changed in 2 files:

  • Modules/QdecModule: CMakeLists.txt (changed), QdecModule.txt (new 1)
freudling 2008-02-06 11:00 Rev.: 5717

ENH: Hyperlinks part 2

1 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+1 -1)
millerjv 2008-01-31 12:24 Rev.: 5665

ENH: Changes in the Slicer3 installation layout to simplify navigation. Most things will now try install themselves under <Installation Directory>/lib/<Package> or <Installation Directory>/include/<Package>. For example, <Installation Directory>/lib/Slicer3, <Installation Directory>/lib/MRML, <Installation Directory>/lib/ModuleDescriptionParser. This allows setting include and library paths consistently using ../<SomeOtherPackage> or ../../include/<SomeOtherPackage>, etc.

2 lines of code changed in 1 file:

  • Modules/QdecModule: CMakeLists.txt (+2 -2)
naucoin 2007-12-21 10:09 Rev.: 5313

BUG: removing debugging print outs

3 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+3 -3)
naucoin 2007-12-18 17:19 Rev.: 5260

COMP: cast to avoid compiler warnings

0 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (changed)
naucoin 2007-12-11 17:02 Rev.: 5164

BUG: put the tcl file in a more logical place in the binary and installed versions

0 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleLogic.cxx (changed)
naucoin 2007-11-23 14:20 Rev.: 4921

BUG: observing the withdraw event instead of the invoke event on the load save buttons

13 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+13 -14)
naucoin 2007-10-12 12:13 Rev.: 4625

ENH: show a question related overlay when run glm fit

3 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+3)
naucoin 2007-10-12 10:47 Rev.: 4621

BUG: catching errors

6 lines of code changed in 2 files:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+1 -1), vtkQdecModuleLogic.cxx (+5 -1)
naucoin 2007-10-11 18:55 Rev.: 4616

BUG: fixed return values

6 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+6 -5)
naucoin 2007-10-11 18:08 Rev.: 4614

ENH: lots more error checking and reporting

197 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+197 -62)
naucoin 2007-10-11 18:07 Rev.: 4613

ENH: pass through error codes

3 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleLogic.cxx (+3 -3)
naucoin 2007-10-11 15:29 Rev.: 4609

BUG: free up the collection of colour nodes to get rid of a memory leak

2 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+2)
naucoin 2007-10-10 18:06 Rev.: 4597

ENH: clear out the GUI, close plot windows, when get scene close event

25 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+25 -3)
naucoin 2007-10-10 12:54 Rev.: 4592

ENH: look for .qdec files first when trying to load results

1 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+1 -1)
naucoin 2007-10-09 17:48 Rev.: 4584

BUG: deal with spaces in plot file name

1 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleLogic.cxx (+1 -1)
naucoin 2007-10-09 17:03 Rev.: 4580

BUG: return if can't create the glm design, as Libs/Qdec asserts will fail if try to load the results

2 lines of code changed in 1 file:

  • Modules/QdecModule: vtkQdecModuleGUI.cxx (+2)

(69 more)

Generated by StatSVN 0.5.0