~ubuntu-branches/ubuntu/natty/recorditnow/natty

« back to all changes in this revision

Viewing changes to src/plugins/encoder/ffmpeg/formatdialog.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2009-11-26 16:50:53 UTC
  • Revision ID: james.westby@ubuntu.com-20091126165053-yifjycveb8j7yt8r
Tags: upstream-0.4
Import upstream version 0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2009 by Kai Dombrowe <just89@gmx.de>                    *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program; if not, write to the                         *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA .        *
 
18
 ***************************************************************************/
 
19
 
 
20
 
 
21
// own
 
22
#include "formatdialog.h"
 
23
 
 
24
 
 
25
 
 
26
FormatDialog::FormatDialog(const QString &format, const QString &command, QWidget *parent)
 
27
    : KDialog(parent), m_oldFormat(format)
 
28
{
 
29
 
 
30
    setAttribute(Qt::WA_DeleteOnClose, true);
 
31
 
 
32
    QWidget *widget = new QWidget(this);
 
33
    setupUi(widget);
 
34
    setMainWidget(widget);
 
35
 
 
36
    connect(this, SIGNAL(finished(int)), this, SLOT(dialogFinished(int)));
 
37
 
 
38
    if (!m_oldFormat.isEmpty()) {
 
39
        setWindowTitle(i18nc("%1 = format", "Edit %1", m_oldFormat));
 
40
        formatEdit->setText(format);
 
41
        commandEdit->setText(command);
 
42
    } else {
 
43
        setWindowTitle(i18n("Format"));
 
44
    }
 
45
 
 
46
}
 
47
 
 
48
 
 
49
FormatDialog::~FormatDialog()
 
50
{
 
51
 
 
52
 
 
53
 
 
54
}
 
55
 
 
56
 
 
57
void FormatDialog::dialogFinished(const int &ret)
 
58
{
 
59
 
 
60
    if (ret == KDialog::Accepted) {
 
61
        if (!m_oldFormat.isEmpty()) {
 
62
            emit editFinished(m_oldFormat, formatEdit->text(), commandEdit->text());
 
63
        } else {
 
64
            emit addFinished(formatEdit->text(), commandEdit->text());
 
65
        }
 
66
    }
 
67
 
 
68
}
 
69