00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef _KHOTKEYS_KDED_H_
00012 #define _KHOTKEYS_KDED_H_
00013
00014 #include <kdedmodule.h>
00015 #include <dcopclient.h>
00016
00017 namespace KHotKeys
00018 {
00019
00020 class Action_data_group;
00021
00022 class KHotKeysModule
00023 : public KDEDModule
00024 {
00025 Q_OBJECT
00026 K_DCOP
00027 k_dcop:
00028 ASYNC reread_configuration();
00029 ASYNC quit();
00030 public:
00031 KHotKeysModule( const TQCString& obj );
00032 virtual ~KHotKeysModule();
00033 private:
00034 Action_data_group* actions_root;
00035 DCOPClient client;
00036 };
00037
00038
00039
00040
00041
00042 }
00043
00044 #endif