blob: 8a5352817a12bcce0a7e0ce5f1b29e582feae643 (
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 TDEGlobalAccelPrivate
{
public:
TDEGlobalAccelPrivate();
virtual void setEnabled( bool bEnabled );
virtual bool connectKey( KAccelAction&, KKeySequence );
virtual bool disconnectKey( KAccelAction&, KKeySequence );
};
#endif // _KGLOBALACCEL_EMB_H
|