Happy new year 2017!
[simple-x264-launcher.git] / src / win_main.h
blob4f60a44608349dc8620e569cf57ec10c250286b9
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 #pragma once
24 //Internal
25 #include "global.h"
27 //Qt
28 #include <QMainWindow>
30 //Forward declarations
31 class JobListModel;
32 class OptionsModel;
33 class SysinfoModel;
34 class QFile;
35 class QLibrary;
36 class PreferencesModel;
37 class RecentlyUsed;
38 class InputEventFilter;
39 class QModelIndex;
40 class QLabel;
41 class QSystemTrayIcon;
42 class IPCThread_Recv;
43 enum JobStatus;
45 namespace Ui
47 class MainWindow;
50 namespace MUtils
52 class IPCChannel;
53 class Taskbar7;
54 namespace CPUFetaures
56 typedef struct _cpu_info_t cpu_info_t;
60 class MainWindow: public QMainWindow
62 Q_OBJECT
64 public:
65 MainWindow(const MUtils::CPUFetaures::cpu_info_t &cpuFeatures, MUtils::IPCChannel *const ipcChannel);
66 ~MainWindow(void);
68 protected:
69 virtual void closeEvent(QCloseEvent *e);
70 virtual void showEvent(QShowEvent *e);
71 virtual void resizeEvent(QResizeEvent *e);
72 virtual void dragEnterEvent(QDragEnterEvent *event);
73 virtual void dropEvent(QDropEvent *event);
75 private:
76 Ui::MainWindow *const ui;
77 MUtils::IPCChannel *const m_ipcChannel;
79 bool m_initialized;
80 QScopedPointer<QLabel> m_label[2];
81 QScopedPointer<QMovie> m_animation;
82 QScopedPointer<QTimer> m_fileTimer;
84 QScopedPointer<IPCThread_Recv> m_ipcThread;
85 QScopedPointer<MUtils::Taskbar7> m_taskbar;
86 QScopedPointer<QSystemTrayIcon> m_sysTray;
88 QScopedPointer<InputEventFilter> m_inputFilter_jobList;
89 QScopedPointer<InputEventFilter> m_inputFilter_version;
90 QScopedPointer<InputEventFilter> m_inputFilter_checkUp;
92 QScopedPointer<JobListModel> m_jobList;
93 QScopedPointer<OptionsModel> m_options;
94 QScopedPointer<QStringList> m_pendingFiles;
96 QScopedPointer<SysinfoModel> m_sysinfo;
97 QScopedPointer<PreferencesModel> m_preferences;
98 QScopedPointer<RecentlyUsed> m_recentlyUsed;
100 bool createJob(QString &sourceFileName, QString &outputFileName, OptionsModel *options, bool &runImmediately, const bool restart = false, int fileNo = -1, int fileTotal = 0, bool *applyToAll = NULL);
101 bool createJobMultiple(const QStringList &filePathIn);
103 bool appendJob(const QString &sourceFileName, const QString &outputFileName, OptionsModel *options, const bool runImmediately);
104 void updateButtons(JobStatus status);
105 void updateTaskbar(JobStatus status, const QIcon &icon);
106 unsigned int countPendingJobs(void);
107 unsigned int countRunningJobs(void);
109 bool parseCommandLineArgs(void);
111 private slots:
112 void addButtonPressed();
113 void openActionTriggered();
114 void cleanupActionTriggered(void);
115 void abortButtonPressed(void);
116 void browseButtonPressed(void);
117 void deleteButtonPressed(void);
118 void copyLogToClipboard(bool checked);
119 void saveLogToLocalFile(bool checked);
120 void toggleLineWrapping(bool checked);
121 void checkUpdates(void);
122 void handlePendingFiles(void);
123 void init(void);
124 void handleCommand(const int &command, const QStringList &args, const quint32 &flags = 0);
125 void jobSelected(const QModelIndex &current, const QModelIndex &previous);
126 void jobChangedData(const QModelIndex &top, const QModelIndex &bottom);
127 void jobLogExtended(const QModelIndex & parent, int start, int end);
128 void jobListKeyPressed(const int &tag);
129 void launchNextJob();
130 void moveButtonPressed(void);
131 void pauseButtonPressed(bool checked);
132 void restartButtonPressed(void);
133 void saveLogFile(const QModelIndex &index);
134 void showAbout(void);
135 void showPreferences(void);
136 void showWebLink(void);
137 void shutdownComputer(void);
138 void startButtonPressed(void);
139 void sysTrayActived(void);
140 void updateLabelPos(void);
141 void versionLabelMouseClicked(const int &tag);