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-01-28 16:40:14 +01:00
|
|
|
|
2012-01-28 18:55:40 +01:00
|
|
|
class JobListModel;
|
|
|
|
|
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-28 18:55:40 +01:00
|
|
|
private:
|
|
|
|
JobListModel *m_jobList;
|
2012-01-29 01:19:50 +01:00
|
|
|
const bool m_x64supported;
|
|
|
|
|
2012-01-28 23:24:41 +01:00
|
|
|
void updateButtons(EncodeThread::JobStatus status);
|
2012-01-29 15:57:23 +01:00
|
|
|
bool havePendingJobs(void);
|
2012-01-28 23:24:41 +01:00
|
|
|
|
2012-01-28 18:55:40 +01:00
|
|
|
private slots:
|
|
|
|
void addButtonPressed(void);
|
2012-01-28 23:24:41 +01:00
|
|
|
void startButtonPressed(void);
|
|
|
|
void abortButtonPressed(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);
|
|
|
|
void showAbout(void);
|
2012-01-29 15:57:23 +01:00
|
|
|
void showWebLink(void);
|
2012-01-29 00:57:47 +01:00
|
|
|
void launchNextJob(void);
|
2012-01-28 16:40:14 +01:00
|
|
|
};
|