Small build script update.
[simple-x264-launcher.git] / src / win_main.cpp
blobed48c34fec4acbd59dcffc0cd455df8dad246d4d
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2017 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #include "win_main.h"
23 #include "UIC_win_main.h"
25 //Internal
26 #include "global.h"
27 #include "cli.h"
28 #include "ipc.h"
29 #include "model_status.h"
30 #include "model_sysinfo.h"
31 #include "model_jobList.h"
32 #include "model_options.h"
33 #include "model_preferences.h"
34 #include "model_recently.h"
35 #include "thread_avisynth.h"
36 #include "thread_binaries.h"
37 #include "thread_vapoursynth.h"
38 #include "thread_encode.h"
39 #include "thread_ipc_recv.h"
40 #include "input_filter.h"
41 #include "win_addJob.h"
42 #include "win_about.h"
43 #include "win_preferences.h"
44 #include "win_updater.h"
45 #include "resource.h"
47 //MUtils
48 #include <MUtils/OSSupport.h>
49 #include <MUtils/CPUFeatures.h>
50 #include <MUtils/IPCChannel.h>
51 #include <MUtils/GUI.h>
52 #include <MUtils/Sound.h>
53 #include <MUtils/Exception.h>
54 #include <MUtils/Taskbar7.h>
55 #include <MUtils/Version.h>
57 //Qt
58 #include <QDate>
59 #include <QTimer>
60 #include <QCloseEvent>
61 #include <QMessageBox>
62 #include <QDesktopServices>
63 #include <QUrl>
64 #include <QDir>
65 #include <QLibrary>
66 #include <QProcess>
67 #include <QProgressDialog>
68 #include <QScrollBar>
69 #include <QTextStream>
70 #include <QSettings>
71 #include <QFileDialog>
72 #include <QSystemTrayIcon>
73 #include <QMovie>
75 #include <ctime>
77 //Constants
78 static const char *tpl_last = "<LAST_USED>";
79 static const char *home_url = "http://muldersoft.com/";
80 static const char *update_url = "https://github.com/lordmulder/Simple-x264-Launcher/releases/latest";
81 static const char *avs_dl_url = "http://sourceforge.net/projects/avisynth2/files/AviSynth%202.5/";
82 static const char *python_url = "https://www.python.org/downloads/";
83 static const char *vsynth_url = "http://www.vapoursynth.com/";
84 static const int vsynth_rev = 24;
86 //Macros
87 #define SET_FONT_BOLD(WIDGET,BOLD) do { QFont _font = WIDGET->font(); _font.setBold(BOLD); WIDGET->setFont(_font); } while(0)
88 #define SET_TEXT_COLOR(WIDGET,COLOR) do { QPalette _palette = WIDGET->palette(); _palette.setColor(QPalette::WindowText, (COLOR)); _palette.setColor(QPalette::Text, (COLOR)); WIDGET->setPalette(_palette); } while(0)
89 #define LINK(URL) (QString("<a href=\"%1\">%1</a>").arg((URL)))
90 #define INIT_ERROR_EXIT() do { close(); qApp->exit(-1); return; } while(0)
91 #define SETUP_WEBLINK(OBJ, URL) do { (OBJ)->setData(QVariant(QUrl(URL))); connect((OBJ), SIGNAL(triggered()), this, SLOT(showWebLink())); } while(0)
92 #define APP_IS_READY (m_initialized && (!m_fileTimer->isActive()) && (QApplication::activeModalWidget() == NULL))
93 #define ENSURE_APP_IS_READY() do { if(!APP_IS_READY) { MUtils::Sound::beep(MUtils::Sound::BEEP_WRN); qWarning("Cannot perfrom this action at this time!"); return; } } while(0)
94 #define X264_STRCMP(X,Y) ((X).compare((Y), Qt::CaseInsensitive) == 0)
96 ///////////////////////////////////////////////////////////////////////////////
97 // Constructor & Destructor
98 ///////////////////////////////////////////////////////////////////////////////
101 * Constructor
103 MainWindow::MainWindow(const MUtils::CPUFetaures::cpu_info_t &cpuFeatures, MUtils::IPCChannel *const ipcChannel)
105 m_ipcChannel(ipcChannel),
106 m_sysinfo(NULL),
107 m_options(NULL),
108 m_jobList(NULL),
109 m_pendingFiles(new QStringList()),
110 m_preferences(NULL),
111 m_recentlyUsed(NULL),
112 m_initialized(false),
113 ui(new Ui::MainWindow())
115 //Init the dialog, from the .ui file
116 ui->setupUi(this);
117 setWindowFlags(windowFlags() & (~Qt::WindowMaximizeButtonHint));
119 //Register meta types
120 qRegisterMetaType<QUuid>("QUuid");
121 qRegisterMetaType<QUuid>("DWORD");
122 qRegisterMetaType<JobStatus>("JobStatus");
124 //Create and initialize the sysinfo object
125 m_sysinfo.reset(new SysinfoModel());
126 m_sysinfo->setAppPath(QApplication::applicationDirPath());
127 m_sysinfo->setCPUFeatures(SysinfoModel::CPUFeatures_MMX, cpuFeatures.features & MUtils::CPUFetaures::FLAG_MMX);
128 m_sysinfo->setCPUFeatures(SysinfoModel::CPUFeatures_SSE, cpuFeatures.features & MUtils::CPUFetaures::FLAG_SSE);
129 m_sysinfo->setCPUFeatures(SysinfoModel::CPUFeatures_X64, cpuFeatures.x64 && (cpuFeatures.features & MUtils::CPUFetaures::FLAG_SSE2)); //X64 implies SSE2
131 //Load preferences
132 m_preferences.reset(new PreferencesModel());
133 PreferencesModel::loadPreferences(m_preferences.data());
135 //Load recently used
136 m_recentlyUsed.reset(new RecentlyUsed());
137 RecentlyUsed::loadRecentlyUsed(m_recentlyUsed.data());
139 //Create options object
140 m_options.reset(new OptionsModel(m_sysinfo.data()));
141 OptionsModel::loadTemplate(m_options.data(), QString::fromLatin1(tpl_last));
143 //Freeze minimum size
144 setMinimumSize(size());
145 ui->splitter->setSizes(QList<int>() << 16 << 196);
147 //Update title
148 ui->labelBuildDate->setText(tr("Built on %1 at %2").arg(MUtils::Version::app_build_date().toString(Qt::ISODate), MUtils::Version::app_build_time().toString(Qt::ISODate)));
150 if(MUTILS_DEBUG)
152 setWindowTitle(QString("%1 | !!! DEBUG VERSION !!!").arg(windowTitle()));
153 setStyleSheet("QMenuBar, QMainWindow { background-color: yellow }");
155 else if(x264_is_prerelease())
157 setWindowTitle(QString("%1 | PRE-RELEASE VERSION").arg(windowTitle()));
160 //Create model
161 m_jobList.reset(new JobListModel(m_preferences.data()));
162 connect(m_jobList.data(), SIGNAL(dataChanged(QModelIndex, QModelIndex)), this, SLOT(jobChangedData(QModelIndex, QModelIndex)));
163 ui->jobsView->setModel(m_jobList.data());
165 //Setup view
166 ui->jobsView->horizontalHeader()->setSectionHidden(3, true);
167 ui->jobsView->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch);
168 ui->jobsView->horizontalHeader()->setResizeMode(1, QHeaderView::ResizeToContents);
169 ui->jobsView->horizontalHeader()->setResizeMode(2, QHeaderView::ResizeToContents);
170 ui->jobsView->horizontalHeader()->setMinimumSectionSize(96);
171 ui->jobsView->verticalHeader()->setResizeMode(QHeaderView::ResizeToContents);
172 connect(ui->jobsView->selectionModel(), SIGNAL(currentChanged(QModelIndex, QModelIndex)), this, SLOT(jobSelected(QModelIndex, QModelIndex)));
174 //Setup key listener
175 m_inputFilter_jobList.reset(new InputEventFilter(ui->jobsView));
176 m_inputFilter_jobList->addKeyFilter(Qt::ControlModifier | Qt::Key_Up, 1);
177 m_inputFilter_jobList->addKeyFilter(Qt::ControlModifier | Qt::Key_Down, 2);
178 connect(m_inputFilter_jobList.data(), SIGNAL(keyPressed(int)), this, SLOT(jobListKeyPressed(int)));
180 //Setup mouse listener
181 m_inputFilter_version.reset(new InputEventFilter(ui->labelBuildDate));
182 m_inputFilter_version->addMouseFilter(Qt::LeftButton, 0);
183 m_inputFilter_version->addMouseFilter(Qt::RightButton, 0);
184 connect(m_inputFilter_version.data(), SIGNAL(mouseClicked(int)), this, SLOT(versionLabelMouseClicked(int)));
186 //Create context menu
187 QAction *actionClipboard = new QAction(QIcon(":/buttons/page_paste.png"), tr("Copy to Clipboard"), ui->logView);
188 QAction *actionSaveToLog = new QAction(QIcon(":/buttons/disk.png"), tr("Save to File..."), ui->logView);
189 QAction *actionSeparator = new QAction(ui->logView);
190 QAction *actionWordwraps = new QAction(QIcon(":/buttons/text_wrapping.png"), tr("Enable Line-Wrapping"), ui->logView);
191 actionSeparator->setSeparator(true);
192 actionWordwraps->setCheckable(true);
193 actionClipboard->setEnabled(false);
194 actionSaveToLog->setEnabled(false);
195 actionWordwraps->setEnabled(false);
196 ui->logView->addAction(actionClipboard);
197 ui->logView->addAction(actionSaveToLog);
198 ui->logView->addAction(actionSeparator);
199 ui->logView->addAction(actionWordwraps);
200 connect(actionClipboard, SIGNAL(triggered(bool)), this, SLOT(copyLogToClipboard(bool)));
201 connect(actionSaveToLog, SIGNAL(triggered(bool)), this, SLOT(saveLogToLocalFile(bool)));
202 connect(actionWordwraps, SIGNAL(triggered(bool)), this, SLOT(toggleLineWrapping(bool)));
203 ui->jobsView->addActions(ui->menuJob->actions());
205 //Enable buttons
206 connect(ui->buttonAddJob, SIGNAL(clicked()), this, SLOT(addButtonPressed() ));
207 connect(ui->buttonStartJob, SIGNAL(clicked()), this, SLOT(startButtonPressed() ));
208 connect(ui->buttonAbortJob, SIGNAL(clicked()), this, SLOT(abortButtonPressed() ));
209 connect(ui->buttonPauseJob, SIGNAL(toggled(bool)), this, SLOT(pauseButtonPressed(bool)));
210 connect(ui->actionJob_Delete, SIGNAL(triggered()), this, SLOT(deleteButtonPressed() ));
211 connect(ui->actionJob_Restart, SIGNAL(triggered()), this, SLOT(restartButtonPressed() ));
212 connect(ui->actionJob_Browse, SIGNAL(triggered()), this, SLOT(browseButtonPressed() ));
213 connect(ui->actionJob_MoveUp, SIGNAL(triggered()), this, SLOT(moveButtonPressed() ));
214 connect(ui->actionJob_MoveDown, SIGNAL(triggered()), this, SLOT(moveButtonPressed() ));
216 //Enable menu
217 connect(ui->actionOpen, SIGNAL(triggered()), this, SLOT(openActionTriggered()));
218 connect(ui->actionCleanup_Finished, SIGNAL(triggered()), this, SLOT(cleanupActionTriggered()));
219 connect(ui->actionCleanup_Enqueued, SIGNAL(triggered()), this, SLOT(cleanupActionTriggered()));
220 connect(ui->actionAbout, SIGNAL(triggered()), this, SLOT(showAbout()));
221 connect(ui->actionPreferences, SIGNAL(triggered()), this, SLOT(showPreferences()));
222 connect(ui->actionCheckForUpdates, SIGNAL(triggered()), this, SLOT(checkUpdates()));
223 ui->actionCleanup_Finished->setData(QVariant(bool(0)));
224 ui->actionCleanup_Enqueued->setData(QVariant(bool(1)));
226 //Setup web-links
227 SETUP_WEBLINK(ui->actionWebMulder, home_url);
228 SETUP_WEBLINK(ui->actionWebX264, "http://www.videolan.org/developers/x264.html");
229 SETUP_WEBLINK(ui->actionWebX265, "http://www.videolan.org/developers/x265.html");
230 SETUP_WEBLINK(ui->actionWebX264Komisar, "http://komisar.gin.by/");
231 SETUP_WEBLINK(ui->actionWebX264VideoLAN, "http://download.videolan.org/pub/x264/binaries/");
232 SETUP_WEBLINK(ui->actionWebX264FreeCodecs, "http://www.free-codecs.com/x264_video_codec_download.htm");
233 SETUP_WEBLINK(ui->actionWebX265Fllear, "http://x265.ru/en/builds/");
234 SETUP_WEBLINK(ui->actionWebX265LigH, "https://www.mediafire.com/?6lfp2jlygogwa");
235 SETUP_WEBLINK(ui->actionWebX265Snowfag, "http://builds.x265.eu/");
236 SETUP_WEBLINK(ui->actionWebX265FreeCodecs, "http://www.free-codecs.com/x265_hevc_encoder_download.htm");
237 SETUP_WEBLINK(ui->actionWebAvisynth32, "https://sourceforge.net/projects/avisynth2/files/AviSynth%202.6/");
238 SETUP_WEBLINK(ui->actionWebAvisynth64, "http://forum.doom9.org/showthread.php?t=152800");
239 SETUP_WEBLINK(ui->actionWebAvisynthPlus, "http://www.avs-plus.net/");
240 SETUP_WEBLINK(ui->actionWebVapourSynth, "http://www.vapoursynth.com/");
241 SETUP_WEBLINK(ui->actionWebVapourSynthDocs, "http://www.vapoursynth.com/doc/");
242 SETUP_WEBLINK(ui->actionOnlineDocX264, "http://en.wikibooks.org/wiki/MeGUI/x264_Settings"); //http://mewiki.project357.com/wiki/X264_Settings
243 SETUP_WEBLINK(ui->actionOnlineDocX265, "http://x265.readthedocs.org/en/default/");
244 SETUP_WEBLINK(ui->actionWebBluRay, "http://www.x264bluray.com/");
245 SETUP_WEBLINK(ui->actionWebAvsWiki, "http://avisynth.nl/index.php/Main_Page#Usage");
246 SETUP_WEBLINK(ui->actionWebSupport, "http://forum.doom9.org/showthread.php?t=144140");
247 SETUP_WEBLINK(ui->actionWebSecret, "http://www.youtube.com/watch_popup?v=AXIeHY-OYNI");
249 //Create floating label
250 m_label[0].reset(new QLabel(ui->jobsView->viewport()));
251 m_label[1].reset(new QLabel(ui->logView->viewport()));
252 if(!m_label[0].isNull())
254 m_label[0]->setText(tr("No job created yet. Please click the 'Add New Job' button!"));
255 m_label[0]->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
256 SET_TEXT_COLOR(m_label[0], Qt::darkGray);
257 SET_FONT_BOLD(m_label[0], true);
258 m_label[0]->setVisible(true);
259 m_label[0]->setContextMenuPolicy(Qt::ActionsContextMenu);
260 m_label[0]->addActions(ui->jobsView->actions());
262 if(!m_label[1].isNull())
264 m_animation.reset(new QMovie(":/images/spinner.gif"));
265 m_label[1]->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
266 if(!m_animation.isNull())
268 m_label[1]->setMovie(m_animation.data());
269 m_animation->start();
272 connect(ui->splitter, SIGNAL(splitterMoved(int, int)), this, SLOT(updateLabelPos()));
273 updateLabelPos();
275 //Init system tray icon
276 m_sysTray.reset(new QSystemTrayIcon(this));
277 m_sysTray->setToolTip(this->windowTitle());
278 m_sysTray->setIcon(this->windowIcon());
279 connect(m_sysTray.data(), SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(sysTrayActived()));
281 //Init taskbar progress
282 m_taskbar.reset(new MUtils::Taskbar7(this));
284 //Create corner widget
285 QLabel *checkUp = new QLabel(ui->menubar);
286 checkUp->setText(QString("<nobr><img src=\":/buttons/exclamation_small.png\">&nbsp;<b style=\"color:darkred\">%1</b>&nbsp;&nbsp;&nbsp;</nobr>").arg(tr("Check for Updates")));
287 checkUp->setFixedHeight(ui->menubar->height());
288 checkUp->setCursor(QCursor(Qt::PointingHandCursor));
289 m_inputFilter_checkUp.reset(new InputEventFilter(checkUp));
290 m_inputFilter_checkUp->addMouseFilter(Qt::LeftButton, 0);
291 m_inputFilter_checkUp->addMouseFilter(Qt::RightButton, 0);
292 connect(m_inputFilter_checkUp.data(), SIGNAL(mouseClicked(int)), this, SLOT(checkUpdates()));
293 checkUp->hide();
294 ui->menubar->setCornerWidget(checkUp);
296 //Create timer
297 m_fileTimer.reset(new QTimer(this));
298 connect(m_fileTimer.data(), SIGNAL(timeout()), this, SLOT(handlePendingFiles()));
302 * Destructor
304 MainWindow::~MainWindow(void)
306 OptionsModel::saveTemplate(m_options.data(), QString::fromLatin1(tpl_last));
308 if(!m_ipcThread.isNull())
310 m_ipcThread->stop();
311 if(!m_ipcThread->wait(5000))
313 m_ipcThread->terminate();
314 m_ipcThread->wait();
318 delete ui;
321 ///////////////////////////////////////////////////////////////////////////////
322 // Slots
323 ///////////////////////////////////////////////////////////////////////////////
326 * The "add" button was clicked
328 void MainWindow::addButtonPressed()
330 ENSURE_APP_IS_READY();
332 qDebug("MainWindow::addButtonPressed");
333 bool runImmediately = (countRunningJobs() < (m_preferences->getAutoRunNextJob() ? m_preferences->getMaxRunningJobCount() : 1));
334 QString sourceFileName, outputFileName;
336 if(createJob(sourceFileName, outputFileName, m_options.data(), runImmediately))
338 appendJob(sourceFileName, outputFileName, m_options.data(), runImmediately);
343 * The "open" action was triggered
345 void MainWindow::openActionTriggered()
347 ENSURE_APP_IS_READY();
348 qWarning("openActionTriggered()");
350 QStringList fileList = QFileDialog::getOpenFileNames(this, tr("Open Source File(s)"), m_recentlyUsed->sourceDirectory(), AddJobDialog::getInputFilterLst(), NULL, QFileDialog::DontUseNativeDialog);
351 if(!fileList.empty())
353 m_recentlyUsed->setSourceDirectory(QFileInfo(fileList.last()).absolutePath());
354 if(fileList.count() > 1)
356 createJobMultiple(fileList);
358 else
360 bool runImmediately = (countRunningJobs() < (m_preferences->getAutoRunNextJob() ? m_preferences->getMaxRunningJobCount() : 1));
361 QString sourceFileName(fileList.first()), outputFileName;
362 if(createJob(sourceFileName, outputFileName, m_options.data(), runImmediately))
364 appendJob(sourceFileName, outputFileName, m_options.data(), runImmediately);
371 * The "clean-up" action was invoked
373 void MainWindow::cleanupActionTriggered(void)
375 ENSURE_APP_IS_READY();
377 QAction *const sender = dynamic_cast<QAction*>(QObject::sender());
378 if (sender)
380 const QVariant data = sender->data();
381 if (data.isValid() && (data.type() == QVariant::Bool))
383 const bool mode = data.toBool();
384 const int rows = m_jobList->rowCount(QModelIndex());
385 QList<int> jobIndices;
386 for (int i = 0; i < rows; i++)
388 const JobStatus status = m_jobList->getJobStatus(m_jobList->index(i, 0, QModelIndex()));
389 if (mode && (status == JobStatus_Enqueued))
391 jobIndices.append(i);
393 else if ((!mode) && ((status == JobStatus_Completed) || (status == JobStatus_Aborted) || (status == JobStatus_Failed)))
395 jobIndices.append(i);
398 if (!jobIndices.isEmpty())
400 QListIterator<int> iter(jobIndices);
401 iter.toBack();
402 while(iter.hasPrevious())
404 m_jobList->deleteJob(m_jobList->index(iter.previous(), 0, QModelIndex()));
407 else
409 MUtils::Sound::beep(MUtils::Sound::BEEP_WRN);
416 * The "start" button was clicked
418 void MainWindow::startButtonPressed(void)
420 ENSURE_APP_IS_READY();
421 m_jobList->startJob(ui->jobsView->currentIndex());
425 * The "abort" button was clicked
427 void MainWindow::abortButtonPressed(void)
429 ENSURE_APP_IS_READY();
431 if(QMessageBox::question(this, tr("Abort Job?"), tr("<nobr>Do you really want to <b>abort</b> the selected job now?</nobr>"), tr("Back"), tr("Abort Job")) == 1)
433 m_jobList->abortJob(ui->jobsView->currentIndex());
438 * The "delete" button was clicked
440 void MainWindow::deleteButtonPressed(void)
442 ENSURE_APP_IS_READY();
444 m_jobList->deleteJob(ui->jobsView->currentIndex());
445 m_label[0]->setVisible(m_jobList->rowCount(QModelIndex()) == 0);
449 * The "browse" button was clicked
451 void MainWindow::browseButtonPressed(void)
453 ENSURE_APP_IS_READY();
455 QString outputFile = m_jobList->getJobOutputFile(ui->jobsView->currentIndex());
456 if((!outputFile.isEmpty()) && QFileInfo(outputFile).exists() && QFileInfo(outputFile).isFile())
458 QProcess::startDetached(QString::fromLatin1("explorer.exe"), QStringList() << QString::fromLatin1("/select,") << QDir::toNativeSeparators(outputFile), QFileInfo(outputFile).path());
460 else
462 QMessageBox::warning(this, tr("Not Found"), tr("Sorry, the output file could not be found!"));
467 * The "browse" button was clicked
469 void MainWindow::moveButtonPressed(void)
471 ENSURE_APP_IS_READY();
473 if(sender() == ui->actionJob_MoveUp)
475 qDebug("Move job %d (direction: UP)", ui->jobsView->currentIndex().row());
476 if(!m_jobList->moveJob(ui->jobsView->currentIndex(), JobListModel::MOVE_UP))
478 MUtils::Sound::beep(MUtils::Sound::BEEP_ERR);
480 ui->jobsView->scrollTo(ui->jobsView->currentIndex(), QAbstractItemView::PositionAtCenter);
482 else if(sender() == ui->actionJob_MoveDown)
484 qDebug("Move job %d (direction: DOWN)", ui->jobsView->currentIndex().row());
485 if(!m_jobList->moveJob(ui->jobsView->currentIndex(), JobListModel::MOVE_DOWN))
487 MUtils::Sound::beep(MUtils::Sound::BEEP_ERR);
489 ui->jobsView->scrollTo(ui->jobsView->currentIndex(), QAbstractItemView::PositionAtCenter);
491 else
493 qWarning("[moveButtonPressed] Error: Unknown sender!");
498 * The "pause" button was clicked
500 void MainWindow::pauseButtonPressed(bool checked)
502 if(!APP_IS_READY)
504 MUtils::Sound::beep(MUtils::Sound::BEEP_WRN);
505 qWarning("Cannot perfrom this action at this time!");
506 ui->buttonPauseJob->setChecked(!checked);
509 if(checked)
511 m_jobList->pauseJob(ui->jobsView->currentIndex());
513 else
515 m_jobList->resumeJob(ui->jobsView->currentIndex());
520 * The "restart" button was clicked
522 void MainWindow::restartButtonPressed(void)
524 ENSURE_APP_IS_READY();
526 const QModelIndex index = ui->jobsView->currentIndex();
527 const OptionsModel *options = m_jobList->getJobOptions(index);
528 QString sourceFileName = m_jobList->getJobSourceFile(index);
529 QString outputFileName = m_jobList->getJobOutputFile(index);
531 if((options) && (!sourceFileName.isEmpty()) && (!outputFileName.isEmpty()))
533 bool runImmediately = (countRunningJobs() < (m_preferences->getAutoRunNextJob() ? m_preferences->getMaxRunningJobCount() : 1));
534 OptionsModel *tempOptions = new OptionsModel(*options);
535 if(createJob(sourceFileName, outputFileName, tempOptions, runImmediately, true))
537 appendJob(sourceFileName, outputFileName, tempOptions, runImmediately);
539 MUTILS_DELETE(tempOptions);
544 * Job item selected by user
546 void MainWindow::jobSelected(const QModelIndex & current, const QModelIndex & previous)
548 qDebug("Job selected: %d", current.row());
550 if(ui->logView->model())
552 disconnect(ui->logView->model(), SIGNAL(rowsInserted(QModelIndex, int, int)), this, SLOT(jobLogExtended(QModelIndex, int, int)));
555 if(current.isValid())
557 ui->logView->setModel(m_jobList->getLogFile(current));
558 connect(ui->logView->model(), SIGNAL(rowsInserted(QModelIndex, int, int)), this, SLOT(jobLogExtended(QModelIndex, int, int)));
559 foreach(QAction *action, ui->logView->actions())
561 action->setEnabled(true);
563 QTimer::singleShot(0, ui->logView, SLOT(scrollToBottom()));
565 ui->progressBar->setValue(m_jobList->getJobProgress(current));
566 ui->editDetails->setText(m_jobList->data(m_jobList->index(current.row(), 3, QModelIndex()), Qt::DisplayRole).toString());
567 updateButtons(m_jobList->getJobStatus(current));
568 updateTaskbar(m_jobList->getJobStatus(current), m_jobList->data(m_jobList->index(current.row(), 0, QModelIndex()), Qt::DecorationRole).value<QIcon>());
570 else
572 ui->logView->setModel(NULL);
573 foreach(QAction *action, ui->logView->actions())
575 action->setEnabled(false);
577 ui->progressBar->setValue(0);
578 ui->editDetails->clear();
579 updateButtons(JobStatus_Undefined);
580 updateTaskbar(JobStatus_Undefined, QIcon());
583 ui->progressBar->repaint();
587 * Handle update of job info (status, progress, details, etc)
589 void MainWindow::jobChangedData(const QModelIndex &topLeft, const QModelIndex &bottomRight)
591 int selected = ui->jobsView->currentIndex().row();
593 if(topLeft.column() <= 1 && bottomRight.column() >= 1) /*STATUS*/
595 for(int i = topLeft.row(); i <= bottomRight.row(); i++)
597 JobStatus status = m_jobList->getJobStatus(m_jobList->index(i, 0, QModelIndex()));
598 if(i == selected)
600 qDebug("Current job changed status!");
601 updateButtons(status);
602 updateTaskbar(status, m_jobList->data(m_jobList->index(i, 0, QModelIndex()), Qt::DecorationRole).value<QIcon>());
604 if((status == JobStatus_Completed) || (status == JobStatus_Failed))
606 if(m_preferences->getAutoRunNextJob()) QTimer::singleShot(0, this, SLOT(launchNextJob()));
607 if(m_preferences->getSaveLogFiles()) saveLogFile(m_jobList->index(i, 1, QModelIndex()));
611 if(topLeft.column() <= 2 && bottomRight.column() >= 2) /*PROGRESS*/
613 for(int i = topLeft.row(); i <= bottomRight.row(); i++)
615 if(i == selected)
617 ui->progressBar->setValue(m_jobList->getJobProgress(m_jobList->index(i, 0, QModelIndex())));
618 if(!m_taskbar.isNull())
620 m_taskbar->setTaskbarProgress(ui->progressBar->value(), ui->progressBar->maximum());
622 break;
626 if(topLeft.column() <= 3 && bottomRight.column() >= 3) /*DETAILS*/
628 for(int i = topLeft.row(); i <= bottomRight.row(); i++)
630 if(i == selected)
632 ui->editDetails->setText(m_jobList->data(m_jobList->index(i, 3, QModelIndex()), Qt::DisplayRole).toString());
633 break;
640 * Handle new log file content
642 void MainWindow::jobLogExtended(const QModelIndex & parent, int start, int end)
644 QTimer::singleShot(0, ui->logView, SLOT(scrollToBottom()));
648 * About screen
650 void MainWindow::showAbout(void)
652 ENSURE_APP_IS_READY();
654 if(AboutDialog *aboutDialog = new AboutDialog(this))
656 aboutDialog->exec();
657 MUTILS_DELETE(aboutDialog);
662 * Open web-link
664 void MainWindow::showWebLink(void)
666 ENSURE_APP_IS_READY();
668 if(QObject *obj = QObject::sender())
670 if(QAction *action = dynamic_cast<QAction*>(obj))
672 if(action->data().type() == QVariant::Url)
674 QDesktopServices::openUrl(action->data().toUrl());
681 * Pereferences dialog
683 void MainWindow::showPreferences(void)
685 ENSURE_APP_IS_READY();
687 PreferencesDialog *preferences = new PreferencesDialog(this, m_preferences.data(), m_sysinfo.data());
688 preferences->exec();
690 MUTILS_DELETE(preferences);
694 * Launch next job, after running job has finished
696 void MainWindow::launchNextJob(void)
698 qDebug("Launching next job...");
700 if(countRunningJobs() >= m_preferences->getMaxRunningJobCount())
702 qDebug("Still have too many jobs running, won't launch next one yet!");
703 return;
706 const int rows = m_jobList->rowCount(QModelIndex());
708 for(int i = 0; i < rows; i++)
710 const QModelIndex currentIndex = m_jobList->index(i, 0, QModelIndex());
711 if(m_jobList->getJobStatus(currentIndex) == JobStatus_Enqueued)
713 if(m_jobList->startJob(currentIndex))
715 ui->jobsView->selectRow(currentIndex.row());
716 return;
721 qWarning("No enqueued jobs left to be started!");
723 if(m_preferences->getShutdownComputer())
725 QTimer::singleShot(0, this, SLOT(shutdownComputer()));
730 * Save log to text file
732 void MainWindow::saveLogFile(const QModelIndex &index)
734 if(index.isValid())
736 if(LogFileModel *log = m_jobList->getLogFile(index))
738 const QString outputDir = QString("%1/logs").arg(x264_data_path());
739 const QString timeStamp = QDateTime::currentDateTime().toString("yyyy-MM-dd.HH-mm-ss");
740 QDir(outputDir).mkpath(".");
741 const QString logFilePath = MUtils::make_unique_file(outputDir, QString("LOG.%1").arg(timeStamp), QLatin1String("txt"));
742 if(logFilePath.isEmpty())
744 qWarning("Failed to generate log file name. Giving up!");
745 return;
747 if(!log->saveToLocalFile(logFilePath))
749 qWarning("Failed to open log file for writing:\n%s", logFilePath.toUtf8().constData());
756 * Shut down the computer (with countdown)
758 void MainWindow::shutdownComputer(void)
760 ENSURE_APP_IS_READY();
762 if(countPendingJobs() > 0)
764 qDebug("Still have pending jobs, won't shutdown yet!");
765 return;
768 const int iTimeout = 30;
769 const Qt::WindowFlags flags = Qt::WindowStaysOnTopHint | Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::MSWindowsFixedSizeDialogHint | Qt::WindowSystemMenuHint;
770 const QString text = QString("%1%2%1").arg(QString().fill(' ', 18), tr("Warning: Computer will shutdown in %1 seconds..."));
772 qWarning("Initiating shutdown sequence!");
774 QProgressDialog progressDialog(text.arg(iTimeout), tr("Cancel Shutdown"), 0, iTimeout + 1, this, flags);
775 QPushButton *cancelButton = new QPushButton(tr("Cancel Shutdown"), &progressDialog);
776 cancelButton->setIcon(QIcon(":/buttons/power_on.png"));
777 progressDialog.setModal(true);
778 progressDialog.setAutoClose(false);
779 progressDialog.setAutoReset(false);
780 progressDialog.setWindowIcon(QIcon(":/buttons/power_off.png"));
781 progressDialog.setWindowTitle(windowTitle());
782 progressDialog.setCancelButton(cancelButton);
783 progressDialog.show();
785 QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
786 QApplication::setOverrideCursor(Qt::WaitCursor);
787 MUtils::Sound::play_sound("shutdown", false);
788 QApplication::restoreOverrideCursor();
790 QTimer timer;
791 timer.setInterval(1000);
792 timer.start();
794 QEventLoop eventLoop(this);
795 connect(&timer, SIGNAL(timeout()), &eventLoop, SLOT(quit()));
796 connect(&progressDialog, SIGNAL(canceled()), &eventLoop, SLOT(quit()));
798 for(int i = 1; i <= iTimeout; i++)
800 eventLoop.exec();
801 if(progressDialog.wasCanceled())
803 progressDialog.close();
804 return;
806 progressDialog.setValue(i+1);
807 progressDialog.setLabelText(text.arg(iTimeout-i));
808 if(iTimeout-i == 3) progressDialog.setCancelButton(NULL);
809 QApplication::processEvents();
810 MUtils::Sound::play_sound(((i < iTimeout) ? "beep" : "beep2"), false);
813 qWarning("Shutting down !!!");
815 if(MUtils::OS::shutdown_computer("Simple x264 Launcher: All jobs completed, shutting down!", 10, true, false))
817 qApp->closeAllWindows();
823 * Main initialization function (called only once!)
825 void MainWindow::init(void)
827 if(m_initialized)
829 qWarning("Already initialized -> skipping!");
830 return;
833 updateLabelPos();
834 const MUtils::OS::ArgumentMap &arguments = MUtils::OS::arguments();
835 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
837 //---------------------------------------
838 // Check required binaries
839 //---------------------------------------
841 qDebug("[Validating binaries]");
842 if(!BinariesCheckThread::check(m_sysinfo.data()))
844 QMessageBox::critical(this, tr("Invalid File!"), tr("<nobr>At least one tool is missing or is not a valid Win32/Win64 binary.<br>Please re-install the program in order to fix the problem!</nobr>").replace("-", "&minus;"));
845 qFatal("At least one tool is missing or is not a valid Win32/Win64 binary!");
847 qDebug(" ");
849 //---------------------------------------
850 // Check for portable mode
851 //---------------------------------------
853 if(x264_is_portable())
855 bool ok = false;
856 static const char *data = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
857 QFile writeTest(QString("%1/%2").arg(x264_data_path(), QUuid::createUuid().toString()));
858 if(writeTest.open(QIODevice::WriteOnly))
860 ok = (writeTest.write(data) == strlen(data));
861 writeTest.remove();
863 if(!ok)
865 int val = QMessageBox::warning(this, tr("Write Test Failed"), tr("<nobr>The application was launched in portable mode, but the program path is <b>not</b> writable!</nobr>"), tr("Quit"), tr("Ignore"));
866 if(val != 1) INIT_ERROR_EXIT();
870 //Pre-release popup
871 if(x264_is_prerelease())
873 qsrand(time(NULL)); int rnd = qrand() % 3;
874 int val = QMessageBox::information(this, tr("Pre-Release Version"), tr("Note: This is a pre-release version. Please do NOT use for production!<br>Click the button #%1 in order to continue...<br><br>(There will be no such message box in the final version of this application)").arg(QString::number(rnd + 1)), tr("(1)"), tr("(2)"), tr("(3)"), qrand() % 3);
875 if(rnd != val) INIT_ERROR_EXIT();
878 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
880 //---------------------------------------
881 // Check CPU capabilities
882 //---------------------------------------
884 //Make sure this CPU can run x264 (requires MMX + MMXEXT/iSSE to run x264 with ASM enabled, additionally requires SSE1 for most x264 builds)
885 if(!m_sysinfo->getCPUFeatures(SysinfoModel::CPUFeatures_MMX))
887 QMessageBox::critical(this, tr("Unsupported CPU"), tr("<nobr>Sorry, but this machine is <b>not</b> physically capable of running x264 (with assembly).<br>Please get a CPU that supports at least the MMX and MMXEXT instruction sets!</nobr>"), tr("Quit"));
888 qFatal("System does not support MMX and MMXEXT, x264 will not work !!!");
889 INIT_ERROR_EXIT();
891 else if(!m_sysinfo->getCPUFeatures(SysinfoModel::CPUFeatures_SSE))
893 qWarning("WARNING: System does not support SSE (v1), x264/x265 probably will *not* work !!!\n");
894 int val = QMessageBox::warning(this, tr("Unsupported CPU"), tr("<nobr>It appears that this machine does <b>not</b> support the SSE1 instruction set.<br>Thus most builds of x264/x265 will <b>not</b> run on this computer at all.<br><br>Please get a CPU that supports the MMX and SSE1 instruction sets!</nobr>"), tr("Quit"), tr("Ignore"));
895 if(val != 1) INIT_ERROR_EXIT();
898 //Skip version check (not recommended!)
899 if(arguments.contains(CLI_PARAM_SKIP_VERSION_CHECK))
901 qWarning("Version checks are disabled now, you have been warned!\n");
902 m_preferences->setSkipVersionTest(true);
905 //Don't abort encoding process on timeout (not recommended!)
906 if(arguments.contains(CLI_PARAM_NO_DEADLOCK))
908 qWarning("Deadlock detection disabled, you have been warned!\n");
909 m_preferences->setAbortOnTimeout(false);
912 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
914 //---------------------------------------
915 // Check Avisynth support
916 //---------------------------------------
918 if(!arguments.contains(CLI_PARAM_SKIP_AVS_CHECK))
920 qDebug("[Check for Avisynth support]");
921 if(!AvisynthCheckThread::detect(m_sysinfo.data()))
923 QString text = tr("A critical error was encountered while checking your Avisynth version.").append("<br>");
924 text += tr("This is most likely caused by an erroneous Avisynth Plugin, please try to clean your Plugins folder!").append("<br>");
925 text += tr("We suggest to move all .dll and .avsi files out of your Avisynth Plugins folder and try again.");
926 int val = QMessageBox::critical(this, tr("Avisynth Error"), QString("<nobr>%1</nobr>").arg(text).replace("-", "&minus;"), tr("Quit"), tr("Ignore"));
927 if(val != 1) INIT_ERROR_EXIT();
929 else if((!m_sysinfo->hasAvisynth()) && (!m_preferences->getDisableWarnings()))
931 QString text = tr("It appears that Avisynth is <b>not</b> currently installed on your computer.<br>Therefore Avisynth (.avs) input will <b>not</b> be working at all!").append("<br><br>");
932 text += tr("Please download and install Avisynth:").append("<br>").append(LINK(avs_dl_url));
933 int val = QMessageBox::warning(this, tr("Avisynth Missing"), QString("<nobr>%1</nobr>").arg(text).replace("-", "&minus;"), tr("Close"), tr("Disable this Warning"));
934 if(val == 1)
936 m_preferences->setDisableWarnings(true);
937 PreferencesModel::savePreferences(m_preferences.data());
940 qDebug(" ");
943 //---------------------------------------
944 // Check VapurSynth support
945 //---------------------------------------
947 if(!arguments.contains(CLI_PARAM_SKIP_VPS_CHECK))
949 qDebug("[Check for VapourSynth support]");
950 if(!VapourSynthCheckThread::detect(m_sysinfo.data()))
952 QString text = tr("A critical error was encountered while checking your VapourSynth installation.").append("<br>");
953 text += tr("This is most likely caused by an erroneous VapourSynth Plugin, please try to clean your Filters folder!").append("<br>");
954 text += tr("We suggest to move all .dll files out of your VapourSynth Filters folder and try again.");
955 const int val = QMessageBox::critical(this, tr("VapourSynth Error"), QString("<nobr>%1</nobr>").arg(text).replace("-", "&minus;"), tr("Quit"), tr("Ignore"));
956 if(val != 1) INIT_ERROR_EXIT();
958 else if((!m_sysinfo->hasVapourSynth()) && (!m_preferences->getDisableWarnings()))
960 QString text = tr("It appears that VapourSynth is <b>not</b> currently installed on your computer.<br>Therefore VapourSynth (.vpy) input will <b>not</b> be working at all!").append("<br><br>");
961 text += tr("Please download and install VapourSynth (<b>r%1</b> or later) for Windows:").arg(QString::number(vsynth_rev)).append("<br>").append(LINK(vsynth_url)).append("<br><br>");
962 text += tr("Note that Python v3.4 is a prerequisite for installing VapourSynth:").append("<br>").append(LINK(python_url)).append("<br>");
963 const int val = QMessageBox::warning(this, tr("VapourSynth Missing"), QString("<nobr>%1</nobr>").arg(text).replace("-", "&minus;"), tr("Close"), tr("Disable this Warning"));
964 if(val == 1)
966 m_preferences->setDisableWarnings(true);
967 PreferencesModel::savePreferences(m_preferences.data());
970 qDebug(" ");
973 //---------------------------------------
974 // Create the IPC listener thread
975 //---------------------------------------
977 if(m_ipcChannel)
979 m_ipcThread.reset(new IPCThread_Recv(m_ipcChannel));
980 connect(m_ipcThread.data(), SIGNAL(receivedCommand(int,QStringList,quint32)), this, SLOT(handleCommand(int,QStringList,quint32)), Qt::QueuedConnection);
981 m_ipcThread->start();
984 //---------------------------------------
985 // Finish initialization
986 //---------------------------------------
988 //Set Window title
989 setWindowTitle(QString("%1 (%2)").arg(windowTitle(), m_sysinfo->getCPUFeatures(SysinfoModel::CPUFeatures_X64) ? "64-Bit" : "32-Bit"));
991 //Enable drag&drop support for this window, required for Qt v4.8.4+
992 setAcceptDrops(true);
994 //Update flag
995 m_initialized = true;
997 //Hide the spinner animation
998 if(!m_label[1].isNull())
1000 if(!m_animation.isNull())
1002 m_animation->stop();
1004 m_label[1]->setVisible(false);
1007 //---------------------------------------
1008 // Check for Expiration
1009 //---------------------------------------
1011 if(MUtils::Version::app_build_date().addMonths(6) < MUtils::OS::current_date())
1013 if(QWidget *cornerWidget = ui->menubar->cornerWidget()) cornerWidget->show();
1014 QString text;
1015 text += QString("<nobr><tt>%1</tt></nobr><br><br>").arg(tr("Your version of Simple x264 Launcher is more than 6 months old!").replace('-', "&minus;"));
1016 text += QString("<nobr><tt>%1<br><a href=\"%2\">%3</a><br><br>").arg(tr("You can download the most recent version from the official web-site now:").replace('-', "&minus;"), QString::fromLatin1(update_url), QString::fromLatin1(update_url).replace("-", "&minus;"));
1017 text += QString("<nobr><tt>%1</tt></nobr><br>").arg(tr("Alternatively, click 'Check for Updates' to run the auto-update utility.").replace('-', "&minus;"));
1018 QMessageBox msgBox(this);
1019 msgBox.setIconPixmap(QIcon(":/images/update.png").pixmap(56,56));
1020 msgBox.setWindowTitle(tr("Update Notification"));
1021 msgBox.setWindowFlags(Qt::Window | Qt::WindowTitleHint | Qt::CustomizeWindowHint);
1022 msgBox.setText(text);
1023 QPushButton *btn1 = msgBox.addButton(tr("Check for Updates"), QMessageBox::AcceptRole);
1024 QPushButton *btn2 = msgBox.addButton(tr("Discard"), QMessageBox::NoRole);
1025 QPushButton *btn3 = msgBox.addButton(btn2->text(), QMessageBox::RejectRole);
1026 btn2->setEnabled(false);
1027 btn3->setVisible(false);
1028 QTimer::singleShot(7500, btn2, SLOT(hide()));
1029 QTimer::singleShot(7500, btn3, SLOT(show()));
1030 if(msgBox.exec() == 0)
1032 QTimer::singleShot(0, this, SLOT(checkUpdates()));
1033 return;
1036 else if(!parseCommandLineArgs())
1038 //Update reminder
1039 if(arguments.contains(CLI_PARAM_FIRST_RUN))
1041 qWarning("First run -> resetting update check now!");
1042 m_recentlyUsed->setLastUpdateCheck(0);
1043 RecentlyUsed::saveRecentlyUsed(m_recentlyUsed.data());
1045 else if(m_recentlyUsed->lastUpdateCheck() + 14 < MUtils::OS::current_date().toJulianDay())
1047 if(QWidget *cornerWidget = ui->menubar->cornerWidget()) cornerWidget->show();
1048 if(!m_preferences->getNoUpdateReminder())
1050 if(QMessageBox::warning(this, tr("Update Notification"), QString("<nobr>%1</nobr>").arg(tr("Your last update check was more than 14 days ago. Check for updates now?")), tr("Check for Updates"), tr("Discard")) == 0)
1052 QTimer::singleShot(0, this, SLOT(checkUpdates()));
1053 return;
1059 //Load queued jobs
1060 if(m_jobList->loadQueuedJobs(m_sysinfo.data()) > 0)
1062 m_label[0]->setVisible(m_jobList->rowCount(QModelIndex()) == 0);
1063 m_jobList->clearQueuedJobs();
1068 * Update the label position
1070 void MainWindow::updateLabelPos(void)
1072 for(int i = 0; i < 2; i++)
1074 //const QWidget *const viewPort = ui->jobsView->viewport();
1075 const QWidget *const viewPort = dynamic_cast<QWidget*>(m_label[i]->parent());
1076 if(viewPort)
1078 m_label[i]->setGeometry(0, 0, viewPort->width(), viewPort->height());
1084 * Copy the complete log to the clipboard
1086 void MainWindow::copyLogToClipboard(bool checked)
1088 qDebug("Coyping logfile to clipboard...");
1090 if(LogFileModel *log = dynamic_cast<LogFileModel*>(ui->logView->model()))
1092 log->copyToClipboard();
1093 MUtils::Sound::beep(MUtils::Sound::BEEP_NFO);
1098 * Save log to local file
1100 void MainWindow::saveLogToLocalFile(bool checked)
1102 ENSURE_APP_IS_READY();
1104 const QModelIndex index = ui->jobsView->currentIndex();
1105 const QString initialName = index.isValid() ? QFileInfo(m_jobList->getJobOutputFile(index)).completeBaseName() : tr("Logfile");
1106 const QString fileName = QFileDialog::getSaveFileName(this, tr("Save Log File"), initialName, tr("Log File (*.log)"));
1107 if(!fileName.isEmpty())
1109 if(LogFileModel *log = dynamic_cast<LogFileModel*>(ui->logView->model()))
1111 if(!log->saveToLocalFile(fileName))
1113 QMessageBox::warning(this, this->windowTitle(), tr("Error: Log file could not be saved!"));
1120 * Toggle line-wrapping
1122 void MainWindow::toggleLineWrapping(bool checked)
1124 ui->logView->setWordWrap(checked);
1128 * Process the dropped files
1130 void MainWindow::handlePendingFiles(void)
1132 qDebug("MainWindow::handlePendingFiles");
1134 if(!m_pendingFiles->isEmpty())
1136 QStringList pendingFiles(*m_pendingFiles);
1137 m_pendingFiles->clear();
1138 createJobMultiple(pendingFiles);
1141 qDebug("Leave from MainWindow::handlePendingFiles!");
1145 * Handle incoming IPC command
1147 void MainWindow::handleCommand(const int &command, const QStringList &args, const quint32 &flags)
1149 if(!(m_initialized && (QApplication::activeModalWidget() == NULL)))
1151 qWarning("Cannot accapt commands at this time -> discarding!");
1152 return;
1155 if((!isVisible()) || m_sysTray->isVisible())
1157 sysTrayActived();
1160 MUtils::GUI::bring_to_front(this);
1162 #ifdef IPC_LOGGING
1163 qDebug("\n---------- IPC ----------");
1164 qDebug("CommandId: %d", command);
1165 for(QStringList::ConstIterator iter = args.constBegin(); iter != args.constEnd(); iter++)
1167 qDebug("Arguments: %s", iter->toUtf8().constData());
1169 qDebug("The Flags: 0x%08X", flags);
1170 qDebug("---------- IPC ----------\n");
1171 #endif //IPC_LOGGING
1173 switch(command)
1175 case IPC_OPCODE_PING:
1176 qDebug("Received a PING request from another instance!");
1177 MUtils::GUI::blink_window(this, 5, 125);
1178 break;
1179 case IPC_OPCODE_ADD_FILE:
1180 if(!args.isEmpty())
1182 if(QFileInfo(args[0]).exists() && QFileInfo(args[0]).isFile())
1184 *m_pendingFiles << QFileInfo(args[0]).canonicalFilePath();
1185 if(!m_fileTimer->isActive())
1187 m_fileTimer->setSingleShot(true);
1188 m_fileTimer->start(5000);
1191 else
1193 qWarning("File '%s' not found!", args[0].toUtf8().constData());
1196 break;
1197 case IPC_OPCODE_ADD_JOB:
1198 if(args.size() >= 3)
1200 if(QFileInfo(args[0]).exists() && QFileInfo(args[0]).isFile())
1202 OptionsModel options(m_sysinfo.data());
1203 bool runImmediately = (countRunningJobs() < (m_preferences->getAutoRunNextJob() ? m_preferences->getMaxRunningJobCount() : 1));
1204 if(!(args[2].isEmpty() || X264_STRCMP(args[2], "-")))
1206 if(!OptionsModel::loadTemplate(&options, args[2].trimmed()))
1208 qWarning("Template '%s' could not be found -> using defaults!", args[2].trimmed().toUtf8().constData());
1211 if((flags & IPC_FLAG_FORCE_START) && (!(flags & IPC_FLAG_FORCE_ENQUEUE))) runImmediately = true;
1212 if((flags & IPC_FLAG_FORCE_ENQUEUE) && (!(flags & IPC_FLAG_FORCE_START))) runImmediately = false;
1213 appendJob(args[0], args[1], &options, runImmediately);
1215 else
1217 qWarning("Source file '%s' not found!", args[0].toUtf8().constData());
1220 break;
1221 default:
1222 MUTILS_THROW("Unknown command received!");
1227 * Check for new updates
1229 void MainWindow::checkUpdates(void)
1231 ENSURE_APP_IS_READY();
1233 if(countRunningJobs() > 0)
1235 QMessageBox::warning(this, tr("Jobs Are Running"), tr("Sorry, can not update while there still are running jobs!"));
1236 return;
1239 UpdaterDialog *updater = new UpdaterDialog(this, m_sysinfo.data(), update_url);
1240 const int ret = updater->exec();
1242 if(updater->getSuccess())
1244 m_recentlyUsed->setLastUpdateCheck(MUtils::OS::current_date().toJulianDay());
1245 RecentlyUsed::saveRecentlyUsed(m_recentlyUsed.data());
1246 if(QWidget *cornerWidget = ui->menubar->cornerWidget()) cornerWidget->hide();
1249 if(ret == UpdaterDialog::READY_TO_INSTALL_UPDATE)
1251 qWarning("Exitting program to install update...");
1252 close();
1253 QApplication::quit();
1256 MUTILS_DELETE(updater);
1260 * Handle mouse event for version label
1262 void MainWindow::versionLabelMouseClicked(const int &tag)
1264 if(tag == 0)
1266 QTimer::singleShot(0, this, SLOT(showAbout()));
1271 * Handle key event for job list
1273 void MainWindow::jobListKeyPressed(const int &tag)
1275 switch(tag)
1277 case 1:
1278 ui->actionJob_MoveUp->trigger();
1279 break;
1280 case 2:
1281 ui->actionJob_MoveDown->trigger();
1282 break;
1287 * System tray was activated
1289 void MainWindow::sysTrayActived(void)
1291 m_sysTray->hide();
1292 showNormal();
1293 MUtils::GUI::bring_to_front(this);
1296 ///////////////////////////////////////////////////////////////////////////////
1297 // Event functions
1298 ///////////////////////////////////////////////////////////////////////////////
1301 * Window shown event
1303 void MainWindow::showEvent(QShowEvent *e)
1305 QMainWindow::showEvent(e);
1307 if(!m_initialized)
1309 QTimer::singleShot(0, this, SLOT(init()));
1314 * Window close event
1316 void MainWindow::closeEvent(QCloseEvent *e)
1318 if(!APP_IS_READY)
1320 e->ignore();
1321 qWarning("Cannot close window at this time!");
1322 return;
1325 //Make sure we have no running jobs left!
1326 if(countRunningJobs() > 0)
1328 e->ignore();
1329 if(!m_preferences->getNoSystrayWarning())
1331 if(QMessageBox::warning(this, tr("Jobs Are Running"), tr("<nobr>You still have running jobs, application will be minimized to notification area!<nobr>"), tr("OK"), tr("Don't Show Again")) == 1)
1333 m_preferences->setNoSystrayWarning(true);
1334 PreferencesModel::savePreferences(m_preferences.data());
1337 hide();
1338 m_sysTray->show();
1339 return;
1342 //Save pending jobs for next time, if desired by user
1343 if(countPendingJobs() > 0)
1345 if (!m_preferences->getSaveQueueNoConfirm())
1347 const int ret = QMessageBox::question(this, tr("Jobs Are Pending"), tr("<nobr>You still have some pending jobs in your queue. How do you want to proceed?</nobr>"), tr("Save Jobs"), tr("Always Save Jobs"), tr("Discard Jobs"));
1348 if ((ret >= 0) && (ret <= 1))
1350 if (ret > 0)
1352 m_preferences->setSaveQueueNoConfirm(true);
1353 PreferencesModel::savePreferences(m_preferences.data());
1355 m_jobList->saveQueuedJobs();
1358 else
1360 m_jobList->saveQueuedJobs();
1364 //Delete remaining jobs
1365 while(m_jobList->rowCount(QModelIndex()) > 0)
1367 if((m_jobList->rowCount(QModelIndex()) % 10) == 0)
1369 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
1371 if(!m_jobList->deleteJob(m_jobList->index(0, 0, QModelIndex())))
1373 e->ignore();
1374 QMessageBox::warning(this, tr("Failed To Exit"), tr("Warning: At least one job could not be deleted!"));
1378 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
1379 QMainWindow::closeEvent(e);
1383 * Window resize event
1385 void MainWindow::resizeEvent(QResizeEvent *e)
1387 QMainWindow::resizeEvent(e);
1388 updateLabelPos();
1392 * File dragged over window
1394 void MainWindow::dragEnterEvent(QDragEnterEvent *event)
1396 bool accept[2] = {false, false};
1398 foreach(const QString &fmt, event->mimeData()->formats())
1400 accept[0] = accept[0] || fmt.contains("text/uri-list", Qt::CaseInsensitive);
1401 accept[1] = accept[1] || fmt.contains("FileNameW", Qt::CaseInsensitive);
1404 if(accept[0] && accept[1])
1406 event->acceptProposedAction();
1411 * File dropped onto window
1413 void MainWindow::dropEvent(QDropEvent *event)
1415 if(!(m_initialized && (QApplication::activeModalWidget() == NULL)))
1417 qWarning("Cannot accept dropped files at this time -> discarding!");
1418 return;
1421 QStringList droppedFiles;
1422 QList<QUrl> urls = event->mimeData()->urls();
1424 while(!urls.isEmpty())
1426 QUrl currentUrl = urls.takeFirst();
1427 QFileInfo file(currentUrl.toLocalFile());
1428 if(file.exists() && file.isFile())
1430 qDebug("MainWindow::dropEvent: %s", file.canonicalFilePath().toUtf8().constData());
1431 droppedFiles << file.canonicalFilePath();
1435 if(droppedFiles.count() > 0)
1437 m_pendingFiles->append(droppedFiles);
1438 m_pendingFiles->sort();
1439 if(!m_fileTimer->isActive())
1441 m_fileTimer->setSingleShot(true);
1442 m_fileTimer->start(5000);
1447 ///////////////////////////////////////////////////////////////////////////////
1448 // Private functions
1449 ///////////////////////////////////////////////////////////////////////////////
1452 * Creates a new job
1454 bool MainWindow::createJob(QString &sourceFileName, QString &outputFileName, OptionsModel *options, bool &runImmediately, const bool restart, int fileNo, int fileTotal, bool *applyToAll)
1456 bool okay = false;
1457 AddJobDialog *addDialog = new AddJobDialog(this, options, m_recentlyUsed.data(), m_sysinfo.data(), m_preferences.data());
1459 addDialog->setRunImmediately(runImmediately);
1460 if(!sourceFileName.isEmpty()) addDialog->setSourceFile(sourceFileName);
1461 if(!outputFileName.isEmpty()) addDialog->setOutputFile(outputFileName);
1462 if(restart) addDialog->setWindowTitle(tr("Restart Job"));
1464 const bool multiFile = (fileNo >= 0) && (fileTotal > 1);
1465 if(multiFile)
1467 addDialog->setSourceEditable(false);
1468 addDialog->setWindowTitle(addDialog->windowTitle().append(tr(" (File %1 of %2)").arg(QString::number(fileNo+1), QString::number(fileTotal))));
1469 addDialog->setApplyToAllVisible(applyToAll);
1472 if(addDialog->exec() == QDialog::Accepted)
1474 sourceFileName = addDialog->sourceFile();
1475 outputFileName = addDialog->outputFile();
1476 runImmediately = addDialog->runImmediately();
1477 if(applyToAll)
1479 *applyToAll = addDialog->applyToAll();
1481 okay = true;
1484 MUTILS_DELETE(addDialog);
1485 return okay;
1489 * Creates a new job from *multiple* files
1491 bool MainWindow::createJobMultiple(const QStringList &filePathIn)
1493 QStringList::ConstIterator iter;
1494 bool applyToAll = false, runImmediately = false;
1495 int counter = 0;
1497 //Add files individually
1498 for(iter = filePathIn.constBegin(); (iter != filePathIn.constEnd()) && (!applyToAll); iter++)
1500 runImmediately = (countRunningJobs() < (m_preferences->getAutoRunNextJob() ? m_preferences->getMaxRunningJobCount() : 1));
1501 QString sourceFileName(*iter), outputFileName;
1502 if(createJob(sourceFileName, outputFileName, m_options.data(), runImmediately, false, counter++, filePathIn.count(), &applyToAll))
1504 if(appendJob(sourceFileName, outputFileName, m_options.data(), runImmediately))
1506 continue;
1509 return false;
1512 //Add remaining files
1513 while(applyToAll && (iter != filePathIn.constEnd()))
1515 const bool runImmediatelyTmp = runImmediately && (countRunningJobs() < (m_preferences->getAutoRunNextJob() ? m_preferences->getMaxRunningJobCount() : 1));
1516 const QString sourceFileName = *iter;
1517 const QString outputFileName = AddJobDialog::generateOutputFileName(sourceFileName, m_recentlyUsed->outputDirectory(), m_recentlyUsed->filterIndex(), m_preferences->getSaveToSourcePath());
1518 if(!appendJob(sourceFileName, outputFileName, m_options.data(), runImmediatelyTmp))
1520 return false;
1522 iter++;
1525 return true;
1529 * Append a new job
1531 bool MainWindow::appendJob(const QString &sourceFileName, const QString &outputFileName, OptionsModel *options, const bool runImmediately)
1533 bool okay = false;
1534 EncodeThread *thrd = new EncodeThread(sourceFileName, outputFileName, options, m_sysinfo.data(), m_preferences.data());
1535 QModelIndex newIndex = m_jobList->insertJob(thrd);
1537 if(newIndex.isValid())
1539 if(runImmediately)
1541 ui->jobsView->selectRow(newIndex.row());
1542 QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
1543 m_jobList->startJob(newIndex);
1546 okay = true;
1549 m_label[0]->setVisible(m_jobList->rowCount(QModelIndex()) == 0);
1550 return okay;
1554 * Jobs that are not completed (or failed, or aborted) yet
1556 unsigned int MainWindow::countPendingJobs(void)
1558 unsigned int count = 0;
1559 const int rows = m_jobList->rowCount(QModelIndex());
1561 for(int i = 0; i < rows; i++)
1563 JobStatus status = m_jobList->getJobStatus(m_jobList->index(i, 0, QModelIndex()));
1564 if(status != JobStatus_Completed && status != JobStatus_Aborted && status != JobStatus_Failed)
1566 count++;
1570 return count;
1574 * Jobs that are still active, i.e. not terminated or enqueued
1576 unsigned int MainWindow::countRunningJobs(void)
1578 unsigned int count = 0;
1579 const int rows = m_jobList->rowCount(QModelIndex());
1581 for(int i = 0; i < rows; i++)
1583 JobStatus status = m_jobList->getJobStatus(m_jobList->index(i, 0, QModelIndex()));
1584 if(status != JobStatus_Completed && status != JobStatus_Aborted && status != JobStatus_Failed && status != JobStatus_Enqueued)
1586 count++;
1590 return count;
1594 * Update all buttons with respect to current job status
1596 void MainWindow::updateButtons(JobStatus status)
1598 qDebug("MainWindow::updateButtons(void)");
1600 ui->buttonStartJob->setEnabled(status == JobStatus_Enqueued);
1601 ui->buttonAbortJob->setEnabled(status == JobStatus_Indexing || status == JobStatus_Running || status == JobStatus_Running_Pass1 || status == JobStatus_Running_Pass2 || status == JobStatus_Paused);
1602 ui->buttonPauseJob->setEnabled(status == JobStatus_Indexing || status == JobStatus_Running || status == JobStatus_Paused || status == JobStatus_Running_Pass1 || status == JobStatus_Running_Pass2);
1603 ui->buttonPauseJob->setChecked(status == JobStatus_Paused || status == JobStatus_Pausing);
1605 ui->actionJob_Delete->setEnabled(status == JobStatus_Completed || status == JobStatus_Aborted || status == JobStatus_Failed || status == JobStatus_Enqueued);
1606 ui->actionJob_Restart->setEnabled(status == JobStatus_Completed || status == JobStatus_Aborted || status == JobStatus_Failed || status == JobStatus_Enqueued);
1607 ui->actionJob_Browse->setEnabled(status == JobStatus_Completed);
1608 ui->actionJob_MoveUp->setEnabled(status != JobStatus_Undefined);
1609 ui->actionJob_MoveDown->setEnabled(status != JobStatus_Undefined);
1611 ui->actionJob_Start->setEnabled(ui->buttonStartJob->isEnabled());
1612 ui->actionJob_Abort->setEnabled(ui->buttonAbortJob->isEnabled());
1613 ui->actionJob_Pause->setEnabled(ui->buttonPauseJob->isEnabled());
1614 ui->actionJob_Pause->setChecked(ui->buttonPauseJob->isChecked());
1616 ui->editDetails->setEnabled(status != JobStatus_Paused);
1620 * Update the taskbar with current job status
1622 void MainWindow::updateTaskbar(JobStatus status, const QIcon &icon)
1624 qDebug("MainWindow::updateTaskbar(void)");
1626 if(m_taskbar.isNull())
1628 return; /*taskbar object not created yet*/
1631 switch(status)
1633 case JobStatus_Undefined:
1634 m_taskbar->setTaskbarState(MUtils::Taskbar7::TASKBAR_STATE_NONE);
1635 break;
1636 case JobStatus_Aborting:
1637 case JobStatus_Starting:
1638 case JobStatus_Pausing:
1639 case JobStatus_Resuming:
1640 m_taskbar->setTaskbarState(MUtils::Taskbar7::TASKBAR_STATE_INTERMEDIATE);
1641 break;
1642 case JobStatus_Aborted:
1643 case JobStatus_Failed:
1644 m_taskbar->setTaskbarState(MUtils::Taskbar7::TASKBAR_STATE_ERROR);
1645 break;
1646 case JobStatus_Paused:
1647 m_taskbar->setTaskbarState(MUtils::Taskbar7::TASKBAR_STATE_PAUSED);
1648 break;
1649 default:
1650 m_taskbar->setTaskbarState(MUtils::Taskbar7::TASKBAR_STATE_NORMAL);
1651 break;
1654 switch(status)
1656 case JobStatus_Aborting:
1657 case JobStatus_Starting:
1658 case JobStatus_Pausing:
1659 case JobStatus_Resuming:
1660 break;
1661 default:
1662 m_taskbar->setTaskbarProgress(ui->progressBar->value(), ui->progressBar->maximum());
1663 break;
1666 m_taskbar->setOverlayIcon(icon.isNull() ? NULL : &icon);
1670 * Parse command-line arguments
1672 bool MainWindow::parseCommandLineArgs(void)
1674 const MUtils::OS::ArgumentMap &args = MUtils::OS::arguments();
1676 quint32 flags = 0;
1677 bool commandSent = false;
1679 //Handle flags
1680 if(args.contains(CLI_PARAM_FORCE_START))
1682 flags = ((flags | IPC_FLAG_FORCE_START) & (~IPC_FLAG_FORCE_ENQUEUE));
1684 if(args.contains(CLI_PARAM_FORCE_ENQUEUE))
1686 flags = ((flags | IPC_FLAG_FORCE_ENQUEUE) & (~IPC_FLAG_FORCE_START));
1689 //Process all command-line arguments
1690 if(args.contains(CLI_PARAM_ADD_FILE))
1692 foreach(const QString &fileName, args.values(CLI_PARAM_ADD_FILE))
1694 handleCommand(IPC_OPCODE_ADD_FILE, QStringList() << fileName, flags);
1696 commandSent = true;
1698 if(args.contains(CLI_PARAM_ADD_JOB))
1700 foreach(const QString &options, args.values(CLI_PARAM_ADD_JOB))
1702 const QStringList optionValues = options.split('|', QString::SkipEmptyParts);
1703 if(optionValues.count() == 3)
1705 handleCommand(IPC_OPCODE_ADD_JOB, optionValues, flags);
1707 else
1709 qWarning("Invalid number of arguments for parameter \"--%s\" detected!", CLI_PARAM_ADD_JOB);
1712 commandSent = true;
1715 return commandSent;