Simple-x264-Launcher/src/win_main.h

154 lines
4.6 KiB
C
Raw Normal View History

2012-01-28 16:40:14 +01:00
///////////////////////////////////////////////////////////////////////////////
// Simple x264 Launcher
2023-06-18 13:32:08 +02:00
// Copyright (C) 2004-2023 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
//Internal
2013-07-03 21:52:19 +02:00
#include "global.h"
//Qt
#include <QMainWindow>
2012-01-28 16:40:14 +01:00
2016-12-24 16:50:15 +01:00
//Forward declarations
class JobListModel;
2012-01-29 19:14:46 +01:00
class OptionsModel;
class SysinfoModel;
class QFile;
class QLibrary;
class PreferencesModel;
class RecentlyUsed;
class InputEventFilter;
class QModelIndex;
class QLabel;
class QSystemTrayIcon;
class IPCThread_Recv;
enum JobStatus;
namespace Ui
{
class MainWindow;
}
namespace MUtils
{
2016-12-24 16:50:15 +01:00
class IPCChannel;
class Taskbar7;
namespace CPUFetaures
{
typedef struct _cpu_info_t cpu_info_t;
}
}
class MainWindow: public QMainWindow
2012-01-28 16:40:14 +01:00
{
Q_OBJECT
public:
MainWindow(const MUtils::CPUFetaures::cpu_info_t &cpuFeatures, MUtils::IPCChannel *const ipcChannel);
2012-01-28 16:40:14 +01:00
~MainWindow(void);
protected:
virtual void closeEvent(QCloseEvent *e);
virtual void showEvent(QShowEvent *e);
virtual void resizeEvent(QResizeEvent *e);
2012-02-02 13:52:52 +01:00
virtual void dragEnterEvent(QDragEnterEvent *event);
virtual void dropEvent(QDropEvent *event);
private:
typedef enum
{
POST_OP_DONOTHING = 0,
POST_OP_POWERDOWN = 1,
POST_OP_HIBERNATE = 2
}
postOp_t;
Ui::MainWindow *const ui;
MUtils::IPCChannel *const m_ipcChannel;
postOp_t m_postOperation;
bool m_initialized;
QScopedPointer<QLabel> m_label[2];
QScopedPointer<QMovie> m_animation;
QScopedPointer<QTimer> m_fileTimer;
QScopedPointer<IPCThread_Recv> m_ipcThread;
QScopedPointer<MUtils::Taskbar7> m_taskbar;
QScopedPointer<QSystemTrayIcon> m_sysTray;
QScopedPointer<InputEventFilter> m_inputFilter_jobList;
QScopedPointer<InputEventFilter> m_inputFilter_version;
QScopedPointer<InputEventFilter> m_inputFilter_checkUp;
QScopedPointer<JobListModel> m_jobList;
QScopedPointer<OptionsModel> m_options;
QScopedPointer<QStringList> m_pendingFiles;
2012-02-03 00:53:14 +01:00
QScopedPointer<SysinfoModel> m_sysinfo;
QScopedPointer<PreferencesModel> m_preferences;
QScopedPointer<RecentlyUsed> m_recentlyUsed;
2012-01-29 01:19:50 +01: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);
unsigned int countPendingJobs(void);
unsigned int countRunningJobs(void);
2014-01-28 02:09:43 +01:00
bool parseCommandLineArgs(void);
private slots:
void addButtonPressed();
void openActionTriggered();
void cleanupActionTriggered(void);
void postOpActionTriggered(void);
void abortButtonPressed(void);
void browseButtonPressed(void);
void deleteButtonPressed(void);
void copyLogToClipboard(bool checked);
void saveLogToLocalFile(bool checked);
void toggleLineWrapping(bool checked);
void checkUpdates(void);
2014-01-28 02:09:43 +01:00
void handlePendingFiles(void);
void init(void);
void handleCommand(const int &command, const QStringList &args, const quint32 &flags = 0);
void jobSelected(const QModelIndex &current, const QModelIndex &previous);
void jobChangedData(const QModelIndex &top, const QModelIndex &bottom);
void jobLogExtended(const QModelIndex & parent, int start, int end);
void jobListKeyPressed(const int &tag);
void launchNextJob();
void moveButtonPressed(void);
2012-02-02 02:13:02 +01:00
void pauseButtonPressed(bool checked);
void restartButtonPressed(void);
void saveLogFile(const QModelIndex &index);
void showAbout(void);
2012-02-03 00:53:14 +01:00
void showPreferences(void);
void showWebLink(void);
void shutdownComputer(void);
void startButtonPressed(void);
void sysTrayActived(void);
void updateLabelPos(void);
void versionLabelMouseClicked(const int &tag);
2012-01-28 16:40:14 +01:00
};