~mr-unwell2006/mixxx/mixxx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/***************************************************************************
                          mixxxkeyboard.h  -  description
                             -------------------
    begin                : Wed Dec 2 2003
    copyright            : (C) 2003 by Tue Haste Andersen
    email                :
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef MIXXXKEYBOARD_H
#define MIXXXKEYBOARD_H

#include <qobject.h>
#include <qevent.h>
#include <qkeysequence.h>
//Added by qt3to4:
#include <QKeyEvent>
#include "configobject.h"

/**
 * This class provides handling of keyboard events
 */

class ControlObject;

class MixxxKeyboard : public QObject
{
    Q_OBJECT
public:
    MixxxKeyboard(ConfigObject<ConfigValueKbd> *pKbdConfigObject, QObject *parent=0, const char *name=0);
    ~MixxxKeyboard();
    /** Event filter */
    bool eventFilter(QObject *obj, QEvent *e);

    ConfigObject<ConfigValueKbd>* getKeyboardConfig();

private:
    bool kbdPress(QKeySequence k, bool release, bool autoRepeat);
    /** Returns a valid QKeySequency with modifier keys from a QKeyEvent */
    QKeySequence getKeySeq(QKeyEvent *e);
    /** List containing keys which is currently pressed */
    QList<int> m_qActiveKeyList;
    /** Pointer to keyboard config object */
    ConfigObject<ConfigValueKbd> *m_pKbdConfigObject;
};

#endif