Import 2017-06-07 23:51:09: master a95df863

Author Committer Branch Timestamp Parent
jcfr jcfr master 2015-03-05 03:45:43 master 7176e425
Changeset

ENH: Add qMRMLLayoutViewFactory

This gives the ability to instantiate a different QWidget for any view
(e.g. 3D, slice, chart). Limited support is given to handle a new type
view (subclass of vtkMRMLAbstractViewNode). For full support, the layout
logic would need a similar plugin mechanism.

/// MRML layout manager that instantiates the QT widgets and layouts from the
/// layout node and the view nodes in the scene.
/// The management (creation, configuration and deletion) of the view widgets
/// are delegated to qMRMLLayoutViewFactory.
/// Example to change a default factory:
/// \code
/// qMRMLLayoutSliceViewFactory mrmlSliceViewFactory =
/// qobject_cast<qMRMLLayoutSliceViewFactory
>(
/// app->layoutManager()->mrmlViewFactory("vtkMRMLSliceNode"));
/// MySliceViewFactory* mySliceViewFactory =
/// new MySliceViewFactory(app->layoutManager());
/// mySliceViewFactory->setSliceLogics(mrmlSliceViewFactory->sliceLogics());
///
/// app->layoutManager()->unregisterViewFactory(mrmlSliceViewFactory);
/// app->layoutManager()->registerViewFactory(mySliceViewFactory);
/// \endcode
/// You can also register ctkLayoutViewFactories that are not related to MRML
/// view nodes.

From: Julien Finet <julien.finet@kitware.com>

git-svn-id: http://svn.slicer.org/Slicer4/trunk@24017 3bd1e089-480b-0410-8dfb-8563597acbee

mod - Base/QTGUI/qSlicerLayoutManager.cxx Diff File
mod - Base/QTGUI/qSlicerLayoutManager.h Diff File
mod - Libs/MRML/Logic/vtkMRMLLayoutLogic.cxx Diff File
mod - Libs/MRML/Logic/vtkMRMLLayoutLogic.h Diff File
mod - Libs/MRML/Widgets/CMakeLists.txt Diff File
mod - Libs/MRML/Widgets/qMRMLChartView.cxx Diff File
mod - Libs/MRML/Widgets/qMRMLLayoutManager.cxx Diff File
mod - Libs/MRML/Widgets/qMRMLLayoutManager.h Diff File
mod - Libs/MRML/Widgets/qMRMLLayoutManager_p.h Diff File
add - Libs/MRML/Widgets/qMRMLLayoutViewFactory.cxx Diff File
add - Libs/MRML/Widgets/qMRMLLayoutViewFactory.h Diff File
mod - Libs/MRML/Widgets/qMRMLLayoutWidget.cxx Diff File
mod - Libs/MRML/Widgets/qMRMLLayoutWidget.h Diff File