summaryrefslogtreecommitdiffstats
path: root/libkdenetwork/qgpgme/eventloopinteractor.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 16:06:07 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 16:06:07 -0600
commitbe0ca741fd12897337408d1d7a7d8f5f18e1fac9 (patch)
treeb9fa3458193a17180d8773a0204ee05ae206cd99 /libkdenetwork/qgpgme/eventloopinteractor.cpp
parentbbb7afdb6da2969535e7f05715e2cb95cfdc917c (diff)
downloadtdepim-be0ca741fd12897337408d1d7a7d8f5f18e1fac9.tar.gz
tdepim-be0ca741fd12897337408d1d7a7d8f5f18e1fac9.zip
Finish rename from prior commit
Diffstat (limited to 'libkdenetwork/qgpgme/eventloopinteractor.cpp')
-rw-r--r--libkdenetwork/qgpgme/eventloopinteractor.cpp99
1 files changed, 0 insertions, 99 deletions
diff --git a/libkdenetwork/qgpgme/eventloopinteractor.cpp b/libkdenetwork/qgpgme/eventloopinteractor.cpp
deleted file mode 100644
index fdf25af04..000000000
--- a/libkdenetwork/qgpgme/eventloopinteractor.cpp
+++ /dev/null
@@ -1,99 +0,0 @@
-/* qeventloopinteractor.cpp
- Copyright (C) 2003 Klarälvdalens Datakonsult AB
-
- This file is part of TQGPGME.
-
- TQGPGME 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.
-
- TQGPGME 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 TQGPGME; if not, write to the Free Software Foundation,
- Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
-
-// -*- c++ -*-
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <qgpgme/eventloopinteractor.h>
-
-#include <gpgmepp/context.h>
-
-#include <tqsocketnotifier.h>
-#include <tqapplication.h>
-
-using namespace GpgME;
-
-QGpgME::EventLoopInteractor::EventLoopInteractor( TQObject * parent, const char * name )
- : TQObject( parent, name ), GpgME::EventLoopInteractor()
-{
- if ( !parent )
- if ( tqApp ) {
- connect( tqApp, TQT_SIGNAL(aboutToQuit()), TQT_SLOT(deleteLater()) );
- connect( tqApp, TQT_SIGNAL(aboutToQuit()), TQT_SIGNAL(aboutToDestroy()) );
- }
- mSelf = this;
-}
-
-QGpgME::EventLoopInteractor::~EventLoopInteractor() {
- emit aboutToDestroy();
- mSelf = 0;
-}
-
-QGpgME::EventLoopInteractor * QGpgME::EventLoopInteractor::mSelf = 0;
-
-QGpgME::EventLoopInteractor * QGpgME::EventLoopInteractor::instance() {
- if ( !mSelf )
-#ifndef NDEBUG
- if ( !tqApp )
- qWarning( "QGpgME::EventLoopInteractor: Need a TQApplication object before calling instance()!" );
- else
-#endif
- (void)new EventLoopInteractor( 0, "QGpgME::EventLoopInteractor::instance()" );
- return mSelf;
-}
-
-void * QGpgME::EventLoopInteractor::registerWatcher( int fd, Direction dir, bool & ok ) {
- TQSocketNotifier * sn = new TQSocketNotifier( fd,
- dir == Read ? TQSocketNotifier::Read : TQSocketNotifier::Write );
- if ( dir == Read )
- connect( sn, TQT_SIGNAL(activated(int)), TQT_SLOT(slotReadActivity(int)) );
- else
- connect( sn, TQT_SIGNAL(activated(int)), TQT_SLOT(slotWriteActivity(int)) );
- ok = true; // Can above operations fails?
- return sn;
-}
-
-void QGpgME::EventLoopInteractor::unregisterWatcher( void * tag ) {
- delete static_cast<TQSocketNotifier*>( tag );
-}
-
-void QGpgME::EventLoopInteractor::slotWriteActivity( int socket ) {
- actOn( socket , Write );
-}
-
-void QGpgME::EventLoopInteractor::slotReadActivity( int socket ) {
- actOn( socket , Read );
-}
-
-void QGpgME::EventLoopInteractor::nextTrustItemEvent( GpgME::Context * context, const GpgME::TrustItem & item ) {
- emit nextTrustItemEventSignal( context, item );
-}
-
-void QGpgME::EventLoopInteractor::nextKeyEvent( GpgME::Context * context, const GpgME::Key & key ) {
- emit nextKeyEventSignal( context, key );
-}
-
-void QGpgME::EventLoopInteractor::operationDoneEvent( GpgME::Context * context, const GpgME::Error & e ) {
- emit operationDoneEventSignal( context, e );
-}
-
-#include "eventloopinteractor.moc"