mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 10:22:48 +00:00
kio: remove unused source files
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
1c44e3a9c6
commit
6aacff5531
5 changed files with 0 additions and 159 deletions
|
@ -67,7 +67,6 @@ static bool check(const QString& txt, T a, T b)
|
|||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
//KApplication::disableAutoDcopRegistration();
|
||||
KCmdLineArgs::init(argc,argv, "kacltest", 0, ki18n("kacltest"), 0);
|
||||
KApplication app;
|
||||
|
||||
|
|
|
@ -1,129 +0,0 @@
|
|||
#include <kservice.h>
|
||||
#include <kmimetype.h>
|
||||
#include <assert.h>
|
||||
#include <kstandarddirs.h>
|
||||
#include <kservicegroup.h>
|
||||
#include <kprotocolinfo.h>
|
||||
#include <QtCore/QProcess>
|
||||
#include <QtCore/QTimer>
|
||||
#include <kcmdlineargs.h>
|
||||
#include "kdcopcheck.h"
|
||||
#include <dcopclient.h>
|
||||
|
||||
#include <kapplication.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
void debug(QString txt)
|
||||
{
|
||||
fprintf(stderr, "%s\n", txt.toLatin1().constData());
|
||||
}
|
||||
|
||||
void debug(const char *txt)
|
||||
{
|
||||
fprintf(stderr, "%s\n", txt);
|
||||
}
|
||||
void debug(const char *format, const char *txt)
|
||||
{
|
||||
fprintf(stderr, format, txt);
|
||||
fprintf(stderr, "\n");
|
||||
}
|
||||
|
||||
TestService::TestService(const QString &exec)
|
||||
{
|
||||
m_exec = exec;
|
||||
|
||||
proc.start(exec);
|
||||
|
||||
connect(KApplication::dcopClient(), SIGNAL(applicationRegistered(QByteArray)),
|
||||
this, SLOT(newApp(QByteArray)));
|
||||
connect(KApplication::dcopClient(), SIGNAL(applicationRemoved(QByteArray)),
|
||||
this, SLOT(endApp(QByteArray)));
|
||||
connect(&proc, SIGNAL(finished(int,QProcess::ExitStatus)),
|
||||
this, SLOT(appExit()));
|
||||
|
||||
QTimer::singleShot(20*1000, this, SLOT(stop()));
|
||||
result = KService::DCOP_None;
|
||||
}
|
||||
|
||||
void TestService::newApp(const QByteArray &appId)
|
||||
{
|
||||
QString id = appId;
|
||||
if (id == m_exec)
|
||||
{
|
||||
result = KService::DCOP_Unique;
|
||||
stop();
|
||||
}
|
||||
else if (id.startsWith(m_exec))
|
||||
{
|
||||
result = KService::DCOP_Multi;
|
||||
stop();
|
||||
}
|
||||
qWarning("Register %s", appId.data());
|
||||
}
|
||||
|
||||
void TestService::endApp(const QByteArray &appId)
|
||||
{
|
||||
qWarning("Unegister %s", appId.data());
|
||||
}
|
||||
|
||||
void TestService::appExit()
|
||||
{
|
||||
qWarning("Exit");
|
||||
}
|
||||
|
||||
void TestService::stop()
|
||||
{
|
||||
qApp->exit_loop();
|
||||
}
|
||||
|
||||
int TestService::exec()
|
||||
{
|
||||
qApp->enter_loop();
|
||||
return result;
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
putenv("IGNORE_SYCOCA_VERSION=true");
|
||||
KCmdLineArgs::init( argc,argv, "whatever", 0, ki18n("whatever"), 0);
|
||||
KApplication k( false/*noGUI*/ );// KMessageBox needs KApp for makeStdCaption
|
||||
|
||||
k.dcopClient()->setNotifications(true);
|
||||
|
||||
KService::List list = KService::allServices();
|
||||
|
||||
qWarning("I found %d services.", list.count());
|
||||
int i = 0;
|
||||
for(KService::List::ConstIterator it = list.begin(); it != list.end(); ++it)
|
||||
{
|
||||
if (((*it)->DCOPServiceType() == KService::DCOP_None) &&
|
||||
!(*it)->entryPath().startsWith("SuSE") &&
|
||||
(*it)->hasServiceType("Application"))
|
||||
{
|
||||
if ((*it)->exec().startsWith((*it)->desktopEntryName()))
|
||||
{
|
||||
i++;
|
||||
|
||||
TestService *test = new TestService((*it)->desktopEntryName());
|
||||
int n = test->exec();
|
||||
delete test;
|
||||
|
||||
QString result;
|
||||
if (n == KService::DCOP_None)
|
||||
result = "None";
|
||||
else if (n == KService::DCOP_Unique)
|
||||
result = "Unique";
|
||||
else if (n == KService::DCOP_Multi)
|
||||
result = "Multi";
|
||||
|
||||
qWarning("%s %s", (*it)->entryPath().toLatin1().constData(),
|
||||
result.toLatin1().constData());
|
||||
}
|
||||
}
|
||||
}
|
||||
qWarning("%d left after filtering.", i);
|
||||
}
|
||||
|
||||
#include "moc_kdcopcheck.cpp"
|
|
@ -1,27 +0,0 @@
|
|||
#ifndef _BLA_H_
|
||||
#define _BLA_H_
|
||||
|
||||
#include <QtCore/QString>
|
||||
#include <QtCore/QObject>
|
||||
|
||||
class TestService : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
TestService(const QString &exec);
|
||||
|
||||
int exec();
|
||||
|
||||
public Q_SLOTS:
|
||||
void newApp(const QByteArray &appId);
|
||||
void endApp(const QByteArray &appId);
|
||||
void appExit();
|
||||
void stop();
|
||||
|
||||
protected:
|
||||
int result;
|
||||
QString m_exec;
|
||||
QProcess proc;
|
||||
};
|
||||
|
||||
#endif
|
|
@ -41,7 +41,6 @@
|
|||
//
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
//KApplication::disableAutoDcopRegistration();
|
||||
KCmdLineArgs::init(argc,argv, "ksycocatest", 0, ki18n("ksycocatest"), 0);
|
||||
KApplication k;//(argc,argv,"whatever",false/*noGUI*/); // KMessageBox needs KApp for makeStdCaption
|
||||
|
||||
|
|
|
@ -197,7 +197,6 @@ void KUrlCompletionTest::testEmptyCwd()
|
|||
|
||||
int main( int argc, char **argv )
|
||||
{
|
||||
//KApplication::disableAutoDcopRegistration();
|
||||
KCmdLineArgs::init(argc,argv, "kurlcompletiontest", 0, ki18n("kurlcompletiontest"), 0);
|
||||
KApplication app;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue