blob: 2fd16bd44aaf2c0ae5b48a56b0aed908ff216b08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _TDEGLOBALACCEL_EMB_H
#define _TDEGLOBALACCEL_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 // _TDEGLOBALACCEL_EMB_H
|