KDECore
kappdcopiface.h
Go to the documentation of this file.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 <qstringlist.h>
00025 #include <qcstring.h>
00026 #include <dcopref.h>
00027 #include "kdelibs_export.h"
00028
00029 class KApplication;
00030
00037 class KDECORE_EXPORT KAppDCOPInterface : virtual public DCOPObject
00038 {
00039 K_DCOP
00040
00041 public:
00047 KAppDCOPInterface( KApplication * theKapp );
00052 ~KAppDCOPInterface();
00053 k_dcop:
00057 void disableSessionManagement();
00058
00059 QCString startupId();
00060 QCString caption();
00061
00062 void quit();
00063
00064 void reparseConfiguration();
00065
00066 void updateUserTimestamp( ulong time );
00067
00068 private:
00069 KApplication *m_KApplication;
00070 };
00071
00072 #endif
00073
00074