View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002576 | Slicer4 | Core: GUI | public | 2012-09-28 06:53 | 2017-06-07 23:27 |
Reporter | kikinis | Assigned To | nicole | ||
Priority | normal | Severity | feature | Reproducibility | N/A |
Status | closed | Resolution | fixed | ||
Platform | Mac | OS | OS X | OS Version | 10.8.2 |
Product Version | Slicer 4.1.1 | ||||
Target Version | Slicer 4.3.0 | Fixed in Version | Slicer 4.2.1 | ||
Summary | 0002576: It would be good to have a way to turn off/on all models | ||||
Description | adding the eye to the top level would accomplish that. | ||||
Tags | No tags attached. | ||||
Initial implementation checked into my github[1], need to do a bit more testing to make sure that batch processing the display toggle works well, as well as getting a bit of feedback about toggling the hierarchy display nodes[2]. [1] https://github.com/naucoin/Slicer/commit/d964bdb9ffdf249cd793e27917e5b9b7e706f5db [2] Currently not toggling hierarchy display node visibility. This can leave a hierarchy node in a different state than the models under it, but if you click the apply to children check box, you can use that visibility. Or toggle the eye icon a couple of times to push that visibility down. |
|
Commited to svn 21670 so I can get feedback from the nightly build. http://viewvc.slicer.org/viewvc.cgi/Slicer4?view=revision&sortby=file&revision=21670 |
|
Let me know if you want the hierarchy node visibility also set. |
|
Hi Nicole, In commit r21670, Looking at the code "vtkSlicerModelsLogic.cxx", it seems the following piece of code: // ------------- could be changed into something simpler //----------------- this->GetMRMLScene()->StartState(vtkMRMLScene::BatchProcessState); What are the node having the string "Volume Slice" in their name ? I loaded the SPL Atlas and couldn't see any node with such name. Thanks |
|
In the 3D scene the 2d slice planes are displayed using model nodes. |
|
1) The string "Volume Slice" is indeed hardcoded here [1] Please, consider adding a public member to "vtkMRMLSliceLogic.h": const std::string SLICE_MODEL_NODE_NAME_SUFFIX set to "Volume Slice". This member would then be re-used where appropriate. 2) In addition, a function named "IsSliceModelNode(vtkMRMLModelNode * node)" should probably be added and re-used where it applies. 3) Hardcoding such string will cause us more trouble moving forward. 4) I still think the code could be simplified, considering this previous remark, what do you think of: //----------------- this->GetMRMLScene()->StartState(vtkMRMLScene::BatchProcessState); 5) The SetName function of vtkMRMLModelNode exposed in the public api should also check that user doesn't provide a name ending with the "reserved" suffix. Unexpected behavior may happen otherwise. Model slice node should be handled through a dedicated API. [1] https://github.com/Slicer/Slicer/blob/master/Libs/MRML/Logic/vtkMRMLSliceLogic.cxx#L1332 |
|
For the rest of your points, if we're going to make changes, I'd like to think about it a bit more to find a more elegant solution that keeping the reliance on a naming convention for volume slices. We could use an attribute, or subclass the model class. |
|
Using an attribute or relying on the name suffix, I still think adding the method "IsSliceModelNode" to "vtkMRMLSliceLogic"makes sense. Either way (attribute or based on the name) I would suggest we change the code to minimize confusion and ease future maintenance. If it take more than a day, we should probably go ahead and proceed to the easy change. It would be better that what we have. To address the fact annotation can be returned, checking the classname make sense. That said, I would recommend a different approach. The "SetDisplayVisibility" of annotation could be a no-op, instead a method named "SetAnnotationVisibility" could be added. Doing so, model would all be treated the same way. User deriving from ModelNode would also be ensure that their node would be considered as a model. This is a good example illustrating the fact that when the code itself is not explicit enough, comment could help understanding the context :) Thanks |
|
Hrm, adding IsSliceModelNode to the logic means another step in the models module code to get that logic point, but I think it seems simple enough. |
|
Got it, I guess the following could be a good compromise: Approach number 1 - Exclude all vtkMRMLModelNode subclasses. //----------------- Approach number 2 - Exclude vtkMRMLAnnotationNode specifically. It has the disadvantage of including a "dependency" on the annotation module. This is a hack ... //----------------- Ideally, a general mechanism should be implemented. Both approach are hacks .. |
|
svn 21687[1] incorporates some of the suggestions from this bug. [1] http://viewvc.slicer.org/viewvc.cgi/Slicer4?view=revision&sortby=file&revision=21687 |
|
Thanks for working on this patch. |
|
All models on/off buttons have been added to Models gui. |
|
Slicer: 2145-support-for-installing-extension-from-file f789e693 2013-02-07 16:39:12 naucoin Details Diff |
ENH: add buttons to show/hide all models. Issue 0002576 git-svn-id: http://svn.slicer.org/Slicer4/trunk@21670 3bd1e089-480b-0410-8dfb-8563597acbee |
||
mod - Modules/Loadable/Models/Logic/vtkSlicerModelsLogic.cxx | Diff File | ||
mod - Modules/Loadable/Models/Logic/vtkSlicerModelsLogic.h | Diff File | ||
mod - Modules/Loadable/Models/Resources/UI/qSlicerModelsModuleWidget.ui | Diff File | ||
mod - Modules/Loadable/Models/qSlicerModelsModuleWidget.cxx | Diff File | ||
mod - Modules/Loadable/Models/qSlicerModelsModuleWidget.h | Diff File | ||
Slicer: 2145-support-for-installing-extension-from-file 4fe83f1d 2013-02-11 17:31:01 naucoin Details Diff |
BUG: clean up the model node logic for toggling visibility. Model slice nodes are distinguished by name rather than class, make that a more easily set string. Don't toggle annotations or fiber bundle nodes or any other sub classes of model nodes. Issue 0002576 git-svn-id: http://svn.slicer.org/Slicer4/trunk@21687 3bd1e089-480b-0410-8dfb-8563597acbee |
||
mod - Libs/MRML/Logic/vtkMRMLSliceLogic.cxx | Diff File | ||
mod - Libs/MRML/Logic/vtkMRMLSliceLogic.h | Diff File | ||
mod - Modules/Loadable/Models/Logic/vtkSlicerModelsLogic.cxx | Diff File |
Date Modified | Username | Field | Change |
---|---|---|---|
2012-09-28 06:53 | kikinis | New Issue | |
2012-09-28 06:53 | kikinis | Status | new => assigned |
2012-09-28 06:53 | kikinis | Assigned To | => nicole |
2012-12-08 10:12 | jcfr | Target Version | => Slicer 4.3.0 |
2013-02-07 09:34 | nicole | Note Added: 0007835 | |
2013-02-07 11:40 | nicole | Note Added: 0007836 | |
2013-02-07 11:41 | nicole | Note Added: 0007837 | |
2013-02-07 11:41 | nicole | Status | assigned => feedback |
2013-02-08 12:18 | jcfr | Note Added: 0007857 | |
2013-02-11 06:28 | nicole | Note Added: 0007868 | |
2013-02-11 07:03 | jcfr | Note Added: 0007871 | |
2013-02-11 07:06 | jcfr | Note Edited: 0007871 | |
2013-02-11 08:05 | nicole | Note Added: 0007873 | |
2013-02-11 08:33 | jcfr | Note Added: 0007874 | |
2013-02-11 09:13 | nicole | Note Added: 0007875 | |
2013-02-11 09:35 | jcfr | Note Added: 0007876 | |
2013-02-11 12:31 | nicole | Note Added: 0007884 | |
2013-02-11 12:49 | jcfr | Note Added: 0007885 | |
2013-07-09 07:08 | nicole | Note Added: 0008931 | |
2013-07-09 07:08 | nicole | Status | feedback => resolved |
2013-07-09 07:08 | nicole | Fixed in Version | => Slicer 4.2.1 |
2013-07-09 07:08 | nicole | Resolution | open => fixed |
2013-08-06 07:11 | kikinis | Status | resolved => closed |
2015-11-03 15:26 | jcfr | Relationship added | related to 0003462 |
2017-06-07 23:27 | Changeset attached | => Slicer 2145-support-for-installing-extension-from-file 4fe83f1d | |
2017-06-07 23:27 | Changeset attached | => Slicer 2145-support-for-installing-extension-from-file f789e693 |