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.
60 lines
1.4 KiB
60 lines
1.4 KiB
13 years ago
|
#include <tqtextstream.h>
|
||
15 years ago
|
#include <tqtimer.h>
|
||
15 years ago
|
|
||
|
#include <kaboutdata.h>
|
||
|
#include <kapplication.h>
|
||
|
#include <kcmdlineargs.h>
|
||
|
#include <kdebug.h>
|
||
|
#include <kglobal.h>
|
||
|
#include <kstandarddirs.h>
|
||
|
#include <dcopclient.h>
|
||
12 years ago
|
#include <tdewallet.h>
|
||
15 years ago
|
|
||
12 years ago
|
#include "tdewallettest.h"
|
||
15 years ago
|
|
||
15 years ago
|
static TQTextStream _out( stdout, IO_WriteOnly );
|
||
15 years ago
|
|
||
|
void openWallet()
|
||
|
{
|
||
|
_out << "About to ask for wallet async" << endl;
|
||
|
|
||
|
// we have no wallet: ask for one.
|
||
|
KWallet::Wallet *wallet = KWallet::Wallet::openWallet( KWallet::Wallet::NetworkWallet(), 0, KWallet::Wallet::Asynchronous );
|
||
|
|
||
|
WalletReceiver r;
|
||
15 years ago
|
r.connect( wallet, TQT_SIGNAL( walletOpened(bool) ), TQT_SLOT( walletOpened(bool) ) );
|
||
15 years ago
|
|
||
|
_out << "About to start 30 second event loop" << endl;
|
||
|
|
||
14 years ago
|
TQTimer::singleShot( 30000, tqApp, TQT_SLOT( quit() ) );
|
||
|
int ret = tqApp->exec();
|
||
15 years ago
|
|
||
|
if ( ret == 0 )
|
||
|
_out << "Timed out!" << endl;
|
||
|
else
|
||
|
_out << "Success!" << endl;
|
||
|
}
|
||
|
|
||
|
void WalletReceiver::walletOpened( bool got )
|
||
|
{
|
||
|
_out << "Got async wallet: " << got << endl;
|
||
14 years ago
|
tqApp->exit( 1 );
|
||
15 years ago
|
}
|
||
|
|
||
|
int main( int argc, char *argv[] )
|
||
|
{
|
||
12 years ago
|
TDEAboutData aboutData( "tdewalletasync", "tdewalletasync", "version" );
|
||
12 years ago
|
TDECmdLineArgs::init( argc, argv, &aboutData );
|
||
12 years ago
|
TDEApplication app( "tdewalletasync" );
|
||
15 years ago
|
|
||
|
// register with DCOP
|
||
|
_out << "DCOP registration returned " << app.dcopClient()->registerAs(app.name()) << endl;
|
||
|
|
||
|
openWallet();
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
// vim: set noet ts=4 sts=4 sw=4:
|
||
|
|