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

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

modifs sur windows

  • Property svn:mime-type set to text/cpp
File size: 13.3 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 );
[745]242  fButtonEncode->setEnabled(fParentViewer->isReadyToEncode());
[739]243  fButtonEncode->setAutoDefault( TRUE );
244  buttonBoxLayout->addWidget(fButtonEncode);
[730]245
246#if QT_VERSION >= 0x040000
247  buttonBox->setLayout(buttonBoxLayout);
248#endif
249  globalVLayout->addWidget(buttonBox);
250
251
252
253#if QT_VERSION >= 0x040000
254  setLayout(globalVLayout);
255#endif
256
257  // signals and slots connections
[733]258  connect( buttonApply, SIGNAL( clicked() ), this, SLOT( checkAllParameters() ) );
[730]259  connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
[739]260  connect( fButtonEncode, SIGNAL( clicked() ), this, SLOT( encode() ) );
[737]261
262  // fill
263  fEncoderPath->setText(fParentViewer->getEncoderPath());
264  fTempFolderPath->setText(fParentViewer->getTempFolderPath());
265
266  if (fParentViewer->getEncoderPath() == "") {
[744]267    setRecordingInfos("mpeg_encode is needed to encode in video format.\nIt is available here: \nhttp://bmrc.berkeley.edu/frame/research/mpeg/");
[737]268  }
269
[730]270}
271
272
273
274G4OpenGLQtMovieDialog::~G4OpenGLQtMovieDialog()
275{
276}
277
[733]278void G4OpenGLQtMovieDialog::selectEncoderPathAction()
[730]279{
280  QString nomFich =  QFileDialog::getOpenFileName ( this,
281                                                    "Select your encoder",
282                                                    tr("Select your encoder ..."));
283  if (nomFich == "") {
284    return;
285  }
[733]286  checkEncoderParameters(nomFich);
287 }
288
289void G4OpenGLQtMovieDialog::selectTempPathAction()
290{
291  QString nomFich =  QFileDialog::getOpenFileName ( this,
292                                                    "Select temporary folder",
293                                                    tr("Select temporary folder ..."));
294  if (nomFich == "") {
295    return;
296  }
297  checkTempFolderParameters(nomFich);
298 }
299
300void G4OpenGLQtMovieDialog::selectSaveFileNameAction()
301{
[742]302  QString nomFich =  QFileDialog::getSaveFileName ( this,
[733]303                                                    "Select saved file",
304                                                    tr("Select saved file ..."));
305  if (nomFich == "") {
306    return;
307  }
308  checkSaveFileNameParameters(nomFich);
309 }
310
311void G4OpenGLQtMovieDialog::encode() {
[744]312  fParentViewer->encodeVideo();
[730]313}
314
[733]315/** Check all parameters
316*/
317void G4OpenGLQtMovieDialog::checkAllParameters() {
[740]318
319  // set state of encode button
320  // if frames had been generated and parameters are valid : enabled encode button
[747]321  if (checkEncoderParameters(fEncoderPath->text())
322    && checkTempFolderParameters(fTempFolderPath->text())
323    && checkSaveFileNameParameters(fSaveFileName->text())) {
324        if (fParentViewer->isReadyToEncode()) {
325      if (fParentViewer->generateMpegEncoderParameters()) {
326        fButtonEncode->setEnabled(fParentViewer->;;isReadyToEncode() );
327          }
328        }
329  }
[733]330}
331
[747]332
[733]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 */
[747]337bool G4OpenGLQtMovieDialog::checkEncoderParameters(QString param) {
[730]338
[747]339  bool status = true;
[732]340  QPalette palette( fEncoderPath->palette() );
341
[733]342  QString temp = fParentViewer->setEncoderPath(param);
[744]343  setRecordingInfos("");
[740]344  fEncoderStatus->setText(temp);
[733]345  if (temp != "") {
[732]346    palette.setColor( QPalette::Base, Qt::red);
[746]347    if (fParentViewer->isReadyToEncode()) {
348      setRecordingInfos("No valid encode defined, screen \ncapture are saved in the\ntemp folder in ppm format.Please define a encoder and clic on Apply button");
[747]349        }
350    status = false;
[732]351  } else {
352    palette.setColor( QPalette::Base, Qt::white);
[733]353    fEncoderPath->setText(fParentViewer->getEncoderPath());
[737]354    if (fParentViewer->getEncoderPath() == "") {
[744]355      setRecordingInfos("mpeg_encode is needed to encode in video format.\nIt is available here: \nhttp://bmrc.berkeley.edu/frame/research/mpeg/");
[747]356      status = false;
[737]357    }
[732]358  }
359  fEncoderPath->setPalette(palette);
[747]360  return status;
[733]361}
[732]362
363
[733]364/**
365 * If one of parameter is incorrect, put it in red and don't valid it
366 * If valid, save it
367 */
[747]368bool G4OpenGLQtMovieDialog::checkTempFolderParameters(QString param) {
[732]369
[747]370  bool status = true;
[733]371  QPalette palette( fTempFolderPath->palette() );
372
373  QString temp = fParentViewer->setTempFolderPath(param);
[736]374  fTempFolderStatus->setText(temp);
375  if (temp != "") {
[732]376    palette.setColor( QPalette::Base, Qt::red);
[747]377    status = false;
[732]378  } else {
379    palette.setColor( QPalette::Base, Qt::white);
[736]380    fTempFolderPath->setText(fParentViewer->getTempFolderPath());
[732]381  }
[733]382  fTempFolderPath->setPalette(palette);
[747]383  return status;
[732]384}
385
[733]386
387/**
388 * If one of parameter is incorrect, put it in red and don't valid it
389 * If valid, save it
390 */
[747]391bool G4OpenGLQtMovieDialog::checkSaveFileNameParameters(QString param) {
[733]392
[747]393  bool status = true;
[733]394  QPalette palette( fSaveFileName->palette() );
395
396  QString temp = fParentViewer->setSaveFileName(param);
397    fSaveFileStatus->setText(temp);
398  if (temp != "") {
399    palette.setColor( QPalette::Base, Qt::red);
[747]400    status = false;
[733]401  } else {
402    palette.setColor( QPalette::Base, Qt::white);
403    fSaveFileName->setText(fParentViewer->getSaveFileName());
404  }
405  fSaveFileName->setPalette(palette);
[747]406  return status;
[733]407}
[737]408
409
[744]410void G4OpenGLQtMovieDialog::setRecordingStatus(QString txt) {
411  fRecordingStatus->setText(txt);
[737]412}
413
[744]414void G4OpenGLQtMovieDialog::setRecordingInfos(QString txt) {
415  fRecordingInfos->setText(txt);
416}
417
[730]418#endif
Note: See TracBrowser for help on using the repository browser.