kontact
kaddressbookiface_stub.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef __KADDRESSBOOKIFACE_STUB__
00010 #define __KADDRESSBOOKIFACE_STUB__
00011
00012 #include <dcopstub.h>
00013 #include <kdepimmacros.h>
00014 #include <qstringlist.h>
00015 #include <dcopobject.h>
00016
00017
00018 class KDE_EXPORT KAddressBookIface_stub : virtual public DCOPStub
00019 {
00020 public:
00021 KAddressBookIface_stub( const QCString& app, const QCString& id );
00022 KAddressBookIface_stub( DCOPClient* client, const QCString& app, const QCString& id );
00023 explicit KAddressBookIface_stub( const DCOPRef& ref );
00024 virtual void addEmail( QString addr );
00025 virtual void importVCard( const QString& vCardURL );
00026 virtual ASYNC showContactEditor( QString uid );
00027 virtual void newContact();
00028 virtual QString getNameByPhone( QString phone );
00029 virtual void save();
00030 virtual void exit();
00031 virtual bool handleCommandLine();
00032 protected:
00033 KAddressBookIface_stub() : DCOPStub( never_use ) {};
00034 };
00035
00036
00037 #endif
|