OSDN Git Service

Make it possible to save to the name of an existing template.
[x264-launcher/x264-launcher.git] / src / win_main.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2012 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.
14 //
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.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 #include "uic_win_main.h"
25 #include "thread_encode.h"
26 #include "win_preferences.h"
27
28 class JobListModel;
29 class OptionsModel;
30 class QFile;
31
32 class MainWindow: public QMainWindow, private Ui::MainWindow
33 {
34         Q_OBJECT
35
36 public:
37         MainWindow(bool x64supported);
38         ~MainWindow(void);
39
40 protected:
41         virtual void closeEvent(QCloseEvent *e);
42         virtual void showEvent(QShowEvent *e);
43         virtual void resizeEvent(QResizeEvent *e);
44         virtual bool eventFilter(QObject *o, QEvent *e);
45         virtual void dragEnterEvent(QDragEnterEvent *event);
46         virtual void dropEvent(QDropEvent *event);
47
48 private:
49         bool m_firstShow;
50         QLabel *m_label;
51
52         JobListModel *m_jobList;
53         OptionsModel *m_options;
54         QList<QFile*> m_toolsList;
55         
56         PreferencesDialog::Preferences m_preferences;
57
58         const bool m_x64supported;
59         const QString m_appDir;
60         
61         void updateButtons(EncodeThread::JobStatus status);
62         unsigned int countPendingJobs(void);
63         unsigned int countRunningJobs(void);
64
65 private slots:
66         void addButtonPressed(const QString &filePath = QString(), int fileNo = -1, int fileTotal = 0, bool *ok = NULL);
67         void abortButtonPressed(void);
68         void browseButtonPressed(void);
69         void deleteButtonPressed(void);
70         void copyLogToClipboard(bool checked);
71         void init(void);
72         void jobSelected(const QModelIndex & current, const QModelIndex & previous);
73         void jobChangedData(const  QModelIndex &top, const  QModelIndex &bottom);
74         void jobLogExtended(const QModelIndex & parent, int start, int end);
75         void launchNextJob();
76         void pauseButtonPressed(bool checked);
77         void showAbout(void);
78         void showPreferences(void);
79         void showWebLink(void);
80         void shutdownComputer(void);
81         void startButtonPressed(void);
82         void updateLabel(void);
83 };