Hdf5TreeView
class¶
-
class
silx.gui.hdf5.
Hdf5TreeView
(parent=None)[source]¶ Bases:
PyQt4.QtGui.QTreeView
TreeView which allow to browse HDF5 file structure.
It provides columns width auto-resizing and additional signals.
The default model is a
NexusSortFilterProxyModel
sourcing aHdf5TreeModel
. TheHdf5TreeModel
is reachable usingfindHdf5TreeModel()
. The default header isHdf5HeaderView
.Context menu is managed by the
setContextMenuPolicy()
with the value Qt.CustomContextMenu. This policy must not be changed, otherwise context menus will not work anymore. You can useaddContextMenuCallback()
andremoveContextMenuCallback()
to add your custum actions according to the selected objects.-
addContextMenuCallback
(callback)[source]¶ Register a context menu callback.
The callback will be called when a context menu is requested with the treeview and the list of selected h5py objects in parameters. The callback must return a list of
qt.QAction
object.Callbacks are stored as saferef. The object must store a reference by itself.
-
findHdf5TreeModel
()[source]¶ Find the Hdf5TreeModel from the stack of model filters.
Returns: A Hdf5TreeModel, else None Return type: Hdf5TreeModel
-
selectedH5Nodes
(ignoreBrokenLinks=True)[source]¶ Returns selected h5py objects like
h5py.File
,h5py.Group
,h5py.Dataset
or mimicked objects.Parameters: bool (ignoreBrokenLinks) – Returns objects which are not not broken links. Return type: iterator( _utils.H5Node
)
-
setSelectedH5Node
(h5Object)[source]¶ Select the specified node of the tree using an h5py node.
- If the item is found, parent items are expended, and then the item is selected.
- If the item is not found, the selection do not change.
- A none argument allow to deselect everything
Parameters: h5Object (h5py.Npde) – The node to select
-