00001 // 00002 // ******************************************************************** 00003 // * License and Disclaimer * 00004 // * * 00005 // * The Geant4 software is copyright of the Copyright Holders of * 00006 // * the Geant4 Collaboration. It is provided under the terms and * 00007 // * conditions of the Geant4 Software License, included in the file * 00008 // * LICENSE and available at http://cern.ch/geant4/license . These * 00009 // * include a list of copyright holders. * 00010 // * * 00011 // * Neither the authors of this software system, nor their employing * 00012 // * institutes,nor the agencies providing financial support for this * 00013 // * work make any representation or warranty, express or implied, * 00014 // * regarding this software system or assume any liability for its * 00015 // * use. Please see the license in the file LICENSE and URL above * 00016 // * for the full disclaimer and the limitation of liability. * 00017 // * * 00018 // * This code implementation is the result of the scientific and * 00019 // * technical work of the GEANT4 collaboration. * 00020 // * By using, copying, modifying or distributing the software (or * 00021 // * any work based on the software) you agree to acknowledge its * 00022 // * use in resulting scientific publications, and indicate your * 00023 // * acceptance of all terms of the Geant4 Software license. * 00024 // ******************************************************************** 00025 // 00026 // 00027 // $Id$ 00028 00029 // /vis/viewer/set commands - John Allison 16th May 2000 00030 00031 #ifndef G4VISCOMMANDSVIEWERSET_HH 00032 #define G4VISCOMMANDSVIEWERSET_HH 00033 00034 #include "G4VisCommandsViewer.hh" 00035 00036 #include <vector> 00037 00038 class G4UIcommand; 00039 class G4UIcmdWithAString; 00040 class G4UIcmdWithABool; 00041 class G4UIcmdWithAnInteger; 00042 class G4UIcmdWithADouble; 00043 class G4UIcmdWith3VectorAndUnit; 00044 00045 class G4VisCommandsViewerSet: public G4VVisCommandViewer { 00046 public: 00047 G4VisCommandsViewerSet (); 00048 virtual ~G4VisCommandsViewerSet (); 00049 G4String GetCurrentValue (G4UIcommand* command); 00050 void SetNewValue (G4UIcommand* command, G4String newValue); 00051 private: 00052 G4VisCommandsViewerSet (const G4VisCommandsViewerSet&); 00053 G4VisCommandsViewerSet& operator = (const G4VisCommandsViewerSet&); 00054 G4UIcmdWithAString* fpCommandAll; 00055 G4UIcmdWithABool* fpCommandAutoRefresh; 00056 G4UIcmdWithABool* fpCommandAuxEdge; 00057 G4UIcommand* fpCommandBackground; 00058 G4UIcommand* fpCommandCulling; 00059 G4UIcmdWithAString* fpCommandCutawayMode; 00060 G4UIcommand* fpCommandDefaultColour; 00061 G4UIcommand* fpCommandDefaultTextColour; 00062 G4UIcmdWithABool* fpCommandEdge; 00063 G4UIcommand* fpCommandExplodeFactor; 00064 G4UIcmdWithADouble* fpCommandGlobalMarkerScale; 00065 G4UIcmdWithADouble* fpCommandGlobalLineWidthScale; 00066 G4UIcmdWithABool* fpCommandHiddenEdge; 00067 G4UIcmdWithABool* fpCommandHiddenMarker; 00068 G4UIcmdWithAnInteger* fpCommandLineSegments; 00069 G4UIcmdWithAString* fpCommandLightsMove; 00070 G4UIcommand* fpCommandLightsThetaPhi; 00071 G4UIcommand* fpCommandLightsVector; 00072 G4ThreeVector fLightsVector; 00073 G4UIcmdWithABool* fpCommandPicking; 00074 G4UIcommand* fpCommandProjection; 00075 G4UIcmdWithAString* fpCommandRotationStyle; 00076 G4UIcommand* fpCommandSectionPlane; 00077 G4UIcmdWithAString* fpCommandStyle; 00078 G4UIcmdWith3VectorAndUnit* fpCommandTargetPoint; 00079 G4UIcommand* fpCommandUpThetaPhi; 00080 G4UIcommand* fpCommandUpVector; 00081 G4ThreeVector fUpVector; 00082 G4UIcommand* fpCommandViewpointThetaPhi; 00083 G4UIcommand* fpCommandViewpointVector; 00084 G4ThreeVector fViewpointVector; 00085 }; 00086 00087 #endif