From b7658a0d5eca24a9d37c6e04f88298ef02389db0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 16:27:34 -0600 Subject: Fix FTBFS resulting from KCModule rename --- kutils/kcmoduleproxyIfaceImpl.cpp | 129 -------------------------------------- 1 file changed, 129 deletions(-) delete mode 100644 kutils/kcmoduleproxyIfaceImpl.cpp (limited to 'kutils/kcmoduleproxyIfaceImpl.cpp') diff --git a/kutils/kcmoduleproxyIfaceImpl.cpp b/kutils/kcmoduleproxyIfaceImpl.cpp deleted file mode 100644 index 5e1ca4986..000000000 --- a/kutils/kcmoduleproxyIfaceImpl.cpp +++ /dev/null @@ -1,129 +0,0 @@ -/* - * Copyright (C) 2004 Frans Englich - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License version 2 as published by the Free Software Foundation. - * - * This library 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 - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public License - * along with this library; see the file COPYING.LIB. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#include -#include - -#include - -#include -#include -#include - -#include "kcmoduleproxyIfaceImpl.h" - - -#include - -TDECModuleProxyIfaceImpl::TDECModuleProxyIfaceImpl( const TQCString& name, - TDECModuleProxy* const client ) - : DCOPObject( name ), TQObject( 0, name ), - p( const_cast( client )) -{ - connect( p, TQT_SIGNAL( changed(bool)), - TQT_SLOT( changedRelay(bool))); - connect( p, TQT_SIGNAL( quickHelpChanged()), - TQT_SLOT( quickHelpRelay())); -} - -void TDECModuleProxyIfaceImpl::save() -{ - kdDebug(711) << k_funcinfo << endl; - p->save(); -} - -void TDECModuleProxyIfaceImpl::load() -{ - kdDebug(711) << k_funcinfo << endl; - p->load(); -} - -void TDECModuleProxyIfaceImpl::defaults() -{ - kdDebug(711) << k_funcinfo << endl; - p->defaults(); -} - -TQString TDECModuleProxyIfaceImpl::applicationName() -{ - return kapp->caption(); -} - -TQString TDECModuleProxyIfaceImpl::quickHelp() -{ - return p->quickHelp(); -} - -bool TDECModuleProxyIfaceImpl::changed() -{ - return p->changed(); -} - -void TDECModuleProxyIfaceImpl::changedRelay( bool c ) -{ - TQByteArray data; - TQDataStream stream(data, IO_WriteOnly); - stream << c; - emitDCOPSignal( "changed(bool)", data ); -} - -void TDECModuleProxyIfaceImpl::quickHelpRelay() -{ - TQByteArray data; - emitDCOPSignal( "quickHelpChanged()", data ); -} - -/***************************************************************/ - - - - -/***************************************************************/ -TDECModuleProxyRootCommunicatorImpl::TDECModuleProxyRootCommunicatorImpl - ( const TQCString& name, TDECModuleProxy* const client ) - : DCOPObject( name ), TQObject( 0, name ), - p( const_cast( client )) -{ - /* - * Connect kcmshell's TDECModuleProxy's change signal - * to us, such that we act as a proxy for - * TDECModuleProxy's API. - */ - - /* Note, we don't use TDECModuleProxy::d->dcopClient */ - kapp->dcopClient()->connectDCOPSignal( 0, p->dcopName(), - "changed(bool)", objId(), "changed(bool)", false ); - - kapp->dcopClient()->connectDCOPSignal( 0, p->dcopName(), - "quickHelpChanged()", objId(), "quickHelpChanged()", false ); -} - -/* Reimplementations of DCOP members */ -void TDECModuleProxyRootCommunicatorImpl::changed( bool c ) -{ - kdDebug(711) << k_funcinfo << endl; - p->moduleChanged( c ); -} - -void TDECModuleProxyRootCommunicatorImpl::quickHelpChanged() -{ - kdDebug(711) << k_funcinfo << endl; - p->emitQuickHelpChanged(); -} - -#include "kcmoduleproxyIfaceImpl.moc" -- cgit v1.2.3