Changesets: Import 2017-06-07 23:51:09

master e12a6bb6

2014-05-18 23:28:44

jcfr

Details Diff
BUG: Fix behavior of "Set(AndObserve)NthNodeReference" function

This commit now ensures that if a reference is set to position N,
it can later be obtain given N.

The issue is illustrated below:

SetNthNodeReferenceID("MyRole", /* n= */ 1, "ID2")
GetNthNodeReferenceID("MyRole", /* n= */ 1) => return NULL
GetNthNodeReferenceID("MyRole", /* n= */ 0) => return "ID2"

=> Getting reference N=1 should return ID2

For reference, the proposed change has also been discussed on the mailing
list. See [1]

[1] http://slicer-devel.65872.n3.nabble.com/MRML-References-update-proposal-tt4031425.html

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23192 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Libs/MRML/Core/Testing/vtkMRMLNodeTest1.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLNode.h Diff File

master 7b76f67c

2014-05-18 23:28:41

jcfr

Details Diff
ENH: Simplify MRMLReferences using smart pointers

* Use of smart pointer in vtkMRMLReference allows us to remove
the complicated code manually managing the calls to Register/UnRegister

* function "SetNthNodeReferenceID" and "SetAndObserveNthNodeReferenceID"
have been updated to have similar code (at the exception of the
code setting the observation events). The second will consist in factoring
code common code to avoid code duplication.

* SetNthNodeReferenceID/SetAndObserveNthNodeReferenceID have also
been fixed to work properly in case the reference doesn't exist
and referencedNodeID is null.

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23191 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Libs/MRML/Core/vtkMRMLNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLNode.h Diff File

master 02b6a5d6

2014-05-18 23:28:39

jcfr

Details Diff
ENH: Re-factor and rename some of MRMLReference tests

This commit add convenience function allowing to systematically test
the different cases.

It also renames test functions to better represent the purpose of the
test:
TestAddReferenceNodeID -> TestSetAndObserveNodeReferenceID
TestReferenceNodeNoObservers -> TestSetNodeReferenceID

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23190 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Libs/MRML/Core/Testing/vtkMRMLNodeTest1.cxx Diff File

master 59804168

2014-05-18 23:28:36

jcfr

Details Diff
STYLE: Remove unused Set/Get*Opacity method from slice logic

Following the introduction of the composite node (r175) that is able to
store the opacity information, these methods originally introduced
by r129 are now redundant and unused.

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23189 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Libs/MRML/Logic/Testing/Cxx/vtkMRMLSliceLogicTest1.cxx Diff File
mod - Libs/MRML/Logic/vtkMRMLSliceLogic.cxx Diff File
mod - Libs/MRML/Logic/vtkMRMLSliceLogic.h Diff File

master c23346cb

2014-05-18 23:28:33

jcfr

Details Diff
STYLE: Remove unused composite node "Grid" attribute

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23188 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Libs/MRML/Core/vtkMRMLSliceCompositeNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLSliceCompositeNode.h Diff File

master bca1b5c2

2014-05-18 23:28:31

jcfr

Details Diff
COMP: Fix unused variable in vtkMRMLNode::PrintSelf

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23187 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Libs/MRML/Core/vtkMRMLNode.cxx Diff File

master 4fccfef3

2014-05-18 23:28:28

jcfr

Details Diff
COMP: Update Slicer packaging code to support CMake 3.0

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23186 3bd1e089-480b-0410-8dfb-8563597acbee
mod - CMake/SlicerCPack.cmake Diff File

master 979d08bb

2014-05-16 17:11:28

lassoan

Details Diff
ENH: Added support for oriented grid Transform

* Added a new class, vtkOrientedGridTransform, which is based on vtkGridTransform but orientation of the grid can be specified as well.
* Added test for vtkOrientedGridTransform to verify its derivative and inverse computation and equivalence with ITK displacement field transform.
* Simplified vtkMRMLGridTransform node: transform parameters are read/written into ITK transform file, no duplicate saving is done in the scene.
* Removed unused vtkITK files: itkDisplacementFieldTransform, itkEncodedTransformFileReader/Writer, as they were not used (and some of them even had the same name as existing ITK files).
* Support reading/writing of grid transform from/to nrrd, nhdr, mha, mhd, nii, nii.gz files

Resolves:
http://www.na-mic.org/Bug/view.php?id=3597
http://www.na-mic.org/Bug/view.php?id=3444
http://na-mic.org/Bug/view.php?id=2273

Partially resolves:
http://www.na-mic.org/Bug/view.php?id=3598


git-svn-id: http://svn.slicer.org/Slicer4/trunk@23185 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Libs/MRML/Core/CMakeLists.txt Diff File
mod - Libs/MRML/Core/Testing/CMakeLists.txt Diff File
mod - Libs/MRML/Core/Testing/vtkMRMLNonlinearTransformNodeTest1.cxx Diff File
mod - Libs/MRML/Core/Testing/vtkOrientedBSplineTransformTest1.cxx Diff File
add - Libs/MRML/Core/Testing/vtkOrientedGridTransformTest1.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLBSplineTransformNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLGridTransformNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLGridTransformNode.h Diff File
mod - Libs/MRML/Core/vtkMRMLTransformNode.cxx Diff File
mod - Libs/MRML/Core/vtkMRMLTransformStorageNode.cxx Diff File
mod - Libs/MRML/Core/vtkOrientedBSplineTransform.h Diff File
add - Libs/MRML/Core/vtkOrientedGridTransform.cxx Diff File
add - Libs/MRML/Core/vtkOrientedGridTransform.h Diff File
rm - Libs/vtkITK/itkDisplacementFieldTransform.h Diff File
rm - Libs/vtkITK/itkDisplacementFieldTransform.txx Diff File
rm - Libs/vtkITK/itkEncodedTransformFileReader.cxx Diff File
rm - Libs/vtkITK/itkEncodedTransformFileReader.h Diff File
rm - Libs/vtkITK/itkEncodedTransformFileWriter.cxx Diff File
rm - Libs/vtkITK/itkEncodedTransformFileWriter.h Diff File

master 7d069595

2014-05-15 19:27:38

finetjul

Details Diff
COMP: Fix VTK linking inside CTK

git shortlog 880bdd632c19af8c8118d62ecea329fbeb720711..8a17c21630f28a7dd22ff98514aaac1059d60433
Alireza Mehrtash (3):
Fix ctkDICOMobjectListWidget memory leak and other enahancements
Added Option for changing tables text density in dicom browser
added repair tool for database and also message box for importin dicom browser

Jean-Christophe Fillion-Robin (16):
COMP: Pass CMAKE_BUILD_TYPE to all projects
Allow FindDCMTK.cmake to be re-used directly adding missing module.
Merge pull request 0000453 from mwoehlke-kitware/ctksettingspanel-python
Fixes CTK configuration renaming ctkDICOM2 application test. Fixes 0000454
Merge branch '454-fix-configure-with-ctkdicom2'
Fix pluginframework build error happening when wrapping is enabled.
Merge branch '455-fix-pluginframework-python-wrap-error'
Update dashboard driver script to submit a regular project layout.
Remove configuration of unneeded Project.xml and CTestConfigSubProject.cmake
Merge branch '457-revert-to-regular-cdash-submission'
Do not include now nonexistent module ctkFunctionGenerateProjectXml
Merge branch '457-revert-to-regular-cdash-submission'
Fix condition used to unset DICOMApplicationHosting top level option
Ensure ctk option are considered as superbuild candidate variable.
Merge branch 'fix-multiple-configure-and-passing-of-options'
Merge pull request 0000458 from mwoehlke-kitware/fix-superbuild-ctk-force-build

Julien Finet (12):
Fix VTK 6 support
Merge branch 'add-vtk-6-support'
Fix ctkVTKSliceView for VTK v5
Merge branch 'add-vtk-7-support'
Propagate new ctkBackTracePrivate::trace signature
Merge branch 'fix-ctkbacktrace-out-of-line-definition'
Remove duplicates from the include dirs
Merge branch 'remove-include-duplicates'
Do not link with VTK targets that don't exist
Merge branch 'fix-vtk6-linking'
Don't use set_directory_properties in UseCTK.cmake
Merge branch 'remove-include-duplicates'

Marco Nolden (5):
Some size_t related type fixes for VS2013
Fixed some unused variable warnings
Removed non-functional copy constructor
Make VTK6 linking more robust
Fix DCMTK dictionary crashes in plugins

Matthew Woehlke (3):
Improve Python access to ctkSettingsPanel
Improve Python access to ctkSettingsDialog
Fix force build for CTK

Sascha Zelzer (2):
Added missing virtual destructor.
Add header files to fix moc generation due to changed qt4_generate_mocs macro.

Steve Pieper (5):
Clean up cmake code for test
Merge branch '387-dicom-test-cmake'
Merge pull request 0000448 from mehrtash/ctk-dicom-object-list-widget-enhancements
Merge pull request 0000438 from mehrtash/3579-very-few-patients-visible-in-DICOM-Browser
Merge pull request 0000461 from mehrtash/added-repair-tool-and-copy-on-import-message-box

Yuzheng Zhou (1):
ENH: Support VTK6 in CTK

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23184 3bd1e089-480b-0410-8dfb-8563597acbee
mod - SuperBuild/External_CTK.cmake Diff File

master ff56baf4

2014-05-15 17:52:47

jcfr

Details Diff
BUG: Fix MacOSX packaging

This commit ensures the MacOSX packaging script is executed last
by installing the 'Runtime' component last and should ensure the
packaged Slicer application can be executed without crashing.

This particular issue was introduced by commit r23158 where two
things happened:

(1) updated of the build system to explicitly install Slicer components.
The component where specified in the order 'Runtime', 'RuntimeLibraries'
and 'RuntimePlugins'

(2) the MacOSX packaging script was associated with the 'Rumtime' component

The consequence was that Slicer libraries and plugins where installed after
the script was executed and the plugins and libraries where no properly
fixed up. It then prevented the Slicer application from being executed.

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23183 3bd1e089-480b-0410-8dfb-8563597acbee
mod - CMake/SlicerCPack.cmake Diff File

master b3d59522

2014-05-15 17:05:37

finetjul

Details Diff
COMP: Reduce the number of duplicated include directories

Too many included directories may fail to build on Windows but also on
Linux because it generates very long command lines.

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23182 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/QTGUI/CMakeLists.txt Diff File
mod - SuperBuild/External_CTK.cmake Diff File

master 6d762f02

2014-05-15 14:35:43

jcfr

Details Diff
BUG: Extensions: Do not add CMAKE_PROJECT_NAME to the cache

Following r23180, check for ConfigurePrerequisites component is done
by testing if CMAKE_PROJECT_NAME variable is defined.

Considering that (1) a project statement is expected to exist in the
extension CMakeLists.txt and (2) the check for ConfigurePrerequisites
component relies on the variable not being set when first configuring,
this commit updates the build system so that the variable is not added
to the cache.

This build system has been tested on Windows and Linux with
Slicer_UPLOAD_EXTENSIONS set to ON (the default).

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23181 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Extensions/CMake/SlicerBlockBuildPackageAndUploadExtension.cmake Diff File

master 03d871ad

2014-05-14 19:20:03

jcfr

Details Diff
BUG: Improve check for usage of ConfigurePrerequisites component

This commit ensures that no false error will happen by checking if
the variable CMAKE_PROJECT_NAME (set only by the project() command)
is defined.

More particularly, this will avoid getting error while build the
VMTK extension.

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23180 3bd1e089-480b-0410-8dfb-8563597acbee
mod - CMake/SlicerConfig.cmake.in Diff File

master 77daff06

2014-05-14 18:25:42

jcfr

Details Diff
ENH: Add support for conditional upload to extension driver script

By default enabled, this option will allow to disable the upload of
extension while testing if they can be built.

This will be particularly useful when setting VTK6 dashboards for
the extensions.

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23179 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Extensions/CMake/SlicerExtensionsDashboardDriverScript.cmake Diff File

master 888f4477

2014-05-14 17:05:01

naucoin

Details Diff
ENH: enable using the picking manager

Turn on the picking manager on the interactor when creating the first
fiducial, ruler, ROI.
Only for VTK6, solves the issue of picking fiducials in placed order
rather than 3d depth order.
Dragging fiducials near other ones will sometimes cause a jump, but now
the 3d glyph position and the MRML node location stay in synch.

Issue 0003319

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23178 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Modules/Loadable/Annotations/MRMLDM/vtkMRMLAnnotationROIDisplayableManager.cxx Diff File
mod - Modules/Loadable/Annotations/MRMLDM/vtkMRMLAnnotationRulerDisplayableManager.cxx Diff File
mod - Modules/Loadable/Markups/MRMLDM/vtkMRMLMarkupsDisplayableManagerHelper.cxx Diff File
mod - Modules/Loadable/Markups/MRMLDM/vtkMRMLMarkupsFiducialDisplayableManager2D.cxx Diff File
mod - Modules/Loadable/Markups/MRMLDM/vtkMRMLMarkupsFiducialDisplayableManager3D.cxx Diff File

master 3f47a10b

2014-05-14 01:01:05

jcfr

Details Diff
BUG: Fix for crash in vtkImageResliceMask (0003301)

* Force the output image and mask extent to be the same to avoid the possibility of mismatched extents
* Add a NULL-pointer check after the backgroundMaskPtr setting to prevent application crash (worst case it causes partial screen refresh)

From: Andras Lasso <lasso@queensu.ca>

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23177 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Libs/MRML/Core/vtkImageResliceMask.cxx Diff File

master 42d9aadd

2014-05-14 01:01:02

jcfr

Details Diff
COMP: Fix unused variable / unused typdefs warnings.

From: Jean-Christophe Fillion-Robin <jchris.fillionr@kitware.com>

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23176 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/QTGUI/qSlicerSettingsStylesPanel.cxx Diff File
mod - Libs/MRML/Core/vtkOrientedBSplineTransform.cxx Diff File
mod - Modules/CLI/GrayscaleGrindPeakImageFilter/GrayscaleGrindPeakImageFilter.cxx Diff File

master 47362cc8

2014-05-13 19:19:59

jcfr

Details Diff
ENH: Simplify qMRMLUtils::qImageToVtkImageData using vtkQImageToImageSource.

Fixes 0001263

From: Christopher Mullins <christopher.mullins@kitware.com>

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23175 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Libs/MRML/Widgets/CMakeLists.txt Diff File
mod - Libs/MRML/Widgets/qMRMLUtils.cxx Diff File

master 022943d6

2014-05-13 18:11:02

mwoehlke

Details Diff
BUG: Don't store style settings per version

Move the settings location where the user's selected style and
additional style paths are stored from the per-version store to the
general user store, as there is no particular reason why these would be
version specific, and having to set them after every update (especially
in a developer environment) is a little annoying.

Issue 0003691

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23174 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/QTGUI/qSlicerSettingsStylesPanel.cxx Diff File

master 5b2ec771

2014-05-13 13:42:49

mwoehlke

Details Diff
ENH: Always return to extensions list

Tweak extension manager to navigate the manage browser back to the
initial page on changing tabs, so that when the user changes to the
'install' tab and back to the 'manage' tab, they always see the list of
installed extensions.

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23173 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/QTGUI/qSlicerExtensionsManagerWidget.cxx Diff File

master 2789cedf

2014-05-13 13:42:48

mwoehlke

Details Diff
ENH: Add 'More' link in extension manager (2/2)

Add another web browser to extension manager to show details pages for
installed extensions Refactor navigation buttons so that they are
available for both tabs (different set of actual buttons, but same
concept). Tweak qSlicerExtensionsInstallWidget (which we need to use as
the browser, for various reasons, including so that we have 'uninstall'
rather than 'download' buttons) to have an option to not load the
'browse available extensions' page.

Issue 0003608

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23172 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/QTGUI/CMakeLists.txt Diff File
add - Base/QTGUI/Resources/UI/qSlicerExtensionsActionsWidget.ui Diff File
mod - Base/QTGUI/Resources/UI/qSlicerExtensionsManagerWidget.ui Diff File
mod - Base/QTGUI/qSlicerExtensionsInstallWidget.cxx Diff File
mod - Base/QTGUI/qSlicerExtensionsInstallWidget.h Diff File
mod - Base/QTGUI/qSlicerExtensionsManageWidget.cxx Diff File
mod - Base/QTGUI/qSlicerExtensionsManageWidget.h Diff File
mod - Base/QTGUI/qSlicerExtensionsManagerWidget.cxx Diff File
mod - Base/QTGUI/qSlicerExtensionsManagerWidget.h Diff File

master 48d84a30

2014-05-13 13:42:47

mwoehlke

Details Diff
ENH: Add 'More' link in extension manager (1/2)

Use the newly available extension ID to provide a 'More' link in the
extension manager. Add necessary code to implement link signals in
qSlicerExtensionsDescriptionLabel.

This is part 1 of 2; the links are not yet functional as we currently
lack a way to open the page. (We don't want to use the web view for
installing, as that would cause an undesired switch to the 'install'
tab.)

Note that the QSignalMapper for links is removed, as it is not needed;
the link URL provides the necessary information and can be used
directly.

Issue 0003608

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23171 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/QTGUI/qSlicerExtensionsManageWidget.cxx Diff File

master 478ec129

2014-05-13 13:42:46

mwoehlke

Details Diff
STYLE: Simplify metadata stripping

Rather than iterating over the whole metadata and copying keys one at a
time if not in the 'ignore' set, just copy the whole thing en-masse and
remove the unwanted values. This gives simpler code.

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23170 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/QTCore/qSlicerExtensionsManagerModel.cxx Diff File

master 27bc2b46

2014-05-13 13:42:45

mwoehlke

Details Diff
ENH: Include ID in extension model

Change qSlicerExtensionsManagerModel to not remove the extension_id from
the extension metadata. The ID is needed to find the extension
information page, which we would eventually like to be accessible for
installed extensions.

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23169 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/QTCore/Testing/Cxx/qSlicerExtensionsManagerModelTest.cxx Diff File
mod - Base/QTCore/qSlicerExtensionsManagerModel.cxx Diff File

master 4a85253e

2014-05-13 13:42:44

mwoehlke

Details Diff
ENH: Improve display of disabled extensions

Change extension manager to append '(disabled)' after the extension name
when an extension is disabled, and to use disabled text color, which is
both more consistent with the icon display, and improves recognizability
of disabled extensions.

git-svn-id: http://svn.slicer.org/Slicer4/trunk@23168 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/QTGUI/qSlicerExtensionsManageWidget.cxx Diff File
 First  Prev  1 2 3 ... 10 ... 20 ... 30 ... 40 ... 50 ... 60 ... 70 ... 80 ... 90 ... 100 ... 110 ... 112 113 114 115 116 117 118 ... 120 ... 130 ... 133 134 135  Next  Last