2012-01-28 16:40:14 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Simple x264 Launcher
|
2013-05-11 21:52:07 +02:00
|
|
|
// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
|
2012-01-28 16:40:14 +01:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "uic_win_main.h"
|
2013-07-03 21:52:19 +02:00
|
|
|
|
|
|
|
#include "global.h"
|
|
|
|
#include "model_status.h"
|
2012-01-28 16:40:14 +01:00
|
|
|
|
2012-01-28 18:55:40 +01:00
|
|
|
class JobListModel;
|
2012-01-29 19:14:46 +01:00
|
|
|
class OptionsModel;
|
2012-01-29 21:31:09 +01:00
|
|
|
class QFile;
|
2012-02-13 18:52:55 +01:00
|
|
|
class QLibrary;
|
2013-07-03 21:34:21 +02:00
|
|
|
class PreferencesModel;
|
|
|
|
class RecentlyUsed;
|
2013-07-03 21:52:19 +02:00
|
|
|
class IPCThread;
|
2012-01-28 18:55:40 +01:00
|
|
|
|
2012-01-28 16:40:14 +01:00
|
|
|
class MainWindow: public QMainWindow, private Ui::MainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2012-02-07 21:48:25 +01:00
|
|
|
MainWindow(const x264_cpu_t *const cpuFeatures);
|
2012-01-28 16:40:14 +01:00
|
|
|
~MainWindow(void);
|
2012-01-28 18:55:40 +01:00
|
|
|
|
2012-01-28 23:24:41 +01:00
|
|
|
protected:
|
|
|
|
virtual void closeEvent(QCloseEvent *e);
|
2012-01-29 21:31:09 +01:00
|
|
|
virtual void showEvent(QShowEvent *e);
|
2012-01-31 00:13:32 +01:00
|
|
|
virtual void resizeEvent(QResizeEvent *e);
|
2012-01-31 20:28:40 +01:00
|
|
|
virtual bool eventFilter(QObject *o, QEvent *e);
|
2012-02-02 13:52:52 +01:00
|
|
|
virtual void dragEnterEvent(QDragEnterEvent *event);
|
|
|
|
virtual void dropEvent(QDropEvent *event);
|
2012-02-08 00:29:47 +01:00
|
|
|
virtual bool winEvent(MSG *message, long *result);
|
2012-01-28 23:24:41 +01:00
|
|
|
|
2012-01-28 18:55:40 +01:00
|
|
|
private:
|
2012-01-29 21:31:09 +01:00
|
|
|
bool m_firstShow;
|
2013-07-07 16:11:47 +02:00
|
|
|
bool m_skipVersionTest;
|
2013-08-04 18:44:53 +02:00
|
|
|
bool m_abortOnTimeout;
|
2013-11-08 17:39:16 +01:00
|
|
|
bool m_initialized;
|
2013-08-04 18:44:53 +02:00
|
|
|
|
2012-01-31 00:13:32 +01:00
|
|
|
QLabel *m_label;
|
2012-02-21 00:37:31 +01:00
|
|
|
IPCThread *m_ipcThread;
|
2012-01-29 21:31:09 +01:00
|
|
|
|
2012-01-28 18:55:40 +01:00
|
|
|
JobListModel *m_jobList;
|
2012-01-29 19:14:46 +01:00
|
|
|
OptionsModel *m_options;
|
2012-02-10 18:42:16 +01:00
|
|
|
QStringList *m_droppedFiles;
|
2012-01-29 21:31:09 +01:00
|
|
|
QList<QFile*> m_toolsList;
|
2012-02-03 00:53:14 +01:00
|
|
|
|
2013-07-03 21:34:21 +02:00
|
|
|
PreferencesModel *m_preferences;
|
|
|
|
RecentlyUsed *m_recentlyUsed;
|
2013-08-04 18:44:53 +02:00
|
|
|
|
2013-08-02 18:09:12 +02:00
|
|
|
QString m_vapoursynthPath;
|
2012-01-29 21:31:09 +01:00
|
|
|
|
2012-02-07 21:48:25 +01:00
|
|
|
const x264_cpu_t *const m_cpuFeatures;
|
2012-01-29 21:31:09 +01:00
|
|
|
const QString m_appDir;
|
2012-01-29 01:19:50 +01:00
|
|
|
|
2013-05-08 00:04:40 +02:00
|
|
|
bool createJob(QString &sourceFileName, QString &outputFileName, OptionsModel *options, bool &runImmediately, const bool restart = false, int fileNo = -1, int fileTotal = 0, bool *applyToAll = NULL);
|
|
|
|
bool createJobMultiple(const QStringList &filePathIn);
|
|
|
|
|
|
|
|
bool appendJob(const QString &sourceFileName, const QString &outputFileName, OptionsModel *options, const bool runImmediately);
|
2013-07-03 21:52:19 +02:00
|
|
|
void updateButtons(JobStatus status);
|
|
|
|
void updateTaskbar(JobStatus status, const QIcon &icon);
|
2012-02-03 15:28:00 +01:00
|
|
|
unsigned int countPendingJobs(void);
|
|
|
|
unsigned int countRunningJobs(void);
|
2012-01-28 23:24:41 +01:00
|
|
|
|
2012-01-28 18:55:40 +01:00
|
|
|
private slots:
|
2013-05-08 00:04:40 +02:00
|
|
|
void addButtonPressed();
|
2013-05-11 01:50:05 +02:00
|
|
|
void openActionTriggered();
|
2012-01-28 23:24:41 +01:00
|
|
|
void abortButtonPressed(void);
|
2012-02-02 22:53:40 +01:00
|
|
|
void browseButtonPressed(void);
|
|
|
|
void deleteButtonPressed(void);
|
2012-01-31 00:13:32 +01:00
|
|
|
void copyLogToClipboard(bool checked);
|
2012-02-10 18:42:16 +01:00
|
|
|
void handleDroppedFiles(void);
|
2012-01-29 21:31:09 +01:00
|
|
|
void init(void);
|
2013-11-03 18:34:20 +01:00
|
|
|
void instanceCreated(unsigned int pid);
|
2012-01-28 19:59:04 +01:00
|
|
|
void jobSelected(const QModelIndex & current, const QModelIndex & previous);
|
2012-01-28 23:24:41 +01:00
|
|
|
void jobChangedData(const QModelIndex &top, const QModelIndex &bottom);
|
|
|
|
void jobLogExtended(const QModelIndex & parent, int start, int end);
|
2012-02-04 01:12:21 +01:00
|
|
|
void launchNextJob();
|
2012-02-02 02:13:02 +01:00
|
|
|
void pauseButtonPressed(bool checked);
|
2012-02-14 23:36:44 +01:00
|
|
|
void restartButtonPressed(void);
|
2012-04-30 19:26:41 +02:00
|
|
|
void saveLogFile(const QModelIndex &index);
|
2012-01-28 23:24:41 +01:00
|
|
|
void showAbout(void);
|
2012-02-03 00:53:14 +01:00
|
|
|
void showPreferences(void);
|
2012-01-29 15:57:23 +01:00
|
|
|
void showWebLink(void);
|
2012-02-04 01:12:21 +01:00
|
|
|
void shutdownComputer(void);
|
2012-01-31 00:13:32 +01:00
|
|
|
void startButtonPressed(void);
|
2012-02-07 21:48:25 +01:00
|
|
|
void updateLabelPos(void);
|
2012-01-28 16:40:14 +01:00
|
|
|
};
|