source: trunk/geant4/visualization/OpenGL/src/G4OpenGLQtExportDialog.cc @ 633

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

debut de correction du ticket #98

  • Property svn:mime-type set to text/cpp
File size: 11.7 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: G4OpenGLQtExportDialog.cc,v 1.4 2007/11/13 17:48:51 lgarnier Exp $
28// GEANT4 tag $Name:  $
29//
30//
31
32#define GEANT4_QT_DEBUG
33#ifdef G4VIS_BUILD_OPENGLQT_DRIVER
34
35#include "G4OpenGLQtExportDialog.hh"
36
37#include <qvariant.h>
38#include <qpushbutton.h>
39#include <qcheckbox.h>
40#include <qlabel.h>
41#include <qcombobox.h>
42#include <qslider.h>
43#include <qlayout.h>
44#include <qgroupbox.h>
45#include <qradiobutton.h>
46#include <qimage.h>
47#include <qlineedit.h>
48#include <qbuttongroup.h>
49
50G4OpenGLQtExportDialog::G4OpenGLQtExportDialog(
51 QWidget* parent
52,QString nomFich
53 ,int aHeight
54 ,int aWidth
55)
56  : QDialog( parent )
57{
58#if QT_VERSION < 0x040000
59  setCaption( tr( " Export options" ));
60#else
61  setWindowTitle( tr( " Export options" ));
62#endif
63  originalWidth = aWidth;
64  originalHeight = aHeight;
65
66  // Initializations
67  qualitySlider = NULL;
68  width = NULL;
69  height = NULL;
70  colorButton = NULL;
71  BWButton = NULL;
72
73  // global layout
74  QVBoxLayout* globalVLayout = new QVBoxLayout(this);
75
76 
77  if (nomFich.endsWith(".jpg") ||
78      nomFich.endsWith(".jepg")) {
79   
80    QGroupBox *imageGroupBox = new QGroupBox(tr("Image quality"),this);
81    QVBoxLayout *imageGroupBoxLayout = new QVBoxLayout(imageGroupBox);
82    QWidget *sliderBox = new QWidget;
83
84    QHBoxLayout *hSlider = new QHBoxLayout(sliderBox);
85
86    //    qualityLabel =  new QLabel( tr( "Image quality" ) );
87    //    imageGroupBoxLayout->addWidget(qualityLabel);
88    qualitySlider= new QSlider(Qt::Horizontal,this);
89#if QT_VERSION < 0x040000
90    qualitySlider->setMinValue(0);
91    qualitySlider->setMaxValue(100);
92    qualitySlider->setTickmarks(QSlider::Below);
93#else
94    qualitySlider->setMinimum(0);
95    qualitySlider->setMaximum(100);
96    qualitySlider->setTickPosition(QSlider::TicksBelow);
97#endif
98    qualitySlider->setValue(60);
99    hSlider->addWidget(new QLabel("low",this));
100    hSlider->addWidget(qualitySlider);
101    hSlider->addWidget(new QLabel("Maximum",this));
102#if QT_VERSION >= 0x040000
103    sliderBox->setLayout(hSlider);
104#endif
105    imageGroupBoxLayout->addWidget(sliderBox);
106
107#if QT_VERSION >= 0x040000
108    imageGroupBox->setLayout(imageGroupBoxLayout);
109#endif
110    globalVLayout->addWidget(imageGroupBox);
111  }
112 
113  if(nomFich.endsWith(".eps")) {
114
115    //    transparencyEPS = new QCheckBox( "transparencyEPS" );
116    //    transparencyEPS->setText( "save background" );
117    //    transparencyEPS->setChecked( true );
118
119    colorButton = new QRadioButton("Color",this);
120    BWButton = new QRadioButton("Grayscale",this);
121
122    QWidget * EPSWidgetGroupBox; // widget containing group button
123    QButtonGroup * EPSButtonGroupBox; // group button
124#if QT_VERSION < 0x040000
125    EPSButtonGroupBox = new QButtonGroup( 2,Qt::Vertical, tr("EPS options"),this);
126    EPSButtonGroupBox->insert(colorButton);
127    EPSButtonGroupBox->insert(BWButton);
128    EPSButtonGroupBox->setExclusive(true);
129    colorButton->setChecked( true );
130    EPSWidgetGroupBox = EPSButtonGroupBox;
131
132#else
133    EPSWidgetGroupBox = new QGroupBox(tr("EPS options"));
134    QVBoxLayout *EPSGroupBoxLayout = new QVBoxLayout(EPSWidgetGroupBox);
135    EPSButtonGroupBox = new QButtonGroup();
136    colorButton->setChecked( true );
137    EPSButtonGroupBox->addButton(colorButton);
138    EPSButtonGroupBox->addButton(BWButton);
139    EPSButtonGroupBox->setExclusive(true);
140
141    EPSGroupBoxLayout->addWidget(colorButton);   
142    EPSGroupBoxLayout->addWidget(BWButton);   
143    EPSWidgetGroupBox->setLayout(EPSGroupBoxLayout);
144
145#endif
146
147    //    EPSGroupBoxLayout->addWidget(transparencyEPS);   
148    globalVLayout->addWidget(EPSWidgetGroupBox);
149
150  }
151
152  if(nomFich.endsWith(".tif") ||
153     nomFich.endsWith(".tiff") ||
154     nomFich.endsWith(".jpg") ||
155     nomFich.endsWith(".png") ||
156     nomFich.endsWith(".xpm")) {
157
158    QGroupBox *transparencyGroupBox = new QGroupBox(tr("Transparency"),this);
159    QVBoxLayout *transparencyGroupBoxLayout = new QVBoxLayout(transparencyGroupBox);
160
161    boxTransparency = new QCheckBox("Save transparency",this);
162    boxTransparency->setChecked( false );
163    //    boxTransparency->setEnabled(false);
164
165    transparencyGroupBoxLayout->addWidget(boxTransparency);   
166#if QT_VERSION >= 0x040000
167    transparencyGroupBox->setLayout(transparencyGroupBoxLayout);
168#endif
169    globalVLayout->addWidget(transparencyGroupBox);
170
171  }
172
173  // size box
174  QWidget* modifyAndRatioWidget = new QWidget;
175
176  QHBoxLayout *modifyAndRatioLayout = new QHBoxLayout(modifyAndRatioWidget);
177
178  // original button
179  original = new QRadioButton("Original",this);
180  // modify and ratio
181  modify = new QRadioButton("Modify",this);
182
183  QWidget * sizeWidgetGroupBox; // widget containing group button
184  QButtonGroup * sizeButtonGroupBox; // group button
185  QLayout *sizeGroupBoxLayout;
186#if QT_VERSION < 0x040000
187  sizeButtonGroupBox = new QButtonGroup ( 2,Qt::Vertical, tr("Size"),this);
188
189  original = new QRadioButton("Original",sizeButtonGroupBox);
190  modify = new QRadioButton("Modify",sizeButtonGroupBox);
191
192  sizeButtonGroupBox->insert(original);
193  sizeButtonGroupBox->insert(modify);
194  sizeButtonGroupBox->setExclusive(true);
195  original->setChecked( true );
196  sizeWidgetGroupBox = sizeButtonGroupBox;
197  sizeGroupBoxLayout = sizeWidgetGroupBox->layout();
198
199#else
200 
201  sizeWidgetGroupBox = new QGroupBox(tr("Size"));
202  sizeGroupBoxLayout = new QVBoxLayout(sizeWidgetGroupBox);
203  sizeButtonGroupBox = new QButtonGroup();
204  original->setChecked( true );
205
206  original = new QRadioButton("Original");
207  modify = new QRadioButton("Modify");
208
209  sizeButtonGroupBox->addButton(modify);
210  sizeButtonGroupBox->addButton(original);
211  sizeButtonGroupBox->setExclusive(true);
212
213  sizeGroupBoxLayout->addWidget(modify);   
214  sizeGroupBoxLayout->addWidget(original);   
215 
216  sizeWidgetGroupBox->setLayout(sizeGroupBoxLayout);
217#endif
218
219
220  ratioCheckBox = new QCheckBox( "Keep ratio",modifyAndRatioWidget);
221  ratioCheckBox->setChecked( true );
222
223  modifyAndRatioLayout->addWidget(modify);
224  modifyAndRatioLayout->addWidget(ratioCheckBox);
225#if QT_VERSION >= 0x040000
226  modifyAndRatioWidget->setLayout(modifyAndRatioLayout);
227#endif
228#if QT_VERSION < 0x040000
229  sizeGroupBoxLayout->add(modifyAndRatioWidget);
230#else
231  sizeGroupBoxLayout->addWidget(modifyAndRatioWidget);
232#endif
233  if (modify->isChecked()) {
234    ratioCheckBox->show();
235  } else {
236    ratioCheckBox->hide();
237  }
238
239#if QT_VERSION < 0x040000
240  connect( sizeButtonGroupBox, SIGNAL( clicked(int) ), this, SLOT( changeSizeBox()) );
241#else
242  connect( sizeButtonGroupBox, SIGNAL( buttonClicked(int) ), this, SLOT( changeSizeBox()) );
243#endif
244
245  // height
246  heightWidget = new QWidget;
247
248  QHBoxLayout *heightLineLayout = new QHBoxLayout(heightWidget);
249
250  QString tmp;
251 
252  heightLineLayout->addWidget(new QLabel("Height",this));
253  height = new QLineEdit(tmp.setNum(originalHeight),this);
254  height->setMaxLength(5);
255#if QT_VERSION < 0x040000
256  heightLineLayout->add(height);
257#else
258  heightLineLayout->addWidget(height);
259#endif
260#if QT_VERSION >= 0x040000
261  heightWidget->setLayout(heightLineLayout);
262#endif
263#if QT_VERSION < 0x040000
264  sizeGroupBoxLayout->add(heightWidget);
265#else
266  sizeGroupBoxLayout->addWidget(heightWidget);
267#endif
268  connect( height, SIGNAL( textChanged ( const QString& ) ), this, SLOT( textHeightChanged(const QString &) ) );
269
270
271  // width
272  widthWidget = new QWidget;
273
274  QHBoxLayout *widthLineLayout = new QHBoxLayout(widthWidget);
275
276#if QT_VERSION < 0x040000
277  widthLineLayout->add(new QLabel("Width ",widthWidget));
278#else
279  widthLineLayout->addWidget(new QLabel("Width ",widthWidget));
280#endif
281  width = new QLineEdit(tmp.setNum(originalWidth),this);
282  width->setMaxLength(5);
283#if QT_VERSION < 0x040000
284  widthLineLayout->add(width);
285#else
286  widthLineLayout->addWidget(width);
287#endif
288#if QT_VERSION >= 0x040000
289  widthWidget->setLayout(widthLineLayout);
290#endif
291#if QT_VERSION < 0x040000
292  sizeGroupBoxLayout->add(widthWidget);
293#else
294  sizeGroupBoxLayout->addWidget(widthWidget);
295#endif
296  connect( width, SIGNAL( textChanged ( const QString& ) ), this, SLOT( textWidthChanged(const QString &) ) );
297
298#if QT_VERSION >= 0x040000
299  sizeWidgetGroupBox->setLayout(sizeGroupBoxLayout);
300#endif
301  globalVLayout->addWidget(sizeWidgetGroupBox);
302
303  heightWidget->hide();
304  widthWidget->hide();
305
306  // button ok/cancel box
307
308  QGroupBox *buttonGroupBox = new QGroupBox(this);
309
310  QHBoxLayout *buttonGroupBoxLayout = new QHBoxLayout(buttonGroupBox);
311
312  buttonOk = new QPushButton( tr( "&OK" ),buttonGroupBox );
313  buttonOk->setAutoDefault( TRUE );
314  buttonOk->setDefault( TRUE );
315  buttonGroupBoxLayout->addWidget(buttonOk);
316
317  buttonCancel = new QPushButton( tr( "&Cancel" ),buttonGroupBox );
318  buttonCancel->setAutoDefault( TRUE );
319  buttonGroupBoxLayout->addWidget(buttonCancel);
320
321#if QT_VERSION >= 0x040000
322  buttonGroupBox->setLayout(buttonGroupBoxLayout);
323#endif
324  globalVLayout->addWidget(buttonGroupBox);
325
326
327#if QT_VERSION >= 0x040000
328  setLayout(globalVLayout);
329#endif
330
331  // signals and slots connections
332  connect( buttonOk, SIGNAL( clicked() ), this, SLOT( accept() ) );
333  connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
334}
335
336
337
338int G4OpenGLQtExportDialog::getSliderValue()
339{
340  if (!qualitySlider) return -1;
341  return qualitySlider->value();
342}
343
344int G4OpenGLQtExportDialog::getHeight()
345{
346  if (!height) return -1;
347  return height->text().toInt();
348}
349
350int G4OpenGLQtExportDialog::getWidth()
351{
352  if (!width) return -1;
353  return width->text().toInt();
354}
355
356bool G4OpenGLQtExportDialog::getTransparency()
357{
358  if (!boxTransparency) return -1;
359  return boxTransparency->isChecked();
360}
361
362int G4OpenGLQtExportDialog::getNbColor()
363{
364  // Black and white
365  if (!colorButton->isChecked())
366    return 1;
367  // rgb color
368  return 3;
369}
370
371
372void G4OpenGLQtExportDialog::changeSizeBox()
373{
374  if ( original->isChecked()) {
375    heightWidget->hide();
376    widthWidget->hide();
377    ratioCheckBox->hide();
378  } else {
379    heightWidget->show();
380    widthWidget->show();
381    ratioCheckBox->show();
382  }
383}
384
385void G4OpenGLQtExportDialog::textWidthChanged(
386 const QString & s
387 )
388{
389  if (ratioCheckBox->isChecked()){
390    QString tmp;
391    width->setText(tmp.setNum(s.toInt()*originalHeight/originalHeight));
392  }
393}
394
395void G4OpenGLQtExportDialog::  textHeightChanged(
396 const QString & s
397)
398{
399  if (ratioCheckBox->isChecked()){
400    QString tmp;
401    width->setText(tmp.setNum(s.toInt()*originalWidth/originalWidth));
402  }
403}
404
405G4OpenGLQtExportDialog::~G4OpenGLQtExportDialog()
406{
407}
408
409
410#endif
Note: See TracBrowser for help on using the repository browser.