2012-01-28 16:40:14 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Simple x264 Launcher
|
2015-01-31 19:56:04 +01:00
|
|
|
// Copyright (C) 2004-2015 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
|
|
|
|
|
2015-02-01 16:33:31 +01:00
|
|
|
//Internal
|
2013-07-03 21:52:19 +02:00
|
|
|
#include "global.h"
|
2015-02-01 16:33:31 +01:00
|
|
|
|
|
|
|
//Qt
|
2013-11-14 02:29:18 +01:00
|
|
|
#include <QMainWindow>
|
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;
|
2014-02-12 19:34:14 +01:00
|
|
|
class SysinfoModel;
|
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;
|
2014-04-20 17:38:55 +02:00
|
|
|
class InputEventFilter;
|
2013-11-14 02:29:18 +01:00
|
|
|
class QModelIndex;
|
|
|
|
class QLabel;
|
2014-05-14 17:13:42 +02:00
|
|
|
class QSystemTrayIcon;
|
2015-02-01 21:05:17 +01:00
|
|
|
class IPCThread_Recv;
|
2013-11-14 02:29:18 +01:00
|
|
|
enum JobStatus;
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class MainWindow;
|
|
|
|
}
|
2012-01-28 18:55:40 +01:00
|
|
|
|
2015-02-01 16:33:31 +01:00
|
|
|
namespace MUtils
|
|
|
|
{
|
|
|
|
namespace CPUFetaures
|
|
|
|
{
|
2015-02-01 21:05:17 +01:00
|
|
|
struct _cpu_info_t;
|
2015-02-01 16:33:31 +01:00
|
|
|
typedef struct _cpu_info_t cpu_info_t;
|
|
|
|
}
|
2015-02-01 21:05:17 +01:00
|
|
|
|
|
|
|
class IPCChannel;
|
2015-02-08 21:14:21 +01:00
|
|
|
class Taskbar7;
|
2015-02-01 16:33:31 +01:00
|
|
|
}
|
|
|
|
|
2013-11-14 02:29:18 +01:00
|
|
|
class MainWindow: public QMainWindow
|
2012-01-28 16:40:14 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-02-01 21:05:17 +01:00
|
|
|
MainWindow(const MUtils::CPUFetaures::cpu_info_t &cpuFeatures, MUtils::IPCChannel *const ipcChannel);
|
2012-01-28 16:40:14 +01:00
|
|
|
~MainWindow(void);
|
2012-01-28 18:55:40 +01:00
|
|
|
|
2015-02-01 21:05:17 +01:00
|
|
|
typedef QList<QFile*> QFileList;
|
|
|
|
|
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-02-02 13:52:52 +01:00
|
|
|
virtual void dragEnterEvent(QDragEnterEvent *event);
|
|
|
|
virtual void dropEvent(QDropEvent *event);
|
2012-01-28 23:24:41 +01:00
|
|
|
|
2012-01-28 18:55:40 +01:00
|
|
|
private:
|
2013-11-14 02:29:18 +01:00
|
|
|
Ui::MainWindow *const ui;
|
2015-02-08 21:14:21 +01:00
|
|
|
MUtils::IPCChannel *const m_ipcChannel;
|
2013-11-14 02:29:18 +01:00
|
|
|
|
2014-05-18 21:59:26 +02:00
|
|
|
bool m_initialized;
|
2015-02-01 21:05:17 +01:00
|
|
|
QScopedPointer<QLabel> m_label;
|
|
|
|
QScopedPointer<QTimer> m_fileTimer;
|
2014-05-03 16:46:08 +02:00
|
|
|
|
2015-02-08 21:14:21 +01:00
|
|
|
QScopedPointer<IPCThread_Recv> m_ipcThread;
|
|
|
|
QScopedPointer<MUtils::Taskbar7> m_taskbar;
|
|
|
|
QScopedPointer<QSystemTrayIcon> m_sysTray;
|
2012-01-29 21:31:09 +01:00
|
|
|
|
2015-02-01 21:05:17 +01:00
|
|
|
QScopedPointer<InputEventFilter> m_inputFilter_jobList;
|
|
|
|
QScopedPointer<InputEventFilter> m_inputFilter_version;
|
|
|
|
QScopedPointer<InputEventFilter> m_inputFilter_checkUp;
|
2014-04-20 17:38:55 +02:00
|
|
|
|
2015-02-01 21:05:17 +01:00
|
|
|
QScopedPointer<JobListModel> m_jobList;
|
|
|
|
QScopedPointer<OptionsModel> m_options;
|
|
|
|
QScopedPointer<QStringList> m_pendingFiles;
|
|
|
|
QScopedPointer<QFileList> m_toolsList;
|
2012-02-03 00:53:14 +01:00
|
|
|
|
2015-02-01 21:05:17 +01:00
|
|
|
QScopedPointer<SysinfoModel> m_sysinfo;
|
|
|
|
QScopedPointer<PreferencesModel> m_preferences;
|
|
|
|
QScopedPointer<RecentlyUsed> m_recentlyUsed;
|
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
|
|
|
|
2014-01-28 02:09:43 +01:00
|
|
|
bool parseCommandLineArgs(void);
|
2014-01-20 22:02:53 +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);
|
2013-11-22 17:01:13 +01:00
|
|
|
void checkUpdates(void);
|
2014-01-28 02:09:43 +01:00
|
|
|
void handlePendingFiles(void);
|
2012-01-29 21:31:09 +01:00
|
|
|
void init(void);
|
2014-02-01 15:34:11 +01:00
|
|
|
void handleCommand(const int &command, const QStringList &args, const quint32 &flags = 0);
|
2013-11-14 02:29:18 +01:00
|
|
|
void jobSelected(const QModelIndex ¤t, 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);
|
2014-04-20 17:38:55 +02:00
|
|
|
void jobListKeyPressed(const int &tag);
|
2012-02-04 01:12:21 +01:00
|
|
|
void launchNextJob();
|
2014-04-20 17:38:55 +02:00
|
|
|
void moveButtonPressed(void);
|
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);
|
2014-05-14 17:13:42 +02:00
|
|
|
void sysTrayActived(void);
|
2012-02-07 21:48:25 +01:00
|
|
|
void updateLabelPos(void);
|
2014-04-20 17:38:55 +02:00
|
|
|
void versionLabelMouseClicked(const int &tag);
|
2012-01-28 16:40:14 +01:00
|
|
|
};
|