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

« back to all changes in this revision

Viewing changes to src/plugins/encoder/ffmpeg/ffmpegencoderconfig.h

  • 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
#ifndef FFMPEGENCODERCONFIG_H
 
21
#define FFMPEGENCODERCONFIG_H
 
22
 
 
23
 
 
24
// own
 
25
#include "ui_ffmpeg.h"
 
26
 
 
27
// KDE
 
28
#include <kcmodule.h>
 
29
 
 
30
 
 
31
class KDialog;
 
32
class FfmpegEncoderConfig : public KCModule, public Ui::Ffmpeg
 
33
{
 
34
    Q_OBJECT
 
35
 
 
36
 
 
37
public:
 
38
    FfmpegEncoderConfig(QWidget *parent = 0, const QVariantList &args = QVariantList());
 
39
    ~FfmpegEncoderConfig();
 
40
 
 
41
public slots:
 
42
    void defaults();
 
43
    void load();
 
44
    void save();
 
45
 
 
46
 
 
47
private:
 
48
    QHash<QString, QString> m_format;
 
49
 
 
50
 
 
51
private slots:
 
52
    void addClicked();
 
53
    void editClicked();
 
54
    void removeClicked();
 
55
    void formatChanged(const QString &newFormat);
 
56
    void formatListChanged();
 
57
    void editFinished(const QString &oldName, const QString &newName, const QString &command);
 
58
    void addFinished(const QString &format, const QString &command);
 
59
 
 
60
 
 
61
};
 
62
 
 
63
 
 
64
#endif // SCREENSHOTRECORDERCONFIG_H