00001 //--------------------------------------------------------------- 00002 // Go4 Release Package v2.10-5 (build 21005) 00003 // 03-Nov-2005 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at DVEE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 #include <dlfcn.h> 00017 #include <iostream.h> 00018 00019 #include "startusergui.h" 00020 #include "TSystem.h" 00021 #include "TGo4MainUserPanel.h" 00022 #include "TString.h" 00023 00024 void* StartUserGui(const char* path, void* parent) 00025 { 00026 TString fullname = path; 00027 fullname+="libGo4UserGui.so"; 00028 00029 // load Qt library for user widgets first 00030 void* lib = dlopen(fullname, RTLD_LAZY | RTLD_GLOBAL); 00031 if (lib<0) { 00032 cout <<"Can not load Qt library" << endl; 00033 return 0; 00034 } 00035 00036 // return pointer on created user top widget 00037 return new TGo4MainUserPanel((QWidget*) parent); 00038 } 00039 00040 //----------------------------END OF GO4 SOURCE FILE ---------------------