summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/nowlistening/nlkaffeine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/plugins/nowlistening/nlkaffeine.cpp')
-rw-r--r--kopete/plugins/nowlistening/nlkaffeine.cpp101
1 files changed, 101 insertions, 0 deletions
diff --git a/kopete/plugins/nowlistening/nlkaffeine.cpp b/kopete/plugins/nowlistening/nlkaffeine.cpp
new file mode 100644
index 00000000..fe02077f
--- /dev/null
+++ b/kopete/plugins/nowlistening/nlkaffeine.cpp
@@ -0,0 +1,101 @@
+/*
+ nlkaffeine.cpp
+
+ Kopete Now Listening To plugin
+
+ Copyright (c) 2004 by Will Stephenson <will@stevello.free-online.co.uk>
+ Kopete
+ Copyright (c) 2002,2003,2004 by the Kopete developers <kopete-devel@kde.org>
+
+ Purpose:
+ This class abstracts the interface to Kaffeine by
+ implementing NLMediaPlayer
+
+ *************************************************************************
+ * *
+ * 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. *
+ * *
+ *************************************************************************
+*/
+
+#include <kdebug.h>
+#include <qstring.h>
+
+#include "nlmediaplayer.h"
+#include "nlkaffeine.h"
+
+NLKaffeine::NLKaffeine( DCOPClient *client ) : NLMediaPlayer()
+{
+ m_client = client;
+ m_type = Video;
+ m_name = "Kaffeine";
+}
+
+void NLKaffeine::update()
+{
+ m_playing = false;
+ m_newTrack = false;
+ QString newTrack;
+ bool error = true; // Asume we have a error first.
+ QCString kaffeineIface("Kaffeine"), kaffeineGetTrack("getTitle()");
+
+ // see if kaffeine is registered with DCOP
+ if ( m_client->isApplicationRegistered( "kaffeine" ) )
+ {
+ // see if it's playing
+ QByteArray data, replyData;
+ QCString replyType;
+ QString result;
+ if ( !m_client->call( "kaffeine", kaffeineIface, "isPlaying()", data,
+ replyType, replyData ) )
+ {
+ kdDebug ( 14307 ) << k_funcinfo << " Trying DCOP interface of Kaffeine >= 0.5" << endl;
+ // Trying with the new Kaffeine DCOP interface (>=0.5)
+ kaffeineIface = "KaffeineIface";
+ kaffeineGetTrack = "title()";
+ if( !m_client->call( "kaffeine", kaffeineIface, "isPlaying()", data, replyType, replyData ) )
+ {
+ kdDebug( 14307 ) << k_funcinfo << " DCOP error on Kaffeine." << endl;
+ }
+ else
+ {
+ error = false;
+ }
+ }
+ else
+ {
+ error = false;
+ }
+
+ // If we didn't get any DCOP error, check if Kaffeine is playing.
+ if(!error)
+ {
+ QDataStream reply( replyData, IO_ReadOnly );
+ if ( replyType == "bool" ) {
+ reply >> m_playing;
+ kdDebug( 14307 ) << "checked if Kaffeine is playing!" << endl;
+ }
+ }
+
+ if ( m_client->call( "kaffeine", kaffeineIface, kaffeineGetTrack, data,
+ replyType, replyData ) )
+ {
+ QDataStream reply( replyData, IO_ReadOnly );
+
+ if ( replyType == "QString" ) {
+ reply >> newTrack;
+ }
+ }
+ if( newTrack != m_track )
+ {
+ m_newTrack = true;
+ m_track = newTrack;
+ }
+ }
+ else
+ kdDebug ( 14307 ) << "Kaffeine is not running!\n" << endl;
+}
+