tdecore
kappdcopiface.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KAPPDCOP_INTERFACE_H
00021 #define KAPPDCOP_INTERFACE_H
00022
00023 #include <dcopobject.h>
00024 #include <tqstringlist.h>
00025 #include <tqcstring.h>
00026 #include <dcopref.h>
00027 #include "tdelibs_export.h"
00028
00029 class TDEApplication;
00030
00037 class TDECORE_EXPORT KAppDCOPInterface : virtual public DCOPObject
00038 {
00039 K_DCOP
00040
00041 public:
00047 KAppDCOPInterface( TDEApplication * theKapp );
00052 ~KAppDCOPInterface();
00053 k_dcop:
00057 void disableSessionManagement();
00058
00059 TQCString startupId();
00060 TQCString caption();
00061
00062 void quit();
00063
00064 void reparseConfiguration();
00065
00066 void updateUserTimestamp( ulong time );
00072 void sendFakeKey( unsigned int keyCode);
00073
00074 private:
00075 TDEApplication *m_TDEApplication;
00076 };
00077
00078 #endif
00079
00080