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

Last change on this file since 847 was 846, checked in by garnier, 17 years ago

last updates

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