Difference between revisions of "Documentation/4.1/Developers/Tutorials/QtDesigner"
(Prepend documentation/versioncheck template. See http://na-mic.org/Mantis/view.php?id=2887) |
|||
(3 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
+ | <noinclude>{{documentation/versioncheck}}</noinclude> | ||
=Using custom widgets in Qt Designer= | =Using custom widgets in Qt Designer= | ||
==Straight to the point== | ==Straight to the point== | ||
Line 15: | Line 16: | ||
*the first (not detailed here) is to copy (or symlink) the CTK and MRML plugin libraries into <i>%QT_DIR%/plugins/designer</i>, | *the first (not detailed here) is to copy (or symlink) the CTK and MRML plugin libraries into <i>%QT_DIR%/plugins/designer</i>, | ||
*the second is to set the environment variable <code>QT_PLUGIN_PATH</code> to the directory <i>Slicer-build/bin</i> containing the subdirectory <i>designer</i> with the plugin libraries.<br> | *the second is to set the environment variable <code>QT_PLUGIN_PATH</code> to the directory <i>Slicer-build/bin</i> containing the subdirectory <i>designer</i> with the plugin libraries.<br> | ||
− | '''Note:''' Qt requires that the directory containing the designer plugins is named "designer". | + | |
+ | '''Note:''' Qt requires that the directory containing the designer plugins is named "designer". | ||
+ | |||
+ | Consider reading the [http://doc.qt.nokia.com/{{documentation/{{documentation/version}}/qtversion}}/designer-manual.html Qt Designer documentation] | ||
+ | |||
=== Windows notes === | === Windows notes === | ||
On Windows, Qt Designer can only load plugins that have been compiled in the same build mode than Qt Designer. For example, if Qt is built in Debug mode, the plugins must also be built in Debug mode to be loaded by Qt Designer.<br> | On Windows, Qt Designer can only load plugins that have been compiled in the same build mode than Qt Designer. For example, if Qt is built in Debug mode, the plugins must also be built in Debug mode to be loaded by Qt Designer.<br> | ||
Line 49: | Line 54: | ||
!align=left style="border-bottom: 1px solid grey;"|Windows | !align=left style="border-bottom: 1px solid grey;"|Windows | ||
|- | |- | ||
− | |colspan="2"| | + | |colspan="2"| |
+ | $ make -j4 | ||
+ | or just build the related project | ||
+ | $ make -j4 qSlicerMY_MODULE_NAMEModuleWidget | ||
| Open the inner solution file ''...Slicer-Superbuild\Slicer-build\Slicer.sln'' and build the solution (F7) or build project <code>qSlicerMY_MODULE_NAMEModuleWidgets</code> | | Open the inner solution file ''...Slicer-Superbuild\Slicer-build\Slicer.sln'' and build the solution (F7) or build project <code>qSlicerMY_MODULE_NAMEModuleWidgets</code> | ||
|} | |} | ||
Line 66: | Line 74: | ||
| <pre>> .\Slicer.exe</pre> | | <pre>> .\Slicer.exe</pre> | ||
|} | |} | ||
+ | == Frequently Asked Questions == | ||
+ | * My [http://slicer.org/doc/html/classqMRMLNodeComboBox.html qMRMLNodeComboBox] widget is always disabled (gray) in my module. | ||
+ | To be enabled, qMRMLNodeComboBox needs a MRML scene. You can set a MRML scene to the combobox programmatically or directly from Qt Designer. For the latter, you need to be in [http://doc.qt.nokia.com/{{documentation/{{documentation/version}}/qtversion}}/designer-connection-mode.html Connection mode] and connect the signal [http://slicer.org/doc/html/classqSlicerWidget.html#a9c28318f7810ccce517ea7a1b0051da4 mrmlSceneChanged(vtkMRMLScene*)] of the module panel (of type [http://slicer.org/doc/html/classqSlicerWidget.html qSlicerWidget]) with the slot [http://slicer.org/doc/html/classqMRMLNodeComboBox.html#a2249be3ccec4783b592f738f1ef7bea3 setMRMLScene(vtkMRMLScene*)]. |
Latest revision as of 07:30, 14 June 2013
Home < Documentation < 4.1 < Developers < Tutorials < QtDesigner
For the latest Slicer documentation, visit the read-the-docs. |
Contents
Using custom widgets in Qt Designer
Straight to the point
- Windows
- Compile Slicer in Release mode OR build Qt in Debug
- All
cd Slicer-build; ./Slicer --designer
If the option --designer
is not available, you should consider using QtCreator. See here for more details.
Qt Designer requirements
In order to have the CTK and MRML widgets in Qt Designer, Qt Designer offers 2 options:
- the first (not detailed here) is to copy (or symlink) the CTK and MRML plugin libraries into %QT_DIR%/plugins/designer,
- the second is to set the environment variable
QT_PLUGIN_PATH
to the directory Slicer-build/bin containing the subdirectory designer with the plugin libraries.
Note: Qt requires that the directory containing the designer plugins is named "designer".
Consider reading the Qt Designer documentation
Windows notes
On Windows, Qt Designer can only load plugins that have been compiled in the same build mode than Qt Designer. For example, if Qt is built in Debug mode, the plugins must also be built in Debug mode to be loaded by Qt Designer.
If Qt is configured to build in both debug and release modes, Qt Designer is built in release mode only. If that case, it is necessary to ensure that plugins are also built in release mode. Otherwise, you can open the solution file for Qt, and recompile Designer in debug mode.
Running Qt Designer with the correct environment variables
- On Windows, compile Slicer in the same build mode than Qt. If Qt is in Debug mode, compile Slicer in Debug mode, if it's in Release or Debug&Release mode, compile Slicer in Release mode.
- run Qt Designer via Slicer launcher located in Slicer-build.
Mac Os X | Linux | Windows |
---|---|---|
$ cd Slicer-build $ ./Slicer --designer |
> cd Slicer-build > .\Slicer.exe --designer |
If the option --designer
is not available, you should consider using QtCreator. See here for more details.
Build Slicer
- Once you are satisfied with UI, save the file, quit Designer and build Slicer to take the changes into account.
Mac Os X | Linux | Windows |
---|---|---|
$ make -j4 or just build the related project $ make -j4 qSlicerMY_MODULE_NAMEModuleWidget |
Open the inner solution file ...Slicer-Superbuild\Slicer-build\Slicer.sln and build the solution (F7) or build project qSlicerMY_MODULE_NAMEModuleWidgets
|
It generates a ui_qSlicerMY_MODULE_NAMEModule.h file in ...Slicer-Superbuild/Slicer-buildModules/Loadable/MY_MODULE_NAME/.
That file is used by ...Slicer4/Modules/Loadable/MY_MODULE_NAME/qSlicerMY_MODULE_NAMEModuleWidget.cxx.
Note: The objectName
s of each widget in the UI correspond (see the Property editor) to the variable names in C++. From your code, you can access the widgets by their objectName.
- And launch Slicer to see the result
Mac Os X | Linux | Windows |
---|---|---|
$ ./Slicer |
> .\Slicer.exe |
Frequently Asked Questions
- My qMRMLNodeComboBox widget is always disabled (gray) in my module.
To be enabled, qMRMLNodeComboBox needs a MRML scene. You can set a MRML scene to the combobox programmatically or directly from Qt Designer. For the latter, you need to be in Connection mode and connect the signal mrmlSceneChanged(vtkMRMLScene*) of the module panel (of type qSlicerWidget) with the slot setMRMLScene(vtkMRMLScene*).