source: trunk/geant4/interfaces/common/src/G4Qt.cc@ 788

Last change on this file since 788 was 632, checked in by garnier, 18 years ago

commit sur geant4

  • Property svn:mime-type set to text/cpp
File size: 5.9 KB
RevLine 
[481]1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
[608]27// $Id: G4Qt.cc,v 1.7 2007/11/15 18:24:28 lgarnier Exp $
[593]28// GEANT4 tag $Name: $
[481]29//
[484]30// L. Garnier
[481]31
[484]32#if defined(G4INTY_BUILD_QT) || defined(G4INTY_USE_QT)
[481]33
34#include <stdlib.h>
35#include <string.h>
36
37#include "G4ios.hh"
38
[484]39#include "G4Qt.hh"
[481]40
[595]41#include <qapplication.h>
[593]42
43
[481]44#define NewString(str) \
45 ((str) != NULL ? (strcpy((char*)malloc((unsigned)strlen(str) + 1), str)) : NULL)
46
47//static void XWidgetIconify (Widget);
48//static void XWidgetUniconify (Widget);
49//static void XDisplaySetWindowToNormalState (Display*,Window);
50
[484]51G4Qt* G4Qt::instance = NULL;
[481]52
[484]53static G4bool QtInited = FALSE;
54//static int argn = 0;
55//static char** args = NULL;
56// static QtAppContext appContext = NULL;
[496]57//static QApplication app = NULL;
[484]58
[481]59/***************************************************************************/
[484]60G4Qt* G4Qt::getInstance (
[481]61)
62/***************************************************************************/
63/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
64{
[484]65 return G4Qt::getInstance (0,NULL,(char*)"Geant4");
[481]66}
67/***************************************************************************/
[484]68G4Qt* G4Qt::getInstance (
[481]69 int a_argn
70,char** a_args
71,char* a_class
72)
73/***************************************************************************/
74/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
75{
76 if (instance==NULL) {
[484]77 instance = new G4Qt(a_argn,a_args,a_class);
[481]78 }
79 return instance;
80}
81/***************************************************************************/
[484]82G4Qt::G4Qt (
[481]83 int a_argn
84,char** a_args
85,char* a_class
86)
87/***************************************************************************/
88/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
89{
[608]90#ifdef GEANT4_QT_DEBUG
[571]91 printf("G4Qt::G4Qt try to inited Qt\n");
[608]92#endif
[484]93 if(QtInited==FALSE) { //Qt should be Inited once !
[608]94#ifdef GEANT4_QT_DEBUG
[571]95 printf("G4Qt::G4Qt inited Qt\n");
[608]96#endif
[606]97#if QT_VERSION < 0x040000
[617]98 qApp = new QApplication (a_argn, a_args);
[606]99 // QApplication qApp(a_argn, a_args);
[608]100 // if(&qApp == NULL) {
[606]101#else
[484]102 new QApplication (a_argn, a_args);
[606]103#endif
[608]104 if(!qApp) {
[484]105
106 G4cout << "G4Qt : Unable to init Qt." << G4endl;
[606]107 } else {
108 QtInited = TRUE;
[608]109 //#if QT_VERSION < 0x040000
110 // SetMainInteractor (&qApp);
111 //#else
[606]112 SetMainInteractor (qApp);
[608]113 //#endif
[606]114 SetArguments (a_argn,a_args);
[608]115#ifdef GEANT4_QT_DEBUG
[606]116 printf("G4Qt::G4Qt inited Qt END\n");
[608]117#endif
[481]118 }
119 }
[608]120#ifdef GEANT4_QT_DEBUG
[617]121 if (qApp) {
[606]122 printf("G4Qt::qApp exist\n");
[617]123 } else {
124 printf("G4Qt::qApp not exist\n");
125 }
[608]126#endif
[496]127 // AddDispatcher ((G4DispatchFunction)XtDispatchEvent);
[481]128}
129/***************************************************************************/
[484]130G4Qt::~G4Qt (
[481]131)
132/***************************************************************************/
133/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
134{
135 if(this==instance) {
136 instance = NULL;
137 }
138}
139/***************************************************************************/
[484]140G4bool G4Qt::Inited (
[481]141)
142/***************************************************************************/
143/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
144{
[484]145 return QtInited;
[481]146}
147/***************************************************************************/
[496]148/**
149 Si j'ai bien compris, cette fonction ne sert à rien
150 */
[484]151void* G4Qt::GetEvent (
[481]152)
153/***************************************************************************/
154/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
155{
[484]156//FIXME
[496]157// G4cout << "G4Qt : Rien compris a cette fonction G4Qt::GetEvent." << G4endl;
[484]158// static XEvent event;
159// if(appContext==NULL) return NULL;
160// if(mainApp==NULL) return NULL;
161// QtAppNextEvent (appContext, &event);
162// return &event;
[506]163 printf("*");
[593]164 return 0;
[481]165}
166/***************************************************************************/
[484]167void G4Qt::FlushAndWaitExecution (
[481]168)
169/***************************************************************************/
170/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
171{
[595]172 // printf("G4Qt::FlushAndWaitExecution :: Flush ....\n");
[578]173 if(!qApp) return;
174 qApp->processEvents();
[481]175}
176
177#endif
178
179
180
Note: See TracBrowser for help on using the repository browser.