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.
44 lines
1.0 KiB
44 lines
1.0 KiB
#ifndef KEYS_H
|
|
#define KEYS_H
|
|
|
|
#include <tqmap.h>
|
|
#include <tdeaction.h>
|
|
|
|
#include "mp_interface.h"
|
|
|
|
|
|
class KeyData : public TQObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KeyData(uint maxNb, uint nbActions, const ActionData *,
|
|
TQObject *parent);
|
|
void setKeycodes(uint nb, uint i, const int *keycodes);
|
|
|
|
void setCurrentNb(uint nb);
|
|
void clear();
|
|
void createActionCollection(uint index, TQWidget *receiver);
|
|
void setEnabled(uint index, bool enabled);
|
|
void addKeys(KKeyDialog &);
|
|
void save();
|
|
|
|
void keyEvent(TQKeyEvent *e, bool pressed);
|
|
|
|
private:
|
|
uint _maxNb;
|
|
TQMemArray<ActionData> _data;
|
|
TQMap<int, TQMap<int, TQMemArray<int> > > _keycodes;
|
|
TQMemArray<TDEActionCollection *> _cols;
|
|
struct SpecialData {
|
|
bool enabled;
|
|
TQSignal *pressed, *released;
|
|
};
|
|
TQMap<TDEAction *, SpecialData> _specActions;
|
|
|
|
TQString group() const
|
|
{ return TQString("Keys (%1 humans)").arg(_cols.size()); }
|
|
};
|
|
|
|
#endif // KEYS_H
|