Slicer
5.2
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
|
Public Member Functions | |
def | __init__ (self, scriptedPlugin) |
def | canAddNodeToSubjectHierarchy (self, node, parentItemID) |
def | canOwnSubjectHierarchyItem (self, itemID) |
def | editProperties (self, itemID) |
def | getDisplayVisibility (self, itemID) |
def | helpText (self) |
def | icon (self, itemID) |
def | itemContextMenuActions (self) |
def | roleForPlugin (self) |
def | sceneContextMenuActions (self) |
def | setDisplayVisibility (self, itemID, visible) |
def | showContextMenuActionsForItem (self, itemID) |
def | showViewContextMenuActionsForItem (self, itemID, eventData) |
def | tooltip (self, itemID) |
def | viewContextMenuActions (self) |
def | visibilityIcon (self, visible) |
Static Public Attributes | |
filePath = __file__ | |
Scripted subject hierarchy plugin for the Annotations module. This is also an example for scripted plugins, so includes all possible methods. The methods that are not needed (i.e. the default implementation in qSlicerSubjectHierarchyAbstractPlugin is satisfactory) can simply be omitted in plugins created based on this one. The plugin registers itself on creation, but needs to be initialized from the module or application as follows: from SubjectHierarchyPlugins import AnnotationsSubjectHierarchyPlugin scriptedPlugin = slicer.qSlicerSubjectHierarchyScriptedPlugin(None) scriptedPlugin.setPythonSource(AnnotationsSubjectHierarchyPlugin.filePath)
Definition at line 8 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.__init__ | ( | self, | |
scriptedPlugin | |||
) |
Definition at line 26 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.canAddNodeToSubjectHierarchy | ( | self, | |
node, | |||
parentItemID | |||
) |
Definition at line 30 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.canOwnSubjectHierarchyItem | ( | self, | |
itemID | |||
) |
Definition at line 36 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.editProperties | ( | self, | |
itemID | |||
) |
Definition at line 85 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.getDisplayVisibility | ( | self, | |
itemID | |||
) |
Definition at line 125 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.helpText | ( | self | ) |
Definition at line 49 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.icon | ( | self, | |
itemID | |||
) |
Definition at line 62 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.itemContextMenuActions | ( | self | ) |
Definition at line 89 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.roleForPlugin | ( | self | ) |
Definition at line 46 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.sceneContextMenuActions | ( | self | ) |
Definition at line 92 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.setDisplayVisibility | ( | self, | |
itemID, | |||
visible | |||
) |
Definition at line 121 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.showContextMenuActionsForItem | ( | self, | |
itemID | |||
) |
Definition at line 95 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.showViewContextMenuActionsForItem | ( | self, | |
itemID, | |||
eventData | |||
) |
Definition at line 113 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.tooltip | ( | self, | |
itemID | |||
) |
Definition at line 116 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.viewContextMenuActions | ( | self | ) |
Important note: In order to use view menus in scripted plugins, it needs to be registered differently, so that the Python API can be fully built by the time this function is called. The following changes are necessary: 1. Remove or comment out the following line from constructor AbstractScriptedSubjectHierarchyPlugin.__init__(self, scriptedPlugin) 2. In addition to the initialization where the scripted plugin is instantialized and the source set, the plugin also needs to be registered manually: pluginHandler = slicer.qSlicerSubjectHierarchyPluginHandler.instance() pluginHandler.registerPlugin(scriptedPlugin)
Definition at line 98 of file AnnotationsSubjectHierarchyPlugin.py.
def AnnotationsSubjectHierarchyPlugin.AnnotationsSubjectHierarchyPlugin.visibilityIcon | ( | self, | |
visible | |||
) |
Definition at line 81 of file AnnotationsSubjectHierarchyPlugin.py.
|
static |
Definition at line 24 of file AnnotationsSubjectHierarchyPlugin.py.