View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002906 | Slicer4 | Core: GUI | public | 2013-01-31 09:35 | 2017-06-10 14:36 |
Reporter | nicole | Assigned To | nicole | ||
Priority | normal | Severity | block | Reproducibility | always |
Status | closed | Resolution | reopened | ||
Platform | OS | linux | OS Version | ||
Product Version | |||||
Target Version | Slicer 4.7.0 | Fixed in Version | Slicer 4.7.0 | ||
Summary | 0002906: Extra model hierarchy nodes showing up in Models module | ||||
Description | In trying to debug the model maker I noticed that the previously hidden model hierarchy nodes that point to the models are now being shown in the Models module. | ||||
Steps To Reproduce | Load a model | ||||
Additional Information | I tried looking back in the code: taking out the change to qMRMLSceneHierarchyModel.cxx | ||||
Tags | Adopted, Deprecation | ||||
2013-01-31 09:35
|
|
What are the properties of such "ModelHierarchy" node ? |
|
It's a vtkMRMLModelHierarchyNode |
|
It's visible because the node is Hidden but the tree view show hidden nodes (https://github.com/Slicer/Slicer/blob/master/Modules/Loadable/Models/qSlicerModelsModuleWidget.cxx#L142-143). So why do you think the Models module shouldn't display the node? |
|
For the 1:1 model hierarchy nodes (no children, just associated nodes), they've always been set as Hidden but they weren't shown before in the Models GUI. (see ModelsModuleHierarchyBug-AbdominalAtlasBefore.jpg) For the models module, yes, if the model heirarchy node has the hidden flag on, it has an associated node id and no other hierarchy nodes have it as a parent, it shouldn't be visible in the tree. If someone drags a model to be a child of another model, creating a child on the 1:1 model heirarchy node, I'm fine with it staying hidden and just having the visible tree view structure reflect the hierarchy. |
|
2013-01-31 12:04
|
|
2013-01-31 12:29
|
|
If it is the case: "all hierarchy nodes with no children but with associated nodes are hidden to the view", then let's take the following example:
I think we should simply work with the hidden flag. |
|
I'm fine with the example as given, but we should check with Marianna and Ron to be sure that works for them. |
|
Reminder sent to: kikinis, marianna Please weigh in on the future and backward compatible behaviour of the Models GUI. |
|
We can do something similar to: |
|
I had a quick chat with Ron, he said that since the scenes that we're talking about aren't that numerous (only the atlases), we could fix them on a case by case basis. He also says that "simpler is better" in terms of the display and having those extra hierarchy nodes showing isn't good. |
|
I chatted with Marianna, she needs drag and drop to work and no extra model hierarchy nodes cluttering up the UI. Changes needed to fix the models gui starting from current code: Libs/MRML/Core/vtkMRMLModelHierarchyNode.cxx - set hide from editors to false Alternately: keep the default being hide from editors is true on the hierarchy node and explicitly set it to false when necessary. Either way, it would probably best to be explicitly setting hide from editors on new hierarchy nodes. The changes above seem to work, checking them in... see svn 21657. Marianna will test the nightly build on Monday and leave feedback. |
|
I agree with Nicole, the low level hierarchy nodes serve as "links" from hierarchy to models, and have no meaning to the user. They should not be visible to the user. |
|
Following r21657, should this issue be resolved ? |
|
I've had feedback from Marianna: the head and neck atlas as well as the brain atlas are showing no models in the Models gui after r21657. The abdominal atlas is okay. The knee atlas is also fine. |
|
How about we add a fix when loading those scenes instead ? |
|
@Julien: Make sens. Thanks for pointing this out. |
|
Julien's proposal requires changing the way the mrml files are versioned as well as putting in a special case in the parser. If the versioning can be tied to the "official" version so that it only has to be updated in one place each time, I'm fine with going that route. Otherwise I'm fine with updating the mrml files on a case by case basis. I found an odd thing as I was making the script: after running this in the python terminal, the Models GUI didn't update to show the new settings. I had to save the .mrml file and reload it to see that it had worked: |
|
The odd behavior is due to an optimization of the models. |
|
@Julien/nicole: If the property is expected to be read-only, no setter should exist. If a setter exist, we should assume it can be updated using the python console. @nicole: Updating the mrml on case by case is counter productive. Yes, the versioning of MRML should be associated with a specific version set at one single location. I would vote for a MRML specific version that we would set in the Libs/MRML/Core/CMakeLists.txt |
|
It's more of a developer action to change that flag while debugging a module. I'm a bit worried that with the optimisations that you can get into a state where you want the tree to update but it's not possible to do. Maybe add a hot key or only in python "force update" operation to the trees? |
|
for the tree views, there is the undocumented '!' key :-) |
|
If such change are made only from python, waiting time shouldn't be an issue. I would suggest we keep things simple and avoid "forceupdate", "hot key", ... etc The optimization done by Julien was done with an implicit knowledge, we should either:
If such case is reserved to a handful of developer, documenting should be enough. |
|
The main reason I'm hesitating over removing the Set call is that the mrml nodes have hide from editors set to true by default. Every time a developer makes a new mrml node, they have to decide if they want their node to show up in drop down menus and in mrml tree views and in any other node lists. Sometimes they want them in one but not the other(s) and use the show hidden flag. The change that triggered this bug report has led to a change in Slicer's default behaviour in the trees that resulted in my changes to work around those changes, so I'd like to add this topic to the developer hangout tomorrow, I'd like to get Steve and Alex's input on it before we make even more changes. |
|
Documentation has been added in r21661. |
|
Is this bug fixed ? I saw Nicole fixed the parent issue. |
|
Looks like the original bug is fixed, can't reproduce it in the current svn trunk. |
|
Closing resolved issues that have not been updated in more than 3 months |
|
Hide from editors default change commited as svn 22937: |
|
Quick test to instatiate all but slice nodes: See NotHiddenFromEditorsDataGUI attachment. |
|
2014-03-11 10:35
|
NotHiddenFromEditorsDataGUI.tiff (272,814 bytes) |
Pull request to change Slicer MRML core nodes: |
|
OpenIGTLinkIF fix is in: |
|
Based on the comments, the issue seems to have been fixed. |
|
Slicer: 2145-support-for-installing-extension-from-file 0c90ed34 2013-02-01 18:32:24 naucoin Details Diff |
BUG: adjust hidden flag on model hierarchy nodes to get back to previous behaviour Libs/MRML/Core/vtkMRMLModelHierarchyNode.cxx - set hide from editors to false as a default Modules/Loadable/Models/Resources/UI/qSlicerModelsModuleWidget.ui - set showHidden to false Modules/Loadable/Models/qSlicerModelsModuleWidget.cxx - take out call to setShowHiddenForTypes Libs/MRML/Widgets/qMRMLSceneHierarchyModel.cxx - set hidden true on new 1:1 hierarchy nodes Modules/CLI/ModelMaker/ModelMaker.cxx - ditto Base/QTCLI/qSlicerCLIModuleUIHelper.cxx - set show hidden to false and setting the node type by directly checking multiple and aggregate. Issue 0002906 git-svn-id: http://svn.slicer.org/Slicer4/trunk@21657 3bd1e089-480b-0410-8dfb-8563597acbee |
||
mod - Base/QTCLI/qSlicerCLIModuleUIHelper.cxx | Diff File | ||
mod - Libs/MRML/Core/vtkMRMLModelHierarchyNode.cxx | Diff File | ||
mod - Libs/MRML/Widgets/qMRMLSceneHierarchyModel.cxx | Diff File | ||
mod - Modules/CLI/ModelMaker/ModelMaker.cxx | Diff File | ||
mod - Modules/Loadable/Models/Resources/UI/qSlicerModelsModuleWidget.ui | Diff File | ||
mod - Modules/Loadable/Models/qSlicerModelsModuleWidget.cxx | Diff File | ||
Import 2017-06-07 23:51:09: master 58453b94 2014-03-10 18:27:24 naucoin Details Diff |
ENH: default value of HideFromEditors flag set to 0 This change will cause new mrml nodes to not be hidden from editors by default, developers subclassing vtkMRMLNode will need to specify the following in constructors to over ride this behaviour: this->HideFromEditors = 1; MRML Core nodes that should be hidden in the Data module were updated to stay hidden. From the Slicer Roadmap for 4.4: https://www.slicer.org/slicerWiki/index.php/Roadmap#4.4 Issue 0002906 git-svn-id: http://svn.slicer.org/Slicer4/trunk@22937 3bd1e089-480b-0410-8dfb-8563597acbee |
||
mod - Libs/MRML/Core/vtkMRMLCrosshairNode.cxx | Diff File | ||
mod - Libs/MRML/Core/vtkMRMLDisplayNode.cxx | Diff File | ||
mod - Libs/MRML/Core/vtkMRMLInteractionNode.cxx | Diff File | ||
mod - Libs/MRML/Core/vtkMRMLNode.cxx | Diff File | ||
mod - Libs/MRML/Core/vtkMRMLScriptedModuleNode.cxx | Diff File | ||
mod - Libs/MRML/Core/vtkMRMLSelectionNode.cxx | Diff File | ||
mod - Libs/MRML/Core/vtkMRMLSliceCompositeNode.cxx | Diff File | ||
mod - Libs/MRML/Core/vtkMRMLStorageNode.cxx | Diff File | ||
mod - Libs/MRML/Core/vtkMRMLUnitNode.cxx | Diff File | ||
Slicer: 490-qMRMLSceneHierarchyModel-avoid-extra-scene-lookup 6b2539c1 2016-03-31 14:56:06 naucoin Details Diff |
BUG: fix hide from editor flag on volume rendering nodes The volume rendering nodes are appearing in the Data tree after the change to set the default of the hide from editors flag to false on the MRML node superclass. This change sets them hidden by default and sets up the display node combo box to show them in the Volume Rendering Inputs panel. Issue 0002906 git-svn-id: http://svn.slicer.org/Slicer4/trunk@24995 3bd1e089-480b-0410-8dfb-8563597acbee |
||
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLCPURayCastVolumeRenderingDisplayNode.cxx | Diff File | ||
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLGPURayCastVolumeRenderingDisplayNode.cxx | Diff File | ||
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLVolumeRenderingScenarioNode.cxx | Diff File | ||
mod - Modules/Loadable/VolumeRendering/Resources/UI/qSlicerVolumeRenderingModuleWidget.ui | Diff File | ||
Import 2017-06-07 23:51:09: master 6b2539c1 2016-03-31 14:56:06 naucoin Details Diff |
BUG: fix hide from editor flag on volume rendering nodes The volume rendering nodes are appearing in the Data tree after the change to set the default of the hide from editors flag to false on the MRML node superclass. This change sets them hidden by default and sets up the display node combo box to show them in the Volume Rendering Inputs panel. Issue 0002906 git-svn-id: http://svn.slicer.org/Slicer4/trunk@24995 3bd1e089-480b-0410-8dfb-8563597acbee |
||
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLCPURayCastVolumeRenderingDisplayNode.cxx | Diff File | ||
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLGPURayCastVolumeRenderingDisplayNode.cxx | Diff File | ||
mod - Modules/Loadable/VolumeRendering/MRML/vtkMRMLVolumeRenderingScenarioNode.cxx | Diff File | ||
mod - Modules/Loadable/VolumeRendering/Resources/UI/qSlicerVolumeRenderingModuleWidget.ui | Diff File |
Date Modified | Username | Field | Change |
---|---|---|---|
2013-01-31 09:35 | nicole | New Issue | |
2013-01-31 09:35 | nicole | Status | new => assigned |
2013-01-31 09:35 | nicole | Assigned To | => finetjul |
2013-01-31 09:35 | nicole | File Added: ModelsModuleHierarchyBug.jpeg | |
2013-01-31 10:06 | finetjul | Note Added: 0007772 | |
2013-01-31 10:15 | nicole | Note Added: 0007773 | |
2013-01-31 11:47 | finetjul | Note Added: 0007774 | |
2013-01-31 12:04 | nicole | Note Added: 0007775 | |
2013-01-31 12:04 | nicole | File Added: ModelsModuleHierarchyBug-AbdominalAtlas.jpeg | |
2013-01-31 12:29 | nicole | File Added: ModelsModuleHierarchyBug-AbdominalAtlasBefore.jpg | |
2013-01-31 12:29 | nicole | Note Edited: 0007775 | |
2013-01-31 14:57 | finetjul | Note Added: 0007776 | |
2013-02-01 05:58 | nicole | Note Added: 0007782 | |
2013-02-01 06:00 | nicole | Note Added: 0007783 | |
2013-02-01 06:02 | finetjul | Note Added: 0007784 | |
2013-02-01 10:15 | nicole | Note Added: 0007788 | |
2013-02-01 13:32 | nicole | Note Added: 0007790 | |
2013-02-03 09:00 | alexy | Note Added: 0007791 | |
2013-02-04 08:51 | jcfr | Note Added: 0007796 | |
2013-02-04 09:55 | nicole | Note Added: 0007798 | |
2013-02-04 10:06 | finetjul | Note Added: 0007799 | |
2013-02-04 10:13 | jcfr | Note Added: 0007800 | |
2013-02-04 10:50 | nicole | Note Added: 0007802 | |
2013-02-04 11:14 | finetjul | Note Added: 0007805 | |
2013-02-04 11:16 | nicole | Note Edited: 0007802 | |
2013-02-04 11:35 | jcfr | Note Added: 0007806 | |
2013-02-04 11:37 | nicole | Note Added: 0007807 | |
2013-02-04 11:42 | finetjul | Note Added: 0007808 | |
2013-02-04 11:43 | jcfr | Note Added: 0007809 | |
2013-02-04 11:43 | jcfr | Note Edited: 0007809 | |
2013-02-04 12:10 | nicole | Note Added: 0007811 | |
2013-02-04 12:19 | finetjul | Note Added: 0007812 | |
2013-02-12 09:37 | jcfr | Target Version | Slicer 4.2.3 => Slicer 4.3.0 |
2013-02-15 10:59 | finetjul | Tag Attached: Deprecation | |
2013-02-22 14:20 | jcfr | Tag Attached: Adopted | |
2013-02-22 14:21 | jcfr | Assigned To | finetjul => Lchauvin |
2013-03-13 11:18 | nicole | Relationship added | parent of 0003007 |
2013-07-13 08:12 | Lchauvin | Note Added: 0009043 | |
2013-08-27 12:19 | nicole | Note Added: 0009643 | |
2013-08-27 12:19 | nicole | Status | assigned => resolved |
2013-08-27 12:19 | nicole | Fixed in Version | => Slicer 4.3.0 |
2013-08-27 12:19 | nicole | Resolution | open => fixed |
2013-08-27 12:21 | nicole | Note Edited: 0009643 | |
2014-03-06 05:22 | jcfr | Note Added: 0011173 | |
2014-03-06 05:23 | jcfr | Status | resolved => closed |
2014-03-10 14:29 | nicole | Assigned To | Lchauvin => nicole |
2014-03-10 14:29 | nicole | Note Added: 0011408 | |
2014-03-10 14:29 | nicole | Status | closed => feedback |
2014-03-10 14:29 | nicole | Resolution | fixed => reopened |
2014-03-11 10:35 | nicole | Note Added: 0011421 | |
2014-03-11 10:35 | nicole | File Added: NotHiddenFromEditorsDataGUI.tiff | |
2015-11-03 19:36 | jcfr | Status | feedback => assigned |
2015-11-03 19:36 | jcfr | Fixed in Version | Slicer 4.3.0 => |
2015-11-03 19:36 | jcfr | Target Version | Slicer 4.3.0 => Slicer 4.5.0-1 |
2015-11-03 19:37 | jcfr | Relationship added | related to 0003462 |
2015-11-03 20:32 | jcfr | Relationship added | related to 0003126 |
2015-11-03 20:33 | jcfr | Relationship deleted | related to 0003126 |
2015-11-10 14:50 | jcfr | Target Version | Slicer 4.5.0-1 => Slicer 4.5.1 |
2015-12-02 12:38 | nicole | Note Added: 0013656 | |
2016-03-31 15:04 | nicole | Note Added: 0013850 | |
2016-10-12 02:56 | jcfr | Target Version | Slicer 4.5.1 => Slicer 4.7.0 |
2017-06-06 23:19 | Changeset attached | => Import 2017-06-06 21:34:24 490-qMRMLSceneHierarchyModel-avoid-extra-scene-lookup 6b2539c1 | |
2017-06-07 23:27 | Changeset attached | => Slicer 490-qMRMLSceneHierarchyModel-avoid-extra-scene-lookup 6b2539c1 | |
2017-06-07 23:27 | Changeset attached | => Slicer 2145-support-for-installing-extension-from-file 0c90ed34 | |
2017-06-09 23:55 | lassoan | Status | assigned => closed |
2017-06-09 23:55 | lassoan | Note Added: 0014712 | |
2017-06-10 08:51 | Changeset attached | => Slicer master 6b2539c1 | |
2017-06-10 08:51 | Changeset attached | => Slicer master 58453b94 | |
2017-06-10 14:36 | jcfr | Fixed in Version | => Slicer 4.7.0 |