Ignore:
Timestamp:
Feb 16, 2009, 12:40:38 PM (15 years ago)
Author:
garnier
Message:

minor addition in Qt. See History

Location:
trunk/source/interfaces
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/interfaces/History

    r883 r922  
    1 $Id: History,v 1.104 2008/11/14 16:21:42 lgarnier Exp $
     1$Id: History,v 1.107 2009/02/16 11:40:26 lgarnier Exp $
    22-------------------------------------------------------------------
    33
     
    1818     ----------------------------------------------------------
    1919
    20 14 November, Laurent Garnier
     2016 February 2009, Laurent Garnier
     21 - G4UIQt : Add an Interactor to be able to add button on file and help menu
     22 - G4UIQt : Add a public method to get the MainWindow
     23
     2427, November, 2008 K. Murakami (interfaces-V09-01-04)
     25 - G4UIQt.cc: warning fix
     26
     2721, November, 2008 K. Murakami (interfaces-V09-01-03)
     28 -tagged for release 9.2
     29
     3014 November, 2008 Laurent Garnier
    2131 - G4UIXm,G4Win32 : Renaming according to Geant4 code policy
    2232
    23 6 November, Laurent Garnier
     336 November, 2008 Laurent Garnier
    2434 - G4Qt : Re-fix problem on some linux with QApplication, should be better
    2535 - G4Qt : Add availabity to launch a G4Qt without a G4UIQt
    2636
    27 24 October, Laurent Garnier
     3724 October, 2008 Laurent Garnier
    2838 - Change GEANT4_QT_DEBUG flag by QTDEBUG
    2939 - Suppress unuseful DEBUG messages
    3040
    31 15 October, Laurent Garnier
     4115 October, 2008 Laurent Garnier
    3242 - Fix a problem on some linux with QApplication. But this is NOT the good way to do it...
    3343 - Fix a qt3 backward compatibility on G4UIQt.cc
    3444
    35 7 October, Laurent Garnier
     457 October, 2008 Laurent Garnier
    3646 - Fix a G4cout possible problem cause by recursive G4cout call.
    3747
    38 2 October, Laurent Garnier
     482 October, 2008 Laurent Garnier
    3949 - Add availability to have a external Qapp
    4050
  • trunk/source/interfaces/basic/include/G4UIQt.hh

    r876 r922  
    2525//
    2626//
    27 // $Id: G4UIQt.hh,v 1.15 2008/11/06 10:06:33 lgarnier Exp $
     27// $Id: G4UIQt.hh,v 1.16 2009/02/16 11:40:26 lgarnier Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    103103  G4int ReceiveG4cerr(G4String);
    104104  //   G4String GetCommand(Widget);
     105  QMainWindow * getMainWindow();
    105106
    106107private:
  • trunk/source/interfaces/basic/src/G4UIQt.cc

    r889 r922  
    2525//
    2626//
    27 // $Id: G4UIQt.cc,v 1.24 2008/11/24 13:50:34 lgarnier Exp $
     27// $Id: G4UIQt.cc,v 1.25 2009/02/16 11:40:26 lgarnier Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    248248#endif
    249249
     250  AddInteractor ("file",(G4Interactor)fileMenu);
     251  AddInteractor ("help",(G4Interactor)helpMenu);
     252
    250253  // Set the splitter size. The fTextArea sould be 2/3 on the fMainWindow
    251254#if QT_VERSION < 0x040000
     
    333336}
    334337
     338
     339QMainWindow * G4UIQt::getMainWindow (
     340)
     341{
     342  return fMainWindow;
     343}
    335344
    336345void G4UIQt::SessionTerminate (
Note: See TracChangeset for help on using the changeset viewer.