You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

35 lines
839 B

#include <kdebug.h>
#include <kapplication.h>
#include <kcmdlineargs.h>
#include "kmailinterface.h"
#include "aboutdata.h"
int main(int argc,char **argv)
{
kDebug() << "Test KMail D-Bus interface.";
KAboutData aboutData( "testKMailDBUS", 0,
ki18n("Test for KMail D-Bus interface"), "0.0" );
KCmdLineArgs::init(argc, argv, &aboutData);
KApplication app;
OrgKdeKmailKmailInterface kmailInterface( "org.kde.kmail", "/KMail", QDBusConnection::sessionBus());
kmailInterface.openComposer( "to 1","","","First test","simple openComp call",0);
QDBusReply<QDBusObjectPath> composerDbusPath = kmailInterface.openComposer("to 2","","","Second test", "DBUS ref call",0);
if ( !composerDbusPath.isValid() )
{
kDebug()<<"We can't connect to kmail";
exit( 1 );
}
kDebug() << "testDBus done.";
return 0;
}