tomo3D.viewers.views_tkinter_tree module

class tomo3D.viewers.views_tkinter_tree.Tomo3DDialog(parent, coordinates, extnormals, **kwargs)[source]

Bases: pyworkflow.gui.dialog.ToolbarListDialog

This class extend from ListDialog to allow calling a pyvista viewer subprocess from a list of Tomograms.

createViewer()[source]
doubleClickOnTomogram(e=None)[source]
class tomo3D.viewers.views_tkinter_tree.Tomo3DTreeProvider(tomoList)[source]

Bases: pyworkflow.gui.tree.TreeProvider

Populate Tree from SetOfTomograms.

configureTags(tree)[source]

Configure the available tags in the tree that will be setup later for each item in the tree. :returns: * Nothing

  • Adds tags to the tree for customizing
getColumns()[source]

Return a list of tuples (c, w) where: c: is the column name and index w: is the column width

getObjectActions(obj)[source]

Return a list of tuples (key, action) were keys are the string options that will be display in the context menu and the actions are the functions to call when the specific action is selected. The first action in the list will be taken as the default one when the element is double-clicked.

getObjectInfo(tomo)[source]

This function will be called by the Tree with each object that will be inserted. A dictionary should be returned with the possible following entries: ‘key’: the key value to insert in the Tree ‘text’: text of the object to be displayed

(if not passed the ‘key’ will be used)

‘image’: image path to be displayed as icon (optional) ‘parent’: the object’s parent in which insert this object (optional) ‘tags’: list of tags names (optional)

getObjectPreview(obj)[source]

Should return a tuple (img, desc), where img is the preview image and desc the description string.

getObjects()[source]

Return the objects that will be inserted in the Tree

class tomo3D.viewers.views_tkinter_tree.ViewerMRCDialog(parent, coords, **kwargs)[source]

Bases: pyworkflow.gui.dialog.ToolbarListDialog

This class extend from ListDialog to allow calling a pyvista viewer subprocess from a list of Tomograms.

doubleClickOnTomogram(tomo=None)[source]