From 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kmobile/testlibkmobile.cpp | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 kmobile/testlibkmobile.cpp (limited to 'kmobile/testlibkmobile.cpp') diff --git a/kmobile/testlibkmobile.cpp b/kmobile/testlibkmobile.cpp new file mode 100644 index 000000000..f89d3871f --- /dev/null +++ b/kmobile/testlibkmobile.cpp @@ -0,0 +1,40 @@ +/* + * Test program for the KDE KMobile Library + * Copyright (C) 2003 Helge Deller + */ + +#include +#include +#include +#include +#include + +int main(int argc, char **argv) +{ + bool ok; + + KApplication app(argc, argv, "kmobile_client", false); + + // get our DCOP client and attach so that we may use it + DCOPClient *client = app.dcopClient(); + client->attach(); + + QByteArray data; + QDataStream ds(data, IO_WriteOnly); +// ds << QString("a"); + + QCString replyType; + QByteArray replyData; + ok = client->call("kmobile", "kmobileIface", "deviceNames()", data, replyType, replyData); + + QDataStream reply(replyData, IO_ReadOnly); + QStringList deviceNames; + reply >> deviceNames; + + kdDebug() << QString("%1\n").arg(ok?"Ok":"Failure"); + kdDebug() << QString("Number of currently registered drivers: %1\n").arg(deviceNames.count()); + for (int i=0; i