blob: c0a1526eeae6c1ad63461ad1582fa0b00981da0f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 | /****************************************************************************
 KHotKeys
 
 Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
 Distributed under the terms of the GNU General Public License version 2.
 
****************************************************************************/
#ifndef _KHOTKEYS_KDED_H_
#define _KHOTKEYS_KDED_H_
#include <kdedmodule.h>
#include <dcopclient.h>
namespace KHotKeys
{
class Action_data_group;
class KHotKeysModule
    : public KDEDModule
    {
    Q_OBJECT
    K_DCOP
    k_dcop:
        ASYNC reread_configuration();
        ASYNC quit(); 
    public:
        KHotKeysModule( const TQCString& obj );
        virtual ~KHotKeysModule();
    private:
        Action_data_group* actions_root;
        DCOPClient client;
    };
//***************************************************************************
// Inline
//***************************************************************************
} // namespace KHotKeys
#endif
 |