summaryrefslogtreecommitdiffstats
path: root/plugins/project/audioprojectcddb
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-03 02:15:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-03 02:15:56 +0000
commit50b48aec6ddd451a6d1709c0942477b503457663 (patch)
treea9ece53ec06fd0a2819de7a2a6de997193566626 /plugins/project/audioprojectcddb
downloadk3b-50b48aec6ddd451a6d1709c0942477b503457663.tar.gz
k3b-50b48aec6ddd451a6d1709c0942477b503457663.zip
Added abandoned KDE3 version of K3B
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1084400 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins/project/audioprojectcddb')
-rw-r--r--plugins/project/audioprojectcddb/Makefile.am22
-rw-r--r--plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp151
-rw-r--r--plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.h53
-rw-r--r--plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.plugin9
4 files changed, 235 insertions, 0 deletions
diff --git a/plugins/project/audioprojectcddb/Makefile.am b/plugins/project/audioprojectcddb/Makefile.am
new file mode 100644
index 0000000..8af3e67
--- /dev/null
+++ b/plugins/project/audioprojectcddb/Makefile.am
@@ -0,0 +1,22 @@
+AM_CPPFLAGS = -I$(srcdir)/../../../libk3b/core \
+ -I$(srcdir)/../../../libk3b/tools \
+ -I$(srcdir)/../../../libk3b/core \
+ -I$(srcdir)/../../../libk3b/projects/audiocd \
+ -I$(srcdir)/../../../libk3b/projects \
+ -I$(srcdir)/../../../libk3bdevice \
+ -I$(srcdir)/../../../libk3b/cddb \
+ -I$(srcdir)/../../../libk3b/plugin \
+ $(all_includes)
+
+kde_module_LTLIBRARIES = libk3baudioprojectcddbplugin.la
+
+libk3baudioprojectcddbplugin_la_SOURCES = k3baudioprojectcddbplugin.cpp
+
+libk3baudioprojectcddbplugin_la_LIBADD = ../../../libk3b/libk3b.la
+
+libk3baudioprojectcddbplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
+
+pluginsdir = $(kde_datadir)/k3b/plugins
+plugins_DATA = k3baudioprojectcddbplugin.plugin
+
+METASOURCES = AUTO
diff --git a/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp b/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp
new file mode 100644
index 0000000..e523eb3
--- /dev/null
+++ b/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp
@@ -0,0 +1,151 @@
+/*
+ *
+ * $Id$
+ * 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 "k3baudioprojectcddbplugin.h"
+
+// the k3b stuff we need
+#include <k3bcore.h>
+#include <k3bglobals.h>
+#include <k3baudiodoc.h>
+#include <k3baudiotrack.h>
+#include <k3btoc.h>
+#include <k3btrack.h>
+#include <k3bmsf.h>
+#include <k3bcddb.h>
+#include <k3bcddbresult.h>
+#include <k3bcddbquery.h>
+#include <k3bprogressdialog.h>
+#include <k3bpluginfactory.h>
+
+#include <kdebug.h>
+#include <kaction.h>
+#include <kinstance.h>
+#include <kmessagebox.h>
+#include <klocale.h>
+#include <kconfig.h>
+
+#include <qstring.h>
+
+
+K_EXPORT_COMPONENT_FACTORY( libk3baudioprojectcddbplugin, K3bPluginFactory<K3bAudioProjectCddbPlugin>( "libk3baudioprojectcddbplugin" ) )
+
+
+K3bAudioProjectCddbPlugin::K3bAudioProjectCddbPlugin( QObject* parent,
+ const char* name )
+ : K3bProjectPlugin( AUDIO_CD, false, parent, name ),
+ m_cddb(0),
+ m_progress(0)
+{
+ setText( i18n("Query Cddb") );
+ setToolTip( i18n("Query a cddb entry for the current audio project.") );
+}
+
+
+K3bAudioProjectCddbPlugin::~K3bAudioProjectCddbPlugin()
+{
+ delete m_progress;
+}
+
+
+void K3bAudioProjectCddbPlugin::activate( K3bDoc* doc, QWidget* parent )
+{
+ m_doc = dynamic_cast<K3bAudioDoc*>( doc );
+ m_parentWidget = parent;
+ m_canceled = false;
+
+ if( !m_doc || m_doc->numOfTracks() == 0 ) {
+ KMessageBox::sorry( parent, i18n("Please select a non-empty audio project for a cddb query.") );
+ }
+ else {
+ if( !m_cddb ) {
+ m_cddb = new K3bCddb( this );
+ connect( m_cddb, SIGNAL(queryFinished(int)),
+ this, SLOT(slotCddbQueryFinished(int)) );
+ }
+ if( !m_progress ) {
+ m_progress = new K3bProgressDialog( i18n("Query Cddb"), parent, i18n("Audio Project") );
+ connect( m_progress, SIGNAL(cancelClicked()),
+ this, SLOT(slotCancelClicked()) );
+ }
+
+ // read the k3b config :)
+ KConfig* c = k3bcore->config();
+ c->setGroup("Cddb");
+ m_cddb->readConfig( c );
+
+ // start the query
+ m_cddb->query( m_doc->toToc() );
+
+ m_progress->exec(false);
+ }
+}
+
+
+void K3bAudioProjectCddbPlugin::slotCancelClicked()
+{
+ m_canceled = true;
+ m_progress->close();
+}
+
+
+void K3bAudioProjectCddbPlugin::slotCddbQueryFinished( int error )
+{
+ if( !m_canceled ) {
+ m_progress->hide();
+
+ if( error == K3bCddbQuery::SUCCESS ) {
+ K3bCddbResultEntry cddbInfo = m_cddb->result();
+
+ // save the entry locally
+ KConfig* c = k3bcore->config();
+ c->setGroup( "Cddb" );
+ if( c->readBoolEntry( "save cddb entries locally", true ) )
+ m_cddb->saveEntry( cddbInfo );
+
+ // save the entry to the doc
+ m_doc->setTitle( cddbInfo.cdTitle );
+ m_doc->setPerformer( cddbInfo.cdArtist );
+ m_doc->setCdTextMessage( cddbInfo.cdExtInfo );
+
+ int i = 0;
+ for( K3bAudioTrack* track = m_doc->firstTrack(); track; track = track->next() ) {
+ track->setTitle( cddbInfo.titles[i] );
+ track->setPerformer( cddbInfo.artists[i] );
+ track->setCdTextMessage( cddbInfo.extInfos[i] );
+
+ ++i;
+ }
+
+ // and enable cd-text
+ m_doc->writeCdText( true );
+ }
+ else if( error == K3bCddbQuery::NO_ENTRY_FOUND ) {
+ KMessageBox::information( m_parentWidget, i18n("No CDDB entry found."), i18n("CDDB") );
+ }
+ else if( error != K3bCddbQuery::CANCELED ) {
+ KMessageBox::information( m_parentWidget, m_cddb->errorString(), i18n("Cddb error") );
+ }
+ }
+
+ // make sure the progress dialog does not get deleted by it's parent
+ delete m_progress;
+ m_doc = 0;
+ m_parentWidget = 0;
+ m_progress = 0;
+}
+
+#include "k3baudioprojectcddbplugin.moc"
diff --git a/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.h b/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.h
new file mode 100644
index 0000000..a0e7880
--- /dev/null
+++ b/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.h
@@ -0,0 +1,53 @@
+/*
+ *
+ * $Id$
+ * 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.
+ */
+
+#ifndef _K3B_AUDIO_PROJECT_CDDB_PLUGIN_H_
+#define _K3B_AUDIO_PROJECT_CDDB_PLUGIN_H_
+
+
+#include <k3bprojectplugin.h>
+
+class K3bCddb;
+class K3bAudioDoc;
+class K3bProgressDialog;
+class QWidget;
+
+class K3bAudioProjectCddbPlugin : public K3bProjectPlugin
+{
+ Q_OBJECT
+
+ public:
+ K3bAudioProjectCddbPlugin( QObject* parent, const char* name );
+ ~K3bAudioProjectCddbPlugin();
+
+ int pluginSystemVersion() const { return 3; }
+
+ void activate( K3bDoc* doc, QWidget* parent );
+
+ private slots:
+ void slotCddbQueryFinished( int result );
+ void slotCancelClicked();
+
+ private:
+ K3bCddb* m_cddb;
+ K3bAudioDoc* m_doc;
+ K3bProgressDialog* m_progress;
+ QWidget* m_parentWidget;
+
+ bool m_canceled;
+};
+
+
+#endif
diff --git a/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.plugin b/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.plugin
new file mode 100644
index 0000000..8fbea0f
--- /dev/null
+++ b/plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.plugin
@@ -0,0 +1,9 @@
+[K3b Plugin]
+Lib=libk3baudioprojectcddbplugin
+Group=ProjectPlugin
+Name=K3b Cddb Audio Plugin
+Author=Sebastian Trueg
+Email=trueg@k3b.org
+Version=0.1
+Comment=Plugin to query a cddb server for information about an audio project.
+License=GPL