summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/nowlistening/nlxmms.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitbcb704366cb5e333a626c18c308c7e0448a8e69f (patch)
treef0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kopete/plugins/nowlistening/nlxmms.cpp
downloadtdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz
tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/plugins/nowlistening/nlxmms.cpp')
-rw-r--r--kopete/plugins/nowlistening/nlxmms.cpp73
1 files changed, 73 insertions, 0 deletions
diff --git a/kopete/plugins/nowlistening/nlxmms.cpp b/kopete/plugins/nowlistening/nlxmms.cpp
new file mode 100644
index 00000000..f0a9f47a
--- /dev/null
+++ b/kopete/plugins/nowlistening/nlxmms.cpp
@@ -0,0 +1,73 @@
+/*
+ nlxmms.cpp
+
+ Kopete Now Listening To plugin
+
+ Copyright (c) 2002 by Will Stephenson <will@stevello.free-online.co.uk>
+
+ Kopete (c) 2002 by the Kopete developers <kopete-devel@kde.org>
+
+ Purpose:
+ This class abstracts the interface to the X Multimedia System (xmms) 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 "config.h"
+
+#ifdef HAVE_XMMS
+
+#include <kdebug.h>
+#include <xmmsctrl.h> // need to fix Makefile.am for this?
+#include "nlmediaplayer.h"
+#include "nlxmms.h"
+
+NLXmms::NLXmms() : NLMediaPlayer()
+{
+ m_name = "Xmms";
+}
+
+
+void NLXmms::update()
+{
+ //look for running xmms
+ if ( xmms_remote_get_version( 0 ) )
+ {
+ QString newTrack;
+ // see if it's playing
+ if ( xmms_remote_is_playing( 0 ) && !xmms_remote_is_paused( 0 ) )
+ {
+ m_playing = true;
+
+ // get the artist and album title
+ // get the song title
+ newTrack = xmms_remote_get_playlist_title( 0, xmms_remote_get_playlist_pos( 0 ) );
+ //kdDebug( 14307 ) << "NLXmms::update() - track is: " << m_track << endl;
+ m_artist = newTrack.section( " - ", 0, 0 );
+ newTrack = newTrack.section( " - ", -1, -1 );
+ }
+ else
+ m_playing = false;
+ // check if it's a new song
+ if ( newTrack != m_track )
+ {
+ m_newTrack = true;
+ m_track = newTrack;
+ }
+ else
+ m_newTrack = false;
+ kdDebug( 14307 ) << k_funcinfo << " - found xmms - " << m_track << endl;
+ }
+ else
+ kdDebug( 14307 ) << k_funcinfo << " - xmms not found" << endl;
+}
+
+#endif
+// vim: set noet ts=4 sts=4 sw=4: