source: tags/visualization-10.5-before-10.6_test/OpenGL/include/G4OpenGLQtViewer.hh @ 1102

Last change on this file since 1102 was 1041, checked in by garnier, 15 years ago

en test

  • Property svn:mime-type set to text/cpp
File size: 7.1 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: G4OpenGLQtViewer.hh,v 1.17 2009/05/13 10:28:00 lgarnier Exp $
28// GEANT4 tag $Name:  $
29//
30//
31// G4OpenGLQtViewer : Class to provide WindowsNT specific
32//                       functionality for OpenGL in GEANT4
33
34#ifdef G4VIS_BUILD_OPENGLQT_DRIVER
35
36#ifndef G4OPENGLQTVIEWER_HH
37#define G4OPENGLQTVIEWER_HH
38
39#include "globals.hh"
40
41#include "G4OpenGLViewer.hh"
42
43#include <qobject.h>
44#include <qpoint.h>
45
46class G4OpenGLSceneHandler;
47
48class QGLWidget;
49class QDialog;
50class QContextMenuEvent;
51#if QT_VERSION < 0x040000
52class QPopupMenu;
53#else
54class QMenu;
55#endif
56class QImage;
57class QAction;
58class QMouseEvent;
59class QKeyEvent;
60class QWheelEvent;
61class QProcess;
62class QTime;
63
64class G4OpenGLSceneHandler;
65class G4OpenGLQtMovieDialog;
66
67class G4OpenGLQtViewer: public QObject, virtual public G4OpenGLViewer {
68
69  Q_OBJECT
70
71public:
72  G4OpenGLQtViewer (G4OpenGLSceneHandler& scene);
73  virtual ~G4OpenGLQtViewer ();
74  void SetView ();
75  virtual void updateQWidget()=0;
76  QString setEncoderPath(QString path);
77  QString getEncoderPath();
78  QString setTempFolderPath(QString path);
79  QString getTempFolderPath();
80  QString setSaveFileName(QString path);
81  QString getSaveFileName();
82  bool isRecording();
83  bool isStopped();
84  bool isPaused();
85  bool isEncoding();
86  bool isWaiting();
87  bool isFailed();
88  void setWaiting();
89  bool isBadEncoder();
90  bool isBadOutput();
91  bool isBadTmp();
92  bool isSuccess();
93  void setBadTmp();
94  void setBadOutput();
95  void setBadEncoder();
96  bool isReadyToEncode();
97  void resetRecording();
98  void encodeVideo();
99  void stopVideo();
100  void saveVideo();
101  bool generateMpegEncoderParameters();
102  void displayRecordingStatus();
103
104protected:
105  void CreateGLQtContext ();
106  virtual void CreateMainWindow (QGLWidget*,QString);
107  void G4manageContextMenuEvent(QContextMenuEvent *e);
108  void G4MousePressEvent(QMouseEvent *event);
109  void G4MouseReleaseEvent();
110  void G4MouseDoubleClickEvent();
111  void G4MouseMoveEvent(QMouseEvent *event);
112  void G4wheelEvent (QWheelEvent * event);
113  void G4keyPressEvent (QKeyEvent * event);
114  void rotateQtScene(float, float);
115  void rotateQtCamera(float, float);
116  void moveScene(float, float, float,bool);
117  void FinishView();
118
119
120protected:
121  QGLWidget* fWindow;
122  QDialog* fGLWindow;
123  bool hasPendingEvents();
124  void savePPMToTemp();
125  int fRecordFrameNumber;
126  float fRotationAngleX;
127  float fRotationAngleY;
128  float fRotationAngleZ;
129  float fDeltaRotationAngleX;
130  float fDeltaRotationAngleY;
131  float fDeltaRotationAngleZ;
132
133  bool fHasToRepaint;
134  bool fReadyToPaint;
135
136private:
137  enum mouseActions {STYLE1,STYLE2,STYLE3,STYLE4};
138  enum RECORDING_STEP {WAIT,START,PAUSE,CONTINUE,STOP,READY_TO_ENCODE,ENCODING,FAILED,SUCCESS,BAD_ENCODER,BAD_OUTPUT,BAD_TMP,SAVE};
139
140  void createPopupMenu();
141  void createRadioAction(QAction *,QAction *, const std::string&,unsigned int a=1);
142  void rescaleImage(int, int);
143  bool printPDF(const std::string,int,QImage); 
144  void showMovieParametersDialog();
145  void initMovieParameters();
146  QString createTempFolder();
147  QString removeTempFolder();
148  void setRecordingStatus(RECORDING_STEP);
149  void setRecordingInfos(QString);
150  QString getProcessErrorMsg();
151
152
153#if QT_VERSION < 0x040000
154  QPopupMenu *fContextMenu;
155#else
156  QMenu *fContextMenu;
157#endif
158
159  mouseActions fMouseAction; // 1: rotate 2:move 3:pick 4:shortcuts
160  QPoint fLastPos1;
161  QPoint fLastPos2;
162  QPoint fLastPos3;
163  /** delta of scene rotation. This delta is put in degree */
164  G4double fDeltaRotation;
165  /** delta of scene translation. This delta is put in % of the scene view */
166  G4double fDeltaSceneTranslation;
167  /** delta of depth move. This delta is put in % of the scene view */
168  G4double fDeltaDepth;
169  /** delta of zoom move. This delta is put in % of the scene view */
170  G4double fDeltaZoom;
171  /** delta of auto move/rotation. This delta is put in % of the move/rotation param */
172  G4double fDeltaMove;
173  /** To ensure key event are keep one by one */
174  bool fHoldKeyEvent;
175  /** To ensure move event are keep one by one */
176  bool fHoldMoveEvent;
177  /** To ensure rotate event are keep one by one */
178  bool fHoldRotateEvent;
179  bool fAutoMove;
180  QString fEncoderPath;
181  QString fTempFolderPath;
182  QString fMovieTempFolderPath;
183  QString fSaveFileName;
184  QString fParameterFileName;
185  QAction *fRotateAction;
186  QAction *fMoveAction;
187  QAction *fPickAction;
188  QAction *fFullScreenOn;
189  QAction *fFullScreenOff;
190  QAction *fDrawingWireframe;
191  QAction *fDrawingLineRemoval;
192  QAction *fDrawingSurfaceRemoval;
193  QAction *fDrawingLineSurfaceRemoval;
194  G4OpenGLQtMovieDialog* fMovieParametersDialog;
195  RECORDING_STEP fRecordingStep;
196  QProcess *fProcess;
197  QTime *fLastEventTime;
198  int fSpinningDelay;
199  int fLaunchSpinDelay;
200
201signals:
202 void rotateTheta(int);
203 void rotatePhi(int);
204 void moveX(int);
205 void moveY(int);
206 void moveZ(int);
207
208public slots :
209  void startPauseVideo();
210
211private slots :
212  void actionMouseRotate();
213  void actionMouseMove();
214  void actionMousePick();
215  void actionDrawingWireframe();
216  void actionDrawingLineRemoval();
217  void actionDrawingSurfaceRemoval();
218  void actionDrawingLineSurfaceRemoval();
219  void actionSaveImage();
220  void actionMovieParameters();
221
222  void showShortcuts();
223  void toggleDrawingAction(int);
224  void toggleMouseAction(mouseActions);
225  void toggleRepresentation(bool);
226  void toggleProjection(bool);
227  void toggleBackground(bool);
228  void toggleTransparency(bool);
229  void toggleAntialiasing(bool);
230  void toggleHaloing(bool);
231  void toggleAux(bool);
232  void toggleFullScreen(bool);
233  void processEncodeFinished();
234  void processLookForFinished();
235  void processEncodeStdout();
236  // Only use for Qt>4.0
237  //  void dialogClosed();
238};
239
240#endif
241
242#endif
Note: See TracBrowser for help on using the repository browser.