blob: e23edfcb1b7be90b74ecc5c53321fca3d9ef8a35 (
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
|
/****************************************************************************
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_APP_H_
#define _KHOTKEYS_APP_H_
#include <kuniqueapplication.h>
namespace KHotKeys
{
class Action_data_group;
class KHotKeysApp
: public KUniqueApplication
{
Q_OBJECT
K_DCOP
k_dcop:
ASYNC reread_configuration();
ASYNC quit();
public:
KHotKeysApp();
virtual ~KHotKeysApp();
private:
Action_data_group* actions_root;
TQObject* delete_helper;
};
//***************************************************************************
// Inline
//***************************************************************************
} // namespace KHotKeys
#endif
|