Ignore:
Timestamp:
Nov 16, 2007, 11:59:21 AM (18 years ago)
Author:
garnier
Message:

r659@mac-90108: laurentgarnier | 2007-11-16 12:02:01 +0100
mise a jour de Geant4 au head ET qq mise a jour pour Qt de mon cote

Location:
trunk/geant4/interfaces
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/geant4/interfaces/GAG/src/G4UIGAG.cc

    r593 r609  
    2525//
    2626//
    27 // $Id: G4UIGAG.cc,v 1.18 2006/06/29 19:09:23 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-00-ref-01 $
     27// $Id: G4UIGAG.cc,v 1.19 2007/10/30 10:14:34 kmura Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030// G4UIGAG.cc
     
    414414{
    415415  G4UIcommandTree * treeTop = UI->GetTree();
    416   /*int*/unsigned i = newCommand.index(" ");
     416  /*int*/str_size i = newCommand.index(" ");
    417417  if( i != std::string::npos )
    418418  {
  • trunk/geant4/interfaces/History

    r593 r609  
    1 $Id: History,v 1.82 2007/06/19 10:38:28 gcosmo Exp $
     1$Id: History,v 1.89 2007/11/16 10:41:54 lgarnier Exp $
    22-------------------------------------------------------------------
    33
     
    1717     * Reverse chronological order (last date on top), please *
    1818     ----------------------------------------------------------
     1915 Nov 2007, Laurent Garnier
     20 - G4UIQt,G4Qt : Adding a GEANT4_QT_DEBUG flag to hide all debug messages
     21 - G4UIQt,G4Qt : Compilation improvements for Qt3
     22 - G4UIQt,G4Qt : Minors corrections on G4UIQt helpWidget
     23
     2413 Nov 2007, Laurent Garnier
     25 - G4UIQt,G4Qt : Moving all moc in one big file interface/G4UIQT_moc.cc,
     26   including Qt3 and Qt4 moc support
     27
     2809 Nov 2007, Laurent Garnier
     29 - G4UIQt,G4Qt : Change all include directive to be compatible with Qt3
     30
     3127 Sept 2007, Laurent Garnier
     32 - Adding sur files for G4UIQt driver
     33
     3406 November Koichi Murakami
     35- G4UItcsh.cc: store shell histoty accross sessrions.
     36
     3730 October 2007 Koichi Murakami (interfaces-V09-00-02)
     38- Guy committed the new Qt interface (28/Sep).
     39- Add "#ifdef G4UI_BUILD_QT_SESSION" protection in src/G4UIQt_moc.cc.
     40- Remove Qt interface from the current tag.
     41- G4UIGAG.cc: suppress a compilation warning.
     42
     4330 October 2007 Koichi Murakami (interfaces-V09-00-01)
     44- Makoto updated the implementation of the signal handler for Ctrl-C.
     45
     4628 October 2007, Makoto Asai
     47- Remove improper dependency from interfaces/basic to run in GNUmakefile
     48
     4902 August 2007, Koichi Murakami (interfaces-V09-00-00)
     50- Fix compilation warning on SUN-CC in G4UIterminal.cc
    1951
    205219 June 2007, Gabriele Cosmo (interfaces-V08-03-02)
  • trunk/geant4/interfaces/basic/GNUmakefile

    r593 r609  
    1 # $Id: GNUmakefile,v 1.3 2007/05/21 07:30:33 kmura Exp $
     1# $Id: GNUmakefile,v 1.4 2007/10/29 18:49:45 asaim Exp $
    22# -------------------------------------------------------------
    33# GNUmakefile for interfaces/basic library.  John Allison, 6/7/98.
     
    1616CPPFLAGS += -I$(G4BASE)/interfaces/common/include
    1717CPPFLAGS += -I$(G4BASE)/intercoms/include
    18 CPPFLAGS += -I$(G4BASE)/global/management/include \
    19             -I$(G4BASE)/global/HEPRandom/include \
    20             -I$(G4BASE)/global/HEPGeometry/include \
    21             -I$(G4BASE)/run/include \
    22             -I$(G4BASE)/event/include \
    23             -I$(G4BASE)/track/include \
    24             -I$(G4BASE)/tracking/include \
    25             -I$(G4BASE)/particles/management/include \
    26             -I$(G4BASE)/processes/management/include \
    27             -I$(G4BASE)/processes/cuts/include \
    28             -I$(G4BASE)/processes/electromagnetic/utils/include \
    29             -I$(G4BASE)/processes/transportation/include \
    30             -I$(G4BASE)/processes/decay/include \
    31             -I$(G4BASE)/materials/include \
    32             -I$(G4BASE)/geometry/management/include \
    33             -I$(G4BASE)/geometry/volumes/include \
    34             -I$(G4BASE)/geometry/navigation/include \
    35             -I$(G4BASE)/geometry/magneticfield/include \
    36             -I$(G4BASE)/geometry/biasing/include \
    37             -I$(G4BASE)/digits_hits/detector/include \
    38             -I$(G4BASE)/digits_hits/hits/include \
    39             -I$(G4BASE)/digits_hits/digits/include \
    40             -I$(G4BASE)/interfaces/common/include \
    41             -I$(G4BASE)/interfaces/basic/include \
    42             -I$(G4BASE)/intercoms/include \
    43             -I$(G4BASE)/graphics_reps/include
    4418
    4519include $(G4INSTALL)/config/common.gmk
  • trunk/geant4/interfaces/basic/include/G4UIQt.hh

    r608 r609  
    2525//
    2626//
    27 // $Id: G4UIQt.hh,v 1.6 2007/11/15 18:24:27 lgarnier Exp $
     27// $Id: G4UIQt.hh,v 1.7 2007/11/15 18:53:59 lgarnier Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    149149  void ButtonCallback(const QString&);
    150150  void HelpTreeClicCallback();
     151#if QT_VERSION < 0x040000
     152  void HelpTreeDoubleClicCallback( QListViewItem*, int);
     153#else
    151154  void HelpTreeDoubleClicCallback( QTreeWidgetItem*, int);
     155#endif
    152156  void ShowHelpCallback();
    153157  void CommandHistoryCallback();
Note: See TracChangeset for help on using the changeset viewer.