source: trunk/source/visualization/OpenGL/include/G4OpenGLQtViewer.hh @ 916

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

renommage et suppression de EPS dans Qt

  • Property svn:mime-type set to text/cpp
File size: 7.3 KB
RevLine 
[530]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//
[915]27// $Id: G4OpenGLQtViewer.hh,v 1.15 2009/02/04 16:48:40 lgarnier Exp $
[866]28// GEANT4 tag $Name:  $
[530]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
[914]41#include "G4OpenGLViewer.hh"
[530]42
[595]43#include <qobject.h>
44#include <qpoint.h>
[536]45
[914]46class G4OpenGLSceneHandler;
47
[593]48class QGLWidget;
49class QDialog;
50class QContextMenuEvent;
[600]51#if QT_VERSION < 0x040000
52class QPopupMenu;
53#else
[593]54class QMenu;
[600]55#endif
[593]56class QImage;
57class QAction;
[696]58class QMouseEvent;
59class QKeyEvent;
[804]60class QWheelEvent;
[750]61class QProcess;
[797]62class QTime;
[593]63
[530]64class G4OpenGLSceneHandler;
[731]65class G4OpenGLQtMovieDialog;
[530]66
[561]67class G4OpenGLQtViewer: public QObject, virtual public G4OpenGLViewer {
[530]68
[561]69  Q_OBJECT
70
[530]71public:
72  G4OpenGLQtViewer (G4OpenGLSceneHandler& scene);
73  virtual ~G4OpenGLQtViewer ();
74  void SetView ();
[561]75  virtual void updateQWidget()=0;
[733]76  QString setEncoderPath(QString path);
[730]77  QString getEncoderPath();
[733]78  QString setTempFolderPath(QString path);
[732]79  QString getTempFolderPath();
[733]80  QString setSaveFileName(QString path);
81  QString getSaveFileName();
[745]82  bool isRecording();
[748]83  bool isStopped();
[857]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();
[745]96  bool isReadyToEncode();
[750]97  void resetRecording();
98  void encodeVideo();
[857]99  void stopVideo();
100  void saveVideo();
[747]101  bool generateMpegEncoderParameters();
[752]102  void displayRecordingStatus();
[561]103
[530]104protected:
105  void CreateGLQtContext ();
[866]106  virtual void CreateMainWindow (QGLWidget*,QString);
[873]107  void G4manageContextMenuEvent(QContextMenuEvent *e);
108  void G4MousePressEvent(QMouseEvent *event);
[797]109  void G4MouseReleaseEvent();
[873]110  void G4MouseDoubleClickEvent();
111  void G4MouseMoveEvent(QMouseEvent *event);
[804]112  void G4wheelEvent (QWheelEvent * event);
[696]113  void G4keyPressEvent (QKeyEvent * event);
[798]114  void rotateQtScene(float, float);
115  void rotateQtCamera(float, float);
116  void moveScene(float, float, float,bool);
[873]117  void FinishView();
[561]118
[600]119
[530]120protected:
[536]121  QGLWidget* fWindow;
[541]122  QDialog* GLWindow;
[720]123  bool hasPendingEvents();
[739]124  void savePPMToTemp();
[723]125  int fRecordFrameNumber;
[800]126  float fRotationAngleX;
127  float fRotationAngleY;
128  float fRotationAngleZ;
[801]129  float fDeltaRotationAngleX;
130  float fDeltaRotationAngleY;
131  float fDeltaRotationAngleZ;
[561]132
[873]133  bool hasToRepaint;
134  bool readyToPaint;
135  bool zoomAction;
136  QPoint beginZoom;
137  QPoint endZoom;
138
[530]139private:
[745]140  enum mouseActions {STYLE1,STYLE2,STYLE3,STYLE4};
[857]141  enum RECORDING_STEP {WAIT,START,PAUSE,CONTINUE,STOP,READY_TO_ENCODE,ENCODING,FAILED,SUCCESS,BAD_ENCODER,BAD_OUTPUT,BAD_TMP,SAVE};
[745]142
[561]143  void createPopupMenu();
144  void createRadioAction(QAction *,QAction *, const std::string&,unsigned int a=1);
[585]145  void rescaleImage(int, int);
[916]146  bool generateVectorEPS (const char *,int,int,QImage);
147  bool generatePS_PDF(const std::string,int,QImage); 
[731]148  void showMovieParametersDialog();
[735]149  void initMovieParameters();
[741]150  QString createTempFolder();
151  QString removeTempFolder();
[744]152  void setRecordingStatus(RECORDING_STEP);
153  void setRecordingInfos(QString);
[754]154  QString getProcessErrorMsg();
[586]155
[744]156
[600]157#if QT_VERSION < 0x040000
158  QPopupMenu *fContextMenu;
159#else
[561]160  QMenu *fContextMenu;
[600]161#endif
[744]162
[713]163  mouseActions fMouseAction; // 1: rotate 2:move 3:pick 4:shortcuts
[798]164  QPoint fLastPos1;
165  QPoint fLastPos2;
166  QPoint fLastPos3;
[713]167  /** delta of scene rotation. This delta is put in degree */
168  G4double fDeltaRotation;
[702]169  /** delta of scene translation. This delta is put in % of the scene view */
[712]170  G4double fDeltaSceneTranslation;
171  /** delta of depth move. This delta is put in % of the scene view */
172  G4double fDeltaDepth;
173  /** delta of zoom move. This delta is put in % of the scene view */
174  G4double fDeltaZoom;
[721]175  /** delta of auto move/rotation. This delta is put in % of the move/rotation param */
176  G4double fDeltaMove;
[702]177  /** To ensure key event are keep one by one */
[721]178  bool fHoldKeyEvent;
[728]179  /** To ensure move event are keep one by one */
180  bool fHoldMoveEvent;
181  /** To ensure rotate event are keep one by one */
182  bool fHoldRotateEvent;
[720]183  bool fAutoMove;
[730]184  QString fEncoderPath;
[732]185  QString fTempFolderPath;
[738]186  QString fMovieTempFolderPath;
[733]187  QString fSaveFileName;
[740]188  QString fParameterFileName;
[717]189  QAction *fRotateAction;
190  QAction *fMoveAction;
191  QAction *fPickAction;
192  QAction *fFullScreenOn;
193  QAction *fFullScreenOff;
[561]194  QAction *fDrawingWireframe;
195  QAction *fDrawingLineRemoval;
196  QAction *fDrawingSurfaceRemoval;
197  QAction *fDrawingLineSurfaceRemoval;
[732]198  G4OpenGLQtMovieDialog* fMovieParametersDialog;
[744]199  RECORDING_STEP fRecordingStep;
[749]200  QProcess *fProcess;
[797]201  QTime *fLastEventTime;
202  int fSpinningDelay;
[798]203  int fLaunchSpinDelay;
[561]204
[843]205signals:
206 void rotateTheta(int);
207 void rotatePhi(int);
208 void moveX(int);
209 void moveY(int);
210 void moveZ(int);
211
[857]212public slots :
213  void startPauseVideo();
214
[561]215private slots :
[678]216  void actionMouseRotate();
[713]217  void actionMouseMove();
[681]218  void actionMousePick();
[561]219  void actionDrawingWireframe();
220  void actionDrawingLineRemoval();
221  void actionDrawingSurfaceRemoval();
222  void actionDrawingLineSurfaceRemoval();
[731]223  void actionSaveImage();
224  void actionMovieParameters();
[565]225
[721]226  void showShortcuts();
[561]227  void toggleDrawingAction(int);
[678]228  void toggleMouseAction(mouseActions);
[561]229  void toggleRepresentation(bool);
[702]230  void toggleProjection(bool);
[561]231  void toggleBackground(bool);
232  void toggleTransparency(bool);
233  void toggleAntialiasing(bool);
234  void toggleHaloing(bool);
235  void toggleAux(bool);
[717]236  void toggleFullScreen(bool);
[754]237  void processEncodeFinished();
238  void processLookForFinished();
239  void processEncodeStdout();
[656]240  // Only use for Qt>4.0
[711]241  //  void dialogClosed();
[530]242};
243
244#endif
245
246#endif
Note: See TracBrowser for help on using the repository browser.