Simple-x264-Launcher/src/win_addJob.h

82 lines
2.8 KiB
C
Raw Normal View History

2012-01-29 04:06:07 +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_addJob.h"
2012-02-02 13:52:52 +01:00
#include <QDir>
2012-01-29 19:14:46 +01:00
class OptionsModel;
class AddJobDialog : public QDialog, private Ui::AddJobDialog
2012-01-29 04:06:07 +01:00
{
Q_OBJECT
public:
AddJobDialog(QWidget *parent, OptionsModel *options, bool x64supported);
2012-01-29 04:06:07 +01:00
~AddJobDialog(void);
QString sourceFile(void);
QString outputFile(void);
QString preset(void) { return cbxPreset->itemText(cbxPreset->currentIndex()); }
QString tuning(void) { return cbxTuning->itemText(cbxTuning->currentIndex()); }
QString profile(void) { return cbxProfile->itemText(cbxProfile->currentIndex()); }
QString params(void) { return editCustomX264Params->text().simplified(); }
bool runImmediately(void) { return checkBoxRun->isChecked(); }
void setRunImmediately(bool run) { checkBoxRun->setChecked(run); }
2012-02-02 13:52:52 +01:00
void setSourceFile(const QString &path) { editSource->setText(QDir::toNativeSeparators(path)); }
void setOutputFile(const QString &path) { editOutput->setText(QDir::toNativeSeparators(path)); }
2012-01-29 04:06:07 +01:00
protected:
2012-01-29 19:14:46 +01:00
OptionsModel *m_options;
OptionsModel *m_defaults;
const bool m_x64supported;
QString initialDir_src;
QString initialDir_out;
virtual void showEvent(QShowEvent *event);
virtual bool eventFilter(QObject *o, QEvent *e);
virtual void dragEnterEvent(QDragEnterEvent *event);
virtual void dropEvent(QDropEvent *event);
2012-01-29 04:06:07 +01:00
private slots:
void modeIndexChanged(int index);
void browseButtonClicked(void);
void configurationChanged(void);
void templateSelected(void);
void saveTemplateButtonClicked(void);
void deleteTemplateButtonClicked(void);
void editorActionTriggered(void);
virtual void accept(void);
2012-01-29 19:14:46 +01:00
private:
void loadTemplateList(void);
2012-01-29 19:14:46 +01:00
void restoreOptions(OptionsModel *options);
void saveOptions(OptionsModel *options);
void updateComboBox(QComboBox *cbox, const QString &text);
QString makeFileFilter(void);
void generateOutputFileName(const QString &filePath);
2012-01-29 04:06:07 +01:00
};