Changeset 907


Ignore:
Timestamp:
Jan 16, 2009, 11:35:30 AM (15 years ago)
Author:
garnier
Message:

rien, juste un maj des tags

Location:
trunk/source/visualization/management
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/visualization/management/History

    r849 r907  
    1 $Id: History,v 1.111 2008/07/27 10:46:23 allison Exp $
     1$Id: History,v 1.114 2009/01/13 10:01:08 lgarnier Exp $
    22
    33-------------------------------------------------------------------
     
    2727------------------------------------------------------
    2828
    29 27th July 2008  John Allison
     2912th January 2009  John Allison
     30- /vis/viewer/create: Pass both X and Y window size hints to viewer.
     31  (To get a non-rectangular viewer give a X-windows-style geometry
     32  argument, such as "800x400" or "800x400-0+0".)
     33
     342nd December, Laurent Garnier
     35 - G4ViewParameters.hh G4ViewParameters.icc G4VisManager.hh G4VisManager.icc
     36   G4ViewParameters.cc G4VisManager.cc G4VViewer.cc G4VisCommandsViewer.cc,
     37   do a lot of change to be able to pass XString like 400x600-0+0 to viewers
     38   and set position and location. It will work for Qt, X, Win32 for the moment.
     39
     4027th July 2008  John Allison (visman-V09-01-05)
    3041- G4VisCommands.cc: Trap recursive use of /vis/reviewKeptEvents.
    3142
  • trunk/source/visualization/management/include/G4ViewParameters.hh

    r897 r907  
    2525//
    2626//
    27 // $Id: G4ViewParameters.hh,v 1.28 2008/04/28 16:14:12 allison Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4ViewParameters.hh,v 1.29 2009/01/13 09:55:15 lgarnier Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030//
     
    154154        G4double         GetGlobalLineWidthScale () const;
    155155        G4bool           IsMarkerNotHidden       () const;
     156        unsigned int     GetWindowSizeHintX      () const;
     157        unsigned int     GetWindowSizeHintY      () const;
    156158        G4int            GetWindowAbsoluteLocationHintX (G4int) const;
    157159        G4int            GetWindowAbsoluteLocationHintY (G4int) const;
    158         unsigned int     GetWindowSizeHintX      () const;
    159         unsigned int     GetWindowSizeHintY      () const;
    160160        G4int            GetWindowLocationHintX  () const;
    161161        G4int            GetWindowLocationHintY  () const;
  • trunk/source/visualization/management/include/G4ViewParameters.icc

    r897 r907  
    2525//
    2626//
    27 // $Id: G4ViewParameters.icc,v 1.16 2007/04/03 13:33:16 allison Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4ViewParameters.icc,v 1.17 2009/01/13 09:55:15 lgarnier Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030//
  • trunk/source/visualization/management/include/G4VisManager.hh

    r897 r907  
    2525//
    2626//
    27 // $Id: G4VisManager.hh,v 1.68 2008/01/04 22:03:46 allison Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4VisManager.hh,v 1.69 2009/01/13 09:55:15 lgarnier Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030//
  • trunk/source/visualization/management/include/G4VisManager.icc

    r896 r907  
    2525//
    2626//
    27 // $Id: G4VisManager.icc,v 1.20 2007/01/11 16:40:58 allison Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4VisManager.icc,v 1.21 2009/01/13 09:55:15 lgarnier Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030//
  • trunk/source/visualization/management/src/G4VViewer.cc

    r896 r907  
    2525//
    2626//
    27 // $Id: G4VViewer.cc,v 1.24 2007/01/05 16:25:15 allison Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4VViewer.cc,v 1.25 2009/01/13 09:55:15 lgarnier Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030//
  • trunk/source/visualization/management/src/G4ViewParameters.cc

    r897 r907  
    2525//
    2626//
    27 // $Id: G4ViewParameters.cc,v 1.31 2008/04/04 13:48:53 allison Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4ViewParameters.cc,v 1.32 2009/01/13 09:55:15 lgarnier Exp $
     28// GEANT4 tag $Name: $
    2929//
    3030//
     
    616616  G4int mask = fNoValue;
    617617  register char *strind;
    618   unsigned int tempWidth, tempHeight;
    619   G4int tempX, tempY;
     618  unsigned int tempWidth  = 0;
     619  unsigned int tempHeight = 0;
     620  G4int tempX = 0;
     621  G4int tempY = 0;
    620622  char *nextCharacter;
    621623  if ( (string == NULL) || (*string == '\0')) {
  • trunk/source/visualization/management/src/G4VisCommandsViewer.cc

    r897 r907  
    2525//
    2626//
    27 // $Id: G4VisCommandsViewer.cc,v 1.70 2008/04/30 10:07:28 allison Exp $
    28 // GEANT4 tag $Name: HEAD $
     27// $Id: G4VisCommandsViewer.cc,v 1.73 2009/01/13 10:10:47 lgarnier Exp $
     28// GEANT4 tag $Name: $
    2929
    3030// /vis/viewer commands - John Allison  25th October 1998
  • trunk/source/visualization/management/src/G4VisManager.cc

    r897 r907  
    2424// ********************************************************************
    2525//
    26 // $Id: G4VisManager.cc,v 1.115 2008/01/04 22:03:46 allison Exp $
    27 // GEANT4 tag $Name: HEAD $
     26// $Id: G4VisManager.cc,v 1.116 2009/01/13 09:55:15 lgarnier Exp $
     27// GEANT4 tag $Name: $
    2828//
    2929//
Note: See TracChangeset for help on using the changeset viewer.