// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: G4Qt.cc,v 1.15 2010/01/06 14:07:34 lgarnier Exp $ // GEANT4 tag $Name: $ // // L. Garnier #if defined(G4INTY_BUILD_QT) || defined(G4INTY_USE_QT) #include #include #include "G4ios.hh" #include "G4Qt.hh" #include "G4UIQt.hh" #include #include G4Qt* G4Qt::instance = NULL; static G4bool QtInited = FALSE; /***************************************************************************/ G4Qt* G4Qt::getInstance ( ) /***************************************************************************/ /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ { return G4Qt::getInstance (0,NULL,(char*)"Geant4"); } /***************************************************************************/ G4Qt* G4Qt::getInstance ( int a_argn ,char** a_args ,char* a_class ) /***************************************************************************/ /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ { if (instance==NULL) { instance = new G4Qt(a_argn,a_args,a_class); } #ifdef G4DEBUG_INTERFACES_COMMON printf("G4Qt::getInstance :%d\n",instance); #endif return instance; } /***************************************************************************/ G4Qt::G4Qt ( int a_argn ,char** a_args ,char* /*a_class */ ) :fG4UI(NULL) /***************************************************************************/ /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ { argn = 0; args = NULL; #ifdef G4DEBUG_INTERFACES_COMMON printf("G4Qt::G4Qt try to inited Qt\n"); #endif // Check if Qt already init in another external app if(qApp) { QtInited = TRUE; //#if QT_VERSION < 0x040000 // SetMainInteractor (&qApp); //#else SetMainInteractor (qApp); //#endif SetArguments (a_argn,a_args); #ifdef G4DEBUG_INTERFACES_COMMON printf("G4Qt::G4Qt alredy inited in external \n"); #endif } else { if(QtInited==FALSE) { //Qt should be Inited once ! // Then two cases : // - It is the first time we create G4UI (argc!=0) // -> Inited and register // - It is the first time we create G4VIS (argc == 0) // -> Inited and NOT register if (a_argn != 0) { argn = a_argn; args = a_args; } else { //argc = 0 // FIXME : That's not the good arguments, but I don't know how to get args from other Interactor. // Ex: How to get them from G4Xt ? argn = 1; args = (char **)malloc( 1 * sizeof(char *) ); args[0] = (char *)malloc(10 * sizeof(char)); strncpy(args[0], "my_app \0", 9); } int *p_argn = (int*)malloc(sizeof(int)); *p_argn = argn; #if QT_VERSION < 0x040000 qApp = new QApplication (*p_argn, args); #else #ifdef G4DEBUG_INTERFACES_COMMON printf("G4Qt::G4Qt QAppl \n"); #endif new QApplication (*p_argn, args); #endif if(!qApp) { G4cout << "G4Qt : Unable to init Qt." << G4endl; } else { QtInited = TRUE; if (a_argn != 0) { #ifdef G4DEBUG_INTERFACES_COMMON printf("G4Qt::G4Qt SetMainInteractor\n"); #endif SetMainInteractor (qApp); } SetArguments (a_argn,a_args); #ifdef G4DEBUG_INTERFACES_COMMON printf("G4Qt::G4Qt inited Qt END\n"); #endif } } } #ifdef G4DEBUG_INTERFACES_COMMON if (qApp) { printf("G4Qt::qApp exist adress:%d\n",this); } else { printf("G4Qt::qApp not exist\n"); } #endif // AddDispatcher ((G4DispatchFunction)XtDispatchEvent); } /***************************************************************************/ G4Qt::~G4Qt ( ) /***************************************************************************/ /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ { if(this==instance) { instance = NULL; } } /***************************************************************************/ G4bool G4Qt::Inited ( ) /***************************************************************************/ /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ { return QtInited; } /***************************************************************************/ /** Si j'ai bien compris, cette fonction ne sert à rien */ void* G4Qt::GetEvent ( ) /***************************************************************************/ /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ { //FIXME // G4cout << "G4Qt : Rien compris a cette fonction G4Qt::GetEvent." << G4endl; // static XEvent event; // if(appContext==NULL) return NULL; // if(mainApp==NULL) return NULL; // QtAppNextEvent (appContext, &event); // return &event; printf("*"); return 0; } /***************************************************************************/ void G4Qt::FlushAndWaitExecution ( ) /***************************************************************************/ /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ { // printf("G4Qt::FlushAndWaitExecution :: Flush ....\n"); if(!qApp) return; qApp->processEvents(); } /***************************************************************************/ void G4Qt::SetG4UI ( G4UIQt* ui ) /***************************************************************************/ /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ { #ifdef G4DEBUG_INTERFACES_COMMON printf("G4Qt::SetG4UI \n"); #endif fG4UI = ui; } /***************************************************************************/ bool G4Qt::AddTabWidget ( QWidget * vis ,QString name ,int sizeX ,int sizeY ) /***************************************************************************/ /*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ { if (fG4UI != NULL) { return fG4UI->AddTabWidget(vis,name,sizeX,sizeY); } return false; } #endif