diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:32:19 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:32:19 +0000 |
commit | 0d382a262c0638d0f572fc37193ccc5ed3dc895f (patch) | |
tree | 8578dcddfce4191f3f7a142a37769df7add48475 /libk9copy/k9videocodecs.h | |
download | k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.tar.gz k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.zip |
Added old abandoned version of k9copy
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1091546 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk9copy/k9videocodecs.h')
-rw-r--r-- | libk9copy/k9videocodecs.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/libk9copy/k9videocodecs.h b/libk9copy/k9videocodecs.h new file mode 100644 index 0000000..4ef7c77 --- /dev/null +++ b/libk9copy/k9videocodecs.h @@ -0,0 +1,54 @@ +// +// C++ Interface: k9videocodecs +// +// Description: +// +// +// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#ifndef K9VIDEOCODECS_H +#define K9VIDEOCODECS_H + +#include "k9common.h" +#include <qobject.h> +#include <qmap.h> +#include "k9config.h" + +/** + @author Jean-Michel PETIT <k9copy@free.fr> +*/ +class _k9VideoCodec; + +class k9VideoCodecs : public QObject +{ +Q_OBJECT +public: + k9VideoCodecs(QObject *parent = 0, const char *name = 0); + + ~k9VideoCodecs(); + void save(); + void setFourcc(int _num,QString _value); + void setOptions0(int _num,QString _value); + void setOptions1(int _num,QString _value); + void setOptions2(int _num,QString _value); + void setCodecName(int _num,QString _value); + void remove(int _num); + QString getFourcc(int _num); + QString getOptions0(int _num); + QString getOptions1(int _num); + QString getOptions2(int _num); + QString getCodecName(int _num); + + int count(); + void reset(); +private: + QMap <int,_k9VideoCodec> m_codecs; + k9Config *m_config; + + +}; + +#endif |