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

Last change on this file since 571 was 571, checked in by garnier, 17 years ago

r581@mac-90108: laurentgarnier | 2007-08-17 17:30:26 +0200
deplacement de frame

  • Property svn:mime-type set to text/cpp
File size: 5.4 KB
Line 
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//
27// $Id: G4Qt.cc,v 1.11 2007/05/29 11:10:28 $
28// GEANT4 tag $Name: geant4-08-01 $
29//
30// L. Garnier
31
32#if defined(G4INTY_BUILD_QT) || defined(G4INTY_USE_QT)
33
34#include <stdlib.h>
35#include <string.h>
36
37#include "G4ios.hh"
38
39#include "G4Qt.hh"
40
41#define NewString(str)  \
42 ((str) != NULL ? (strcpy((char*)malloc((unsigned)strlen(str) + 1), str)) : NULL)
43
44//static void XWidgetIconify                 (Widget);
45//static void XWidgetUniconify               (Widget);
46//static void XDisplaySetWindowToNormalState (Display*,Window);
47
48G4Qt* G4Qt::instance    = NULL;
49
50static G4bool QtInited  = FALSE;
51//static int    argn      = 0;
52//static char** args      = NULL;
53// static QtAppContext appContext = NULL;
54//static QApplication app = NULL;
55
56/***************************************************************************/
57G4Qt* G4Qt::getInstance (
58)
59/***************************************************************************/
60/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
61{
62  return G4Qt::getInstance (0,NULL,(char*)"Geant4");
63}
64/***************************************************************************/
65G4Qt* G4Qt::getInstance (
66 int    a_argn
67,char** a_args
68,char*  a_class
69)
70/***************************************************************************/
71/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
72{
73  if (instance==NULL) {
74    instance = new G4Qt(a_argn,a_args,a_class);
75  }
76  return instance;
77}
78/***************************************************************************/
79G4Qt::G4Qt (
80 int    a_argn
81,char** a_args
82,char*  a_class
83)
84/***************************************************************************/
85/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
86{
87  printf("G4Qt::G4Qt try to inited Qt\n");
88  if(QtInited==FALSE) {  //Qt should be Inited once !
89    printf("G4Qt::G4Qt inited Qt\n");
90
91    new QApplication (a_argn, a_args);
92
93    if(qApp==NULL) {
94      G4cout        << "G4Qt : Unable to init Qt." << G4endl;
95    }
96    QtInited  = TRUE;
97    SetMainInteractor (qApp);
98  }
99  SetArguments      (a_argn,a_args);
100  //  AddDispatcher     ((G4DispatchFunction)XtDispatchEvent);
101}
102/***************************************************************************/
103G4Qt::~G4Qt (
104)
105/***************************************************************************/
106/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
107{
108  if(this==instance) {
109    instance = NULL;
110  }
111}
112/***************************************************************************/
113G4bool G4Qt::Inited (
114)
115/***************************************************************************/
116/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
117{
118  return QtInited;
119}
120/***************************************************************************/
121/**
122  Si j'ai bien compris, cette fonction ne sert à rien
123 */
124void* G4Qt::GetEvent (
125)
126/***************************************************************************/
127/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
128{
129//FIXME
130//   G4cout        << "G4Qt : Rien compris a cette fonction G4Qt::GetEvent." << G4endl;
131//  static XEvent  event;
132//  if(appContext==NULL) return NULL;
133//  if(mainApp==NULL) return NULL;
134//  QtAppNextEvent (appContext, &event);
135//  return         &event;
136  printf("*");
137}
138/***************************************************************************/
139void G4Qt::FlushAndWaitExecution (
140)
141/***************************************************************************/
142/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
143{
144//FIXME
145   G4cout        << "G4Qt : Rien compris a cette fonction G4Qt::FlushAndWaitExecution." << G4endl;
146//  if(mainApp==NULL) return;
147//  XSync(QtDisplay(mainApp),False);
148}
149
150#endif
151
152
153
Note: See TracBrowser for help on using the repository browser.