[Geesas-Devs] SF.net SVN: geesas:[6] pencilanimation/src/interface/editor.cpp
Status: Abandoned
Brought to you by:
creek23
From: <cr...@us...> - 2009-02-07 17:04:47
|
Revision: 6 http://geesas.svn.sourceforge.net/geesas/?rev=6&view=rev Author: creek23 Date: 2009-02-07 17:04:42 +0000 (Sat, 07 Feb 2009) Log Message: ----------- Video format option is not used -- better to remove it instead. Modified Paths: -------------- pencilanimation/src/interface/editor.cpp Modified: pencilanimation/src/interface/editor.cpp =================================================================== --- pencilanimation/src/interface/editor.cpp 2009-02-07 17:02:04 UTC (rev 5) +++ pencilanimation/src/interface/editor.cpp 2009-02-07 17:04:42 UTC (rev 6) @@ -1082,20 +1082,20 @@ resolutionLayout->addWidget(exportMovieDialog_vBox,0,1); resolutionBox->setLayout(resolutionLayout); - QGroupBox *formatBox = new QGroupBox(tr("Format")); - exportMovieDialog_format = new QComboBox(); - exportMovieDialog_format->addItem("MOV"); + //QGroupBox *formatBox = new QGroupBox(tr("Format")); + //exportMovieDialog_format = new QComboBox(); + //exportMovieDialog_format->addItem("MOV"); //exportFramesDialog_format->addItem("JPEG"); - QGridLayout *formatLayout = new QGridLayout; - formatLayout->addWidget(exportMovieDialog_format,0,0); - formatBox->setLayout(formatLayout); + //QGridLayout *formatLayout = new QGridLayout; + //formatLayout->addWidget(exportMovieDialog_format,0,0); + //formatBox->setLayout(formatLayout); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); connect(buttonBox, SIGNAL(accepted()), exportMovieDialog, SLOT(accept())); connect(buttonBox, SIGNAL(rejected()), exportMovieDialog, SLOT(reject())); mainLayout->addWidget(resolutionBox, 0, 0); - mainLayout->addWidget(formatBox, 1, 0); + //mainLayout->addWidget(formatBox, 1, 0); mainLayout->addWidget(buttonBox, 2, 0); exportMovieDialog->setLayout(mainLayout); exportMovieDialog->setWindowTitle(tr("Options")); @@ -1103,6 +1103,7 @@ } + void Editor::createExportFlashDialog() { exportFlashDialog = new QDialog(this, Qt::Dialog); QGridLayout *mainLayout = new QGridLayout; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |