JoystickButton.h 344 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef JOYSTICKBUTTON_H
#define JOYSTICKBUTTON_H

#include <QWidget>

namespace Ui
{
class JoystickButton;
}

class JoystickButton : public QWidget
{
    Q_OBJECT
14

15 16 17
public:
    explicit JoystickButton(int id, QWidget *parent = 0);
    virtual ~JoystickButton();
18

19 20 21 22 23
private:
    int id;
    Ui::JoystickButton *m_ui;
};
#endif // JOYSTICKBUTTON_H