You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/khotkeys/app/app.h

44 lines
948 B

/****************************************************************************
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