source: trunk/geant4/visualization/OpenGL/src/G4OpenGLQtMovieDialog.cc @ 744

Last change on this file since 744 was 744, checked in by garnier, 16 years ago

modif de structre et passage des recording step sur un enum

  • Property svn:mime-type set to text/cpp
File size: 13.1 KB
RevLine 
[730]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: G4OpenGLQtMovieDialog.cc,v 1.6 2008/02/15 10:54:13 lgarnier Exp $
28// GEANT4 tag $Name:  $
29//
30//
31
32#define GEANT4_QT_DEBUG
33#ifdef G4VIS_BUILD_OPENGLQT_DRIVER
34
35#include "G4OpenGLQtMovieDialog.hh"
36#include "G4OpenGLQtViewer.hh"
37
38#include <qpushbutton.h>
[732]39#include <qpalette.h>
[730]40#include <qlabel.h>
[733]41#include <qgroupbox.h>
[730]42#include <qlayout.h>
43#include <qlineedit.h>
44#include <qfiledialog.h>
45#include <qprocess.h>
46
47
48// +---------------------------------------+
49// +        Path for encoder               +
50// +  _______                              +
51// + | select| ____________________        +
52// +  -------                              +
[732]53// +        Temp path                      +
54// +  _______                              +
55// + | select| ____________________        +
56// +  -------                              +
[730]57// +                                       +
58// + max number of frames  ________        +
59// + ....                                  +
60// +                                       +
61// +     Label : X frames Saves/Encoding   +
62// +         Cancel        Encode          +
63// +---------------------------------------+
64
65G4OpenGLQtMovieDialog::G4OpenGLQtMovieDialog(
[731]66 G4OpenGLQtViewer* parentViewer,
67 QWidget* parentWidget
[730]68)
[731]69  : QDialog( parentWidget ),
70    fParentViewer(parentViewer)
[730]71{
72  setModal(false);
73#if QT_VERSION < 0x040000
74  setCaption( tr( " Movie parameters" ));
75#else
76  setWindowTitle( tr( " Movie parameters" ));
77#endif
78
79
80  // global layout
81  QVBoxLayout* globalVLayout = new QVBoxLayout(this);
82  globalVLayout->setMargin(10);
83  globalVLayout->setSpacing(10);
84 
[733]85  // Encoder group box
86  QGroupBox *encoderGroupBox = new QGroupBox(tr("Encoder path"));               
[734]87  QVBoxLayout *encoderVGroupBoxLayout = new QVBoxLayout(encoderGroupBox);
[730]88
[732]89  // Encoder Path
[733]90  QWidget *encoderHBox = new QWidget(encoderGroupBox);
91  QHBoxLayout *encoderHBoxLayout = new QHBoxLayout(encoderHBox);
92  fEncoderPath = new QLineEdit("",encoderHBox);
[730]93
[733]94  QPushButton *encoderButton = new QPushButton(tr("..."),encoderHBox);
[732]95  encoderButton->setMaximumWidth (30);
[730]96
[733]97  fEncoderStatus = new QLabel(encoderGroupBox);
98  fEncoderStatus->setText("");
99
[732]100#if QT_VERSION < 0x040000
[733]101  encoderHBoxLayout->add(fEncoderPath);
102  encoderHBoxLayout->add(encoderButton);
[734]103  encoderVGroupBoxLayout->add(encoderHBox);
104  encoderVGroupBoxLayout->add(fEncoderStatus);
[735]105
106  globalVLayout->add(encoderGroupBox);
[732]107#else
[733]108  encoderHBoxLayout->addWidget(fEncoderPath);
109  encoderHBoxLayout->addWidget(encoderButton);
[734]110  encoderVGroupBoxLayout->addWidget(encoderHBox);
111  encoderVGroupBoxLayout->addWidget(fEncoderStatus);
[730]112
[734]113  encoderGroupBox->setLayout(encoderVGroupBoxLayout);
[735]114  globalVLayout->addWidget(encoderGroupBox);
[732]115#endif
[735]116
[733]117  connect( encoderButton, SIGNAL( clicked( ) ), this, SLOT(selectEncoderPathAction() ) );
[732]118
[730]119
[733]120  // temp folder group box
121  QGroupBox *tempFolderGroupBox = new QGroupBox(tr("Temporary folder path"));           
[734]122  QVBoxLayout *tempFolderVGroupBoxLayout = new QVBoxLayout(tempFolderGroupBox);
[733]123
[732]124  // temp folder Path
[733]125  QWidget *tempFolderHBox = new QWidget(tempFolderGroupBox);
[734]126  QHBoxLayout *tempFolderHBoxLayout = new QHBoxLayout(tempFolderHBox);
[732]127
[733]128  fTempFolderPath = new QLineEdit("",tempFolderHBox);
129
130  QPushButton *tempButton = new QPushButton(tr("..."),tempFolderHBox);
131  tempButton->setMaximumWidth (30);
132
133  fTempFolderStatus = new QLabel(tempFolderGroupBox);
134  fTempFolderStatus->setText("");
135
[730]136#if QT_VERSION < 0x040000
[733]137  tempFolderHBoxLayout->add(fTempFolderPath);
138  tempFolderHBoxLayout->add(tempButton);
[734]139  tempFolderVGroupBoxLayout->add(tempFolderHBox);
140  tempFolderVGroupBoxLayout->add(fTempFolderStatus);
[735]141
142  globalVLayout->add(tempFolderGroupBox);
[730]143#else
[733]144  tempFolderHBoxLayout->addWidget(fTempFolderPath);
145  tempFolderHBoxLayout->addWidget(tempButton);
[734]146  tempFolderVGroupBoxLayout->addWidget(tempFolderHBox);
147  tempFolderVGroupBoxLayout->addWidget(fTempFolderStatus);
[730]148
[734]149  tempFolderGroupBox->setLayout(tempFolderVGroupBoxLayout);
[735]150  globalVLayout->addWidget(tempFolderGroupBox);
[733]151#endif
[735]152
[733]153  connect( tempButton, SIGNAL( clicked( ) ), this, SLOT(selectTempPathAction() ) );
[732]154
[733]155
[734]156
157
[733]158  // save file group box
159  QGroupBox *saveFileGroupBox = new QGroupBox(tr("Save as"));           
[734]160  QVBoxLayout *saveFileVGroupBoxLayout = new QVBoxLayout(saveFileGroupBox);
[733]161
162  // save file
163  QWidget *saveFileHBox = new QWidget(saveFileGroupBox);
164  QHBoxLayout *saveFileHBoxLayout = new QHBoxLayout(saveFileHBox);
165
166  fSaveFileName = new QLineEdit("",saveFileHBox);
167
168  QPushButton *saveButton = new QPushButton(tr("..."),saveFileHBox);
169  saveButton->setMaximumWidth (30);
170
171  fSaveFileStatus = new QLabel(saveFileGroupBox);
172  fSaveFileStatus->setText("");
173
174#if QT_VERSION < 0x040000
[734]175  saveFileHBoxLayout->add(fSaveFileName);
[733]176  saveFileHBoxLayout->add(saveButton);
[734]177  saveFileVGroupBoxLayout->add(saveFileHBox);
178  saveFileVGroupBoxLayout->add(fSaveFileStatus);
[735]179
180  globalVLayout->add(saveFileGroupBox);
[733]181#else
[734]182  saveFileHBoxLayout->addWidget(fSaveFileName);
[733]183  saveFileHBoxLayout->addWidget(saveButton);
[734]184  saveFileVGroupBoxLayout->addWidget(saveFileHBox);
185  saveFileVGroupBoxLayout->addWidget(fSaveFileStatus);
[733]186
[734]187  saveFileGroupBox->setLayout(saveFileVGroupBoxLayout);
[735]188  globalVLayout->addWidget(saveFileGroupBox);
[730]189#endif
[735]190
[733]191  connect( saveButton, SIGNAL( clicked( ) ), this, SLOT(selectSaveFileNameAction() ) );
[730]192
193
194
[732]195  // label
196
[730]197  QLabel *infoLabel = new QLabel("  Press SPACE to Start/Pause video recording \n  Press RETURN to Stop video recording");
198
[733]199  // global status
[735]200  QGroupBox *statusGroupBox = new QGroupBox(tr("Status"));
201  QVBoxLayout *statusVGroupBoxLayout = new QVBoxLayout(statusGroupBox);
[733]202
[744]203  fRecordingStatus = new QLabel(statusGroupBox);
204  setRecordingStatus("");
205  QPalette palette( fRecordingStatus->palette() );
206  palette.setColor( QPalette::Text, Qt::green);
207  fRecordingStatus->setPalette(palette);
208
209  fRecordingInfos = new QLabel(statusGroupBox);
210  setRecordingInfos("");
211
[730]212#if QT_VERSION < 0x040000
[744]213  statusVGroupBoxLayout->add(fRecordingStatus);
214  statusVGroupBoxLayout->add(fRecordingInfos);
[735]215
[730]216  globalVLayout->add(infoLabel);
[735]217  globalVLayout->add(statusGroupBox);
[730]218#else
[744]219  statusVGroupBoxLayout->addWidget(fRecordingStatus);
220  statusVGroupBoxLayout->addWidget(fRecordingInfos);
[735]221
222  statusGroupBox->setLayout(statusVGroupBoxLayout);
[730]223  globalVLayout->addWidget(infoLabel);
[735]224  globalVLayout->addWidget(statusGroupBox);
[730]225#endif
[732]226
227  // buttons
[730]228  QWidget *buttonBox = new QWidget(this);
229
230  QHBoxLayout *buttonBoxLayout = new QHBoxLayout(buttonBox);
231
[732]232  QPushButton *buttonCancel = new QPushButton( tr( "&Cancel" ),buttonBox );
233  buttonCancel->setAutoDefault( TRUE );
234  buttonBoxLayout->addWidget(buttonCancel);
[730]235
[733]236  QPushButton *buttonApply = new QPushButton( tr( "&Apply" ),buttonBox );
237  buttonApply->setAutoDefault( TRUE );
[736]238  buttonApply->setDefault( TRUE );
[733]239  buttonBoxLayout->addWidget(buttonApply);
240
[739]241  fButtonEncode = new QPushButton( tr( "&Encode" ),buttonBox );
[744]242  if (fParentViewer->getRecordingStep() == G4OpenGLQtViewer::ENCODE) {
243    fButtonEncode->setEnabled(true);
244  } else {
245    fButtonEncode->setEnabled(false);
246  }
[739]247  fButtonEncode->setAutoDefault( TRUE );
248  buttonBoxLayout->addWidget(fButtonEncode);
[730]249
250#if QT_VERSION >= 0x040000
251  buttonBox->setLayout(buttonBoxLayout);
252#endif
253  globalVLayout->addWidget(buttonBox);
254
255
256
257#if QT_VERSION >= 0x040000
258  setLayout(globalVLayout);
259#endif
260
261  // signals and slots connections
[733]262  connect( buttonApply, SIGNAL( clicked() ), this, SLOT( checkAllParameters() ) );
[730]263  connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
[739]264  connect( fButtonEncode, SIGNAL( clicked() ), this, SLOT( encode() ) );
[737]265
266  // fill
267  fEncoderPath->setText(fParentViewer->getEncoderPath());
268  fTempFolderPath->setText(fParentViewer->getTempFolderPath());
269
270  if (fParentViewer->getEncoderPath() == "") {
[744]271    setRecordingInfos("mpeg_encode is needed to encode in video format.\nIt is available here: \nhttp://bmrc.berkeley.edu/frame/research/mpeg/");
[737]272  }
273
[730]274}
275
276
277
278G4OpenGLQtMovieDialog::~G4OpenGLQtMovieDialog()
279{
280}
281
[733]282void G4OpenGLQtMovieDialog::selectEncoderPathAction()
[730]283{
284  QString nomFich =  QFileDialog::getOpenFileName ( this,
285                                                    "Select your encoder",
286                                                    tr("Select your encoder ..."));
287  if (nomFich == "") {
288    return;
289  }
[733]290  checkEncoderParameters(nomFich);
291 }
292
293void G4OpenGLQtMovieDialog::selectTempPathAction()
294{
295  QString nomFich =  QFileDialog::getOpenFileName ( this,
296                                                    "Select temporary folder",
297                                                    tr("Select temporary folder ..."));
298  if (nomFich == "") {
299    return;
300  }
301  checkTempFolderParameters(nomFich);
302 }
303
304void G4OpenGLQtMovieDialog::selectSaveFileNameAction()
305{
[742]306  QString nomFich =  QFileDialog::getSaveFileName ( this,
[733]307                                                    "Select saved file",
308                                                    tr("Select saved file ..."));
309  if (nomFich == "") {
310    return;
311  }
312  checkSaveFileNameParameters(nomFich);
313 }
314
315void G4OpenGLQtMovieDialog::encode() {
[744]316  fParentViewer->encodeVideo();
[730]317}
318
[733]319/** Check all parameters
320*/
321void G4OpenGLQtMovieDialog::checkAllParameters() {
322  checkEncoderParameters(fEncoderPath->text());
323  checkTempFolderParameters(fTempFolderPath->text());
324  checkSaveFileNameParameters(fSaveFileName->text());
[740]325
326  // set state of encode button
327  // if frames had been generated and parameters are valid : enabled encode button
328//  if ((fParentViewer->getRecordFrames() == false) && (fRecordFrameNumber >1)) {
329//  }
330
[733]331}
332
333        /**
[732]334 * If one of parameter is incorrect, put it in red and don't valid it
[733]335 * If valid, save it
[732]336 */
[733]337void G4OpenGLQtMovieDialog::checkEncoderParameters(QString param) {
[730]338
[732]339  QPalette palette( fEncoderPath->palette() );
340
[733]341  QString temp = fParentViewer->setEncoderPath(param);
[744]342  setRecordingInfos("");
[740]343  fEncoderStatus->setText(temp);
[733]344  if (temp != "") {
[732]345    palette.setColor( QPalette::Base, Qt::red);
[744]346    setRecordingInfos("If no valid encode defined, screen \ncapture files will be saved in the\ntemp folder in ppm format.");
[732]347  } else {
348    palette.setColor( QPalette::Base, Qt::white);
[733]349    fEncoderPath->setText(fParentViewer->getEncoderPath());
[737]350    if (fParentViewer->getEncoderPath() == "") {
[744]351      setRecordingInfos("mpeg_encode is needed to encode in video format.\nIt is available here: \nhttp://bmrc.berkeley.edu/frame/research/mpeg/");
[737]352    }
[732]353  }
354  fEncoderPath->setPalette(palette);
[733]355}
[732]356
357
[733]358/**
359 * If one of parameter is incorrect, put it in red and don't valid it
360 * If valid, save it
361 */
362void G4OpenGLQtMovieDialog::checkTempFolderParameters(QString param) {
[732]363
[733]364  QPalette palette( fTempFolderPath->palette() );
365
366  QString temp = fParentViewer->setTempFolderPath(param);
[736]367  fTempFolderStatus->setText(temp);
368  if (temp != "") {
[732]369    palette.setColor( QPalette::Base, Qt::red);
370  } else {
371    palette.setColor( QPalette::Base, Qt::white);
[736]372    fTempFolderPath->setText(fParentViewer->getTempFolderPath());
[732]373  }
[733]374  fTempFolderPath->setPalette(palette);
[732]375}
376
[733]377
378/**
379 * If one of parameter is incorrect, put it in red and don't valid it
380 * If valid, save it
381 */
382void G4OpenGLQtMovieDialog::checkSaveFileNameParameters(QString param) {
383
384  QPalette palette( fSaveFileName->palette() );
385
386  QString temp = fParentViewer->setSaveFileName(param);
387    fSaveFileStatus->setText(temp);
388  if (temp != "") {
389    palette.setColor( QPalette::Base, Qt::red);
390  } else {
391    palette.setColor( QPalette::Base, Qt::white);
392    fSaveFileName->setText(fParentViewer->getSaveFileName());
393  }
394  fSaveFileName->setPalette(palette);
395}
[737]396
397
[744]398void G4OpenGLQtMovieDialog::setRecordingStatus(QString txt) {
399  fRecordingStatus->setText(txt);
[737]400}
401
[744]402void G4OpenGLQtMovieDialog::setRecordingInfos(QString txt) {
403  fRecordingInfos->setText(txt);
404}
405
[740]406void G4OpenGLQtMovieDialog::setEncodeButtonEnabled(bool b) {
407  fButtonEncode->setEnabled(b);
408}
[730]409#endif
Note: See TracBrowser for help on using the repository browser.