summaryrefslogtreecommitdiffstats
path: root/plugins/encoder/skeleton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/encoder/skeleton.cpp')
-rw-r--r--plugins/encoder/skeleton.cpp123
1 files changed, 123 insertions, 0 deletions
diff --git a/plugins/encoder/skeleton.cpp b/plugins/encoder/skeleton.cpp
new file mode 100644
index 0000000..7a46caf
--- /dev/null
+++ b/plugins/encoder/skeleton.cpp
@@ -0,0 +1,123 @@
+/*
+ *
+ * $Id: skeleton.cpp 619556 2007-01-03 17:38:12Z trueg $
+ * Copyright (C) 2003 Sebastian Trueg <trueg@k3b.org>
+ *
+ * This file is part of the K3b project.
+ * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
+ *
+ * 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.
+ * See the file "COPYING" for the exact licensing terms.
+ */
+
+#include <config.h>
+
+#include "k3b<name>encoder.h"
+
+#include <klocale.h>
+#include <kconfig.h>
+#include <kdebug.h>
+
+
+K_EXPORT_COMPONENT_FACTORY( libk3b<name>encoder, K3bPluginFactory<K3b<name>Encoder>( "libk3b<name>encoder" ) )
+
+
+K3b<name>Encoder::K3b<name>Encoder( QObject* parent, const char* name )
+ : K3bAudioEncoder( parent, name )
+{
+}
+
+
+K3b<name>Encoder::~K3b<name>Encoder()
+{
+}
+
+
+bool K3b<name>Encoder::initEncoderInternal( const QString& )
+{
+ // PUT YOUR CODE HERE
+ return false;
+}
+
+
+long K3b<name>Encoder::encodeInternal( const char* data, Q_ULONG len )
+{
+ // PUT YOUR CODE HERE
+ return false;
+}
+
+
+void K3b<name>Encoder::finishEncoderInternal()
+{
+ // PUT YOUR CODE HERE
+}
+
+
+void K3b<name>Encoder::setMetaDataInternal( K3bAudioEncoder::MetaDataField f, const QString& value )
+{
+ // PUT YOUR CODE HERE
+}
+
+
+QStringList K3b<name>Encoder::extensions() const
+{
+ // PUT YOUR CODE HERE
+ return QStringList( "" );
+}
+
+
+QString K3b<name>Encoder::fileTypeComment( const QString& ) const
+{
+ // PUT YOUR CODE HERE
+ return "";
+}
+
+
+long long K3b<name>Encoder::fileSize( const QString&, const K3b::Msf& msf ) const
+{
+ // PUT YOUR CODE HERE
+ return -1;
+}
+
+
+K3bPluginConfigWidget* K3b<name>Encoder::createConfigWidget( QWidget* parent,
+ const char* name ) const
+{
+ return new K3b<name>EncoderSettingsWidget( parent, name );
+}
+
+
+
+K3b<name>EncoderSettingsWidget::K3b<name>EncoderSettingsWidget( QWidget* parent, const char* name )
+ : K3bPluginConfigWidget( parent, name )
+{
+}
+
+
+K3b<name>EncoderSettingsWidget::~K3b<name>EncoderSettingsWidget()
+{
+}
+
+
+void K3b<name>EncoderSettingsWidget::loadConfig()
+{
+ KConfig* c = k3bcore->config();
+ c->setGroup( "K3b<name>EncoderPlugin" );
+
+ // PUT YOUR CODE HERE
+}
+
+
+void K3b<name>EncoderSettingsWidget::saveConfig()
+{
+ KConfig* c = k3bcore->config();
+ c->setGroup( "K3b<name>EncoderPlugin" );
+
+ // PUT YOUR CODE HERE
+}
+
+
+#include "k3b<name>encoder.moc"