GSI Object Oriented Online Offline (Go4) GO4-6.4.0
|
Files | |
QUserPanel.cpp | |
QUserPanel.h | |
Set GO4USERGUI variable to location, where user gui is istalled. For instance:
export GO4USERGUI=$HOME/UserGUI
This directory should contain library with name libGo4UserGui.so. If name of library was changed, it should be specified in GO4USERGUI variable:
export GO4USERGUI=$HOME/UserGUI/libAlternativeUserGui.so
If you want to use any classes from external libraries in the user gui, you need to set the GO4USERLIBRARY variable to let these libraries be loaded.
For example, if the user gui works with a Go4 parameter class that is defined for a user analysis at $HOME/UserAnalysis directory, the set up would be:
export GO4USERLIBRARY=$GO4SYS/lib/libGo4Analysis.so:$HOME/UserAnalysis/libGo4UserAnalysis.so
NOTE that the Go4 analysis library libGo4Analysis.so needs to be specified here as well, because it is not linked to the Go4 GUI by default.
Most of *.ui files inside go4 (including user gui) contains special go4 classes, which does not known by Qt designer. To view and modify these classes in designer, special plugin should be created.
For that in $GO4SYS directory call:
shell> make plugin
This will create libgo4plugin.so library in $GO4SYS/Go4plugin directory. This file should be copied to $QTDIR/plugins/designer directory (this may require root privileges).
There are several limitations, which should be kept in mind:
User gui library should always include StartUserPanel(void *) function, which called by main gui once when library is loaded. This function should create main user widget and return its pointer back. In provided example this function situated in the beginning of QUserPanel.cpp file.
9.Nov.2006 S.Linev(at)gsi.de