blob: 5e5145d66218ae34b96107c4c99e5efefa361fd4 (
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 "tdeaccelbase.h"
#include "tdeshortcut.h"
class TDEGlobalAccelPrivate
{
public:
TDEGlobalAccelPrivate();
virtual void setEnabled( bool bEnabled );
virtual bool connectKey( TDEAccelAction&, KKeySequence );
virtual bool disconnectKey( TDEAccelAction&, KKeySequence );
};
#endif // _KGLOBALACCEL_EMB_H
|