Slicer: 2145-support-for-installing-extension-from-file 550ad591

Author Committer Branch Timestamp Parent
johan.andruejol johan.andruejol 2145-support-for-installing-extension-from-file 2013-07-25 16:33:00 2145-support-for-installing-extension-from-file 6a4d14df
Changeset

ENH: Custom style for slicer

Allow the slicer to use custom styles. This rests on the Qt style plugin
framework. The style plugins must be compiled with the same Qt as slicer,
in the same mode (debug, release...) and in shared library mode.
To facilitate the creation of new plugins, a cmake macro was added to
slicer cmake directory.
Every slicer style must inherits from qSlicerStyle. They are not detected
by the application otherwise.

The new styles can be set like modules. A setting page is added for them
where user can specify the directory containing his plugin. The additionnal
paths and the style key are added as settings. This means that the next
time slicer's session is opened, the application will automatically load
the custom style if it still exists.
Adding or removing paths necessit the application to be restarted. This
comes from the fact that the QStyleFactory is only updated upon its
creation which only happens when starting the application.
Changing the style however doesn't need to restart the application.
At this occasion, a Slicer dark style was added to the list of available
styles.

On the implementation side, the designer plugin export definition was
shortened and includes the "DESIGNER" term so it is different than the
style export macro.

Finaly, adding a fix to the slice controller widget label style so
it can work with the new dark style.

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

mod - Applications/SlicerApp/Main.cxx Diff File
mod - Base/QTGUI/CMakeLists.txt Diff File
mod - Base/QTGUI/DesignerPlugins/CMakeLists.txt Diff File
mod - Base/QTGUI/DesignerPlugins/qSlicerModulePanelPlugin.h Diff File
mod - Base/QTGUI/DesignerPlugins/qSlicerModulesListViewPlugin.h Diff File
mod - Base/QTGUI/DesignerPlugins/qSlicerMouseModeToolBarPlugin.h Diff File
mod - Base/QTGUI/DesignerPlugins/qSlicerQTGUIAbstractPlugin.h Diff File
mod - Base/QTGUI/DesignerPlugins/qSlicerQTGUIPlugins.h Diff File
mod - Base/QTGUI/DesignerPlugins/qSlicerWidgetPlugin.h Diff File
add - Base/QTGUI/Resources/UI/qSlicerSettingsStylesPanel.ui Diff File
add - Base/QTGUI/StylePlugins/CMakeLists.txt Diff File
add - Base/QTGUI/StylePlugins/qSlicerStylePlugin.cxx Diff File
add - Base/QTGUI/StylePlugins/qSlicerStylePlugin.h Diff File
mod - Base/QTGUI/qSlicerApplication.cxx Diff File
add - Base/QTGUI/qSlicerDarkStyle.cxx Diff File
add - Base/QTGUI/qSlicerDarkStyle.h Diff File
add - Base/QTGUI/qSlicerSettingsStylesPanel.cxx Diff File
add - Base/QTGUI/qSlicerSettingsStylesPanel.h Diff File
mod - Base/QTGUI/qSlicerStyle.h Diff File
add - CMake/SlicerMacroBuildQtPlugin.cmake Diff File
mod - Libs/MRML/Widgets/qMRMLViewControllerBar.cxx Diff File