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.
19 lines
361 B
19 lines
361 B
#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
|