diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-19 18:38:42 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-19 18:38:42 +0000 |
commit | 498ff4e365566b987d2c7a1e54065e0e126556f7 (patch) | |
tree | c283921daac735696d642ba121c9e14152e00215 /src/otrguiclient.cpp | |
download | kopete-otr-498ff4e365566b987d2c7a1e54065e0e126556f7.tar.gz kopete-otr-498ff4e365566b987d2c7a1e54065e0e126556f7.zip |
Added abandoned KDE3 version of kopete-otr
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kopete-otr@1092925 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/otrguiclient.cpp')
-rw-r--r-- | src/otrguiclient.cpp | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/src/otrguiclient.cpp b/src/otrguiclient.cpp new file mode 100644 index 0000000..544ae94 --- /dev/null +++ b/src/otrguiclient.cpp @@ -0,0 +1,128 @@ +/*************************************************************************** + * Copyright (C) 2007 by Michael Zanetti + * + * * + * 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. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ + + +#include <kaction.h> +#include <klocale.h> +#include <kactionclasses.h> +#include <kopetechatsession.h> +#include <kopeteview.h> +#include <kopetemessage.h> +#include <kdebug.h> +#include <kstandarddirs.h> +#include <kmessagebox.h> + + +#include "otrguiclient.h" +#include "otrplugin.h" + +/** + * @author Frank Scheffold + * @author Michael Zanetti + */ + + +OtrGUIClient::OtrGUIClient( Kopete::ChatSession *parent, const char *name ) +: QObject( parent, name ), KXMLGUIClient( parent ) +{ + setInstance( OTRPlugin::plugin()->instance() ); + + connect( OTRPlugin::plugin(), + SIGNAL( destroyed( QObject * ) ), this, + SLOT( deleteLater() ) + + ); + + connect(this, SIGNAL( signalOtrChatsession(Kopete::ChatSession*, bool) ), OTRPlugin::plugin(), SLOT(slotEnableOtr(Kopete::ChatSession*, bool))); + + connect( OTRPlugin::plugin(), SIGNAL( goneSecure( Kopete::ChatSession *, int ) ), + this, SLOT( encryptionEnabled( Kopete::ChatSession *, int ) ) ); + + connect( this, SIGNAL( signalVerifyFingerprint( Kopete::ChatSession * ) ), OTRPlugin::plugin(), SLOT(slotVerifyFingerprint( Kopete::ChatSession * )) ); + + m_manager = parent; + otrActionMenu = new KActionMenu(i18n("OTR Settings"),"otr_disabled", actionCollection(), "otr_settings"); + otrActionMenu->setDelayed( false ); + actionEnableOtr = new KAction(i18n( "Start OTR session" ), "otr_private", 0,this,SLOT(slotEnableOtr()),actionCollection(), "enable_otr"); + actionDisableOtr = new KAction(i18n("End OTR session"), "otr_disabled",0, this,SLOT(slotDisableOtr()), actionCollection(), "disable_otr"); + actionVerifyFingerprint = new KAction(i18n("Authenticate Contact"), "signature",0, this,SLOT(slotVerifyFingerprint()), actionCollection(), "verify_fingerprint"); + + otrActionMenu->insert(actionEnableOtr); + otrActionMenu->insert(actionDisableOtr); + otrActionMenu->insert(actionVerifyFingerprint); + + setXMLFile("otrchatui.rc"); + + encryptionEnabled( parent, OtrlChatInterface::self()->privState(parent) ); + + +} + +OtrGUIClient::~OtrGUIClient() +{ +} + +void OtrGUIClient::slotEnableOtr() +{ + emit signalOtrChatsession( m_manager, true ); +} +void OtrGUIClient::slotDisableOtr() +{ + emit signalOtrChatsession( m_manager, false ); +} + +void OtrGUIClient::slotVerifyFingerprint(){ + emit signalVerifyFingerprint( m_manager ); +} + +void OtrGUIClient::encryptionEnabled(Kopete::ChatSession *session, int state){ + if( session == m_manager ){ + switch(state){ + case 0: + otrActionMenu->setIcon("otr_disabled"); + actionEnableOtr->setText( i18n("Start OTR session") ); + actionDisableOtr->setEnabled(false); + actionVerifyFingerprint->setEnabled(false); + break; + case 1: + otrActionMenu->setIcon("otr_unverified"); + actionEnableOtr->setText( i18n("Refresh OTR session") ); + actionDisableOtr->setEnabled(true); + actionVerifyFingerprint->setEnabled(true); + break; + case 2: + otrActionMenu->setIcon("otr_private"); + actionEnableOtr->setText( i18n("Refresh OTR session") ); + actionDisableOtr->setEnabled(true); + actionVerifyFingerprint->setEnabled(true); + break; + case 3: + otrActionMenu->setIcon("otr_finished"); + actionEnableOtr->setText( i18n("Start OTR session") ); + actionDisableOtr->setEnabled(true); + actionVerifyFingerprint->setEnabled(false); + break; + } + } +} + +#include "otrguiclient.moc" + +// vim: set noet ts=4 sts=4 sw=4: |