summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/nowlistening/nowlisteningguiclient.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/nowlisteningguiclient.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/nowlisteningguiclient.cpp')
-rw-r--r--kopete/plugins/nowlistening/nowlisteningguiclient.cpp79
1 files changed, 79 insertions, 0 deletions
diff --git a/kopete/plugins/nowlistening/nowlisteningguiclient.cpp b/kopete/plugins/nowlistening/nowlisteningguiclient.cpp
new file mode 100644
index 00000000..8e7b1908
--- /dev/null
+++ b/kopete/plugins/nowlistening/nowlisteningguiclient.cpp
@@ -0,0 +1,79 @@
+/*
+ nowlisteningguiclient.cpp
+
+ Kopete Now Listening To plugin
+
+ Copyright (c) 2005 by Tommi Rantala <tommi.rantala@cs.helsinki.fi>
+ Copyright (c) 2002,2003,2004 by Will Stephenson <will@stevello.free-online.co.uk>
+
+ Kopete (c) 2002-2005 by the Kopete developers <kopete-devel@kde.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. *
+ * *
+ *************************************************************************
+*/
+
+#include "nowlisteningguiclient.h"
+#include "nowlisteningplugin.h"
+
+#include "kopetechatsessionmanager.h"
+#include "kopeteview.h"
+
+#include <kdebug.h>
+#include <kaction.h>
+#include <klocale.h>
+#include <kmessagebox.h>
+
+NowListeningGUIClient::NowListeningGUIClient( Kopete::ChatSession *parent, NowListeningPlugin *plugin )
+ : QObject(parent) , KXMLGUIClient(parent)
+{
+ connect(plugin, SIGNAL(readyForUnload()), SLOT(slotPluginUnloaded()));
+ m_msgManager = parent;
+ m_action = new KAction( i18n( "Send Media Info" ), 0, this,
+ SLOT( slotAdvertToCurrentChat() ), actionCollection(), "actionSendAdvert" );
+ setXMLFile("nowlisteningchatui.rc");
+}
+
+void NowListeningGUIClient::slotAdvertToCurrentChat()
+{
+ kdDebug( 14307 ) << k_funcinfo << endl;
+
+ // Sanity check - don't crash if the plugin is unloaded and we get called.
+ if (!NowListeningPlugin::plugin())
+ return;
+
+ QString message = NowListeningPlugin::plugin()->mediaPlayerAdvert();
+
+ // We warn in a mode appropriate to the mode the user invoked the
+ // plugin - GUI on menu action, in message if they typed '/media'
+ if ( message.isEmpty() )
+ {
+ QWidget * origin = 0L;
+ if ( m_msgManager && m_msgManager->view() )
+ origin = m_msgManager->view()->mainWidget();
+ KMessageBox::queuedMessageBox( origin, KMessageBox::Sorry,
+ i18n( "None of the supported media players (KsCD, JuK, amaroK, Noatun or Kaffeine) are playing anything." ),
+ i18n( "Nothing to Send" ) );
+ }
+ else
+ {
+ //advertise to a single chat
+ if ( m_msgManager )
+ NowListeningPlugin::plugin()->advertiseToChat( m_msgManager, message );
+ }
+}
+
+// The plugin itself is being unloaded - so remove the GUI entry.
+void NowListeningGUIClient::slotPluginUnloaded()
+{
+ m_action->unplugAll();
+}
+
+#include "nowlisteningguiclient.moc"
+
+// vim: set noet ts=4 sts=4 sw=4: