blob: 859a533624f7c7371e6c55c789e6f6cf34ee885d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _KGLOBALACCEL_EMB_H
#define _KGLOBALACCEL_EMB_H
#include "kaccelbase.h"
#include "kshortcut.h"
class KGlobalAccelPrivate
{
public:
KGlobalAccelPrivate();
virtual void setEnabled( bool bEnabled );
virtual bool connectKey( KAccelAction&, KKeySequence );
virtual bool disconnectKey( KAccelAction&, KKeySequence );
};
#endif // _KGLOBALACCEL_EMB_H
|