2012-01-28 16:40:14 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Simple x264 Launcher
|
|
|
|
// Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
|
|
|
|
//
|
|
|
|
// 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"
|
2012-01-28 23:24:41 +01:00
|
|
|
#include "thread_encode.h"
|
2012-02-03 00:53:14 +01:00
|
|
|
#include "win_preferences.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-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-01-29 01:19:50 +01:00
|
|
|
MainWindow(bool x64supported);
|
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-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;
|
2012-01-31 00:13:32 +01:00
|
|
|
QLabel *m_label;
|
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-01-29 21:31:09 +01:00
|
|
|
QList<QFile*> m_toolsList;
|
2012-02-03 00:53:14 +01:00
|
|
|
|
|
|
|
PreferencesDialog::Preferences m_preferences;
|
2012-01-29 21:31:09 +01:00
|
|
|
|
2012-01-29 01:19:50 +01:00
|
|
|
const bool m_x64supported;
|
2012-01-29 21:31:09 +01:00
|
|
|
const QString m_appDir;
|
2012-01-29 01:19:50 +01:00
|
|
|
|
2012-01-28 23:24:41 +01:00
|
|
|
void updateButtons(EncodeThread::JobStatus status);
|
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:
|
2012-02-02 18:55:55 +01:00
|
|
|
void addButtonPressed(const QString &filePath = QString(), bool *ok = NULL);
|
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-01-29 21:31:09 +01:00
|
|
|
void init(void);
|
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-01-31 00:13:32 +01:00
|
|
|
void launchNextJob(void);
|
2012-02-02 02:13:02 +01:00
|
|
|
void pauseButtonPressed(bool checked);
|
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-01-31 00:13:32 +01:00
|
|
|
void startButtonPressed(void);
|
|
|
|
void updateLabel(void);
|
2012-01-28 16:40:14 +01:00
|
|
|
};
|