mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
35 lines
719 B
C++
35 lines
719 B
C++
#ifndef CONTROLLERCONFIGDIALOG_H
|
|
#define CONTROLLERCONFIGDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QAbstractButton>
|
|
#include <QXmlStreamReader>
|
|
|
|
#include "PH_HidUnix.h"
|
|
#include "Config.h"
|
|
|
|
|
|
namespace Ui {
|
|
class ControllerConfigDialog;
|
|
}
|
|
|
|
class ControllerConfigDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ControllerConfigDialog(QWidget *parent = 0);
|
|
~ControllerConfigDialog();
|
|
|
|
static QString ReadElementValue(QXmlStreamReader &Rxml);
|
|
|
|
private slots:
|
|
void on_buttonBox_clicked(QAbstractButton *button);
|
|
void on_tableView_doubleClicked(const QModelIndex &index);
|
|
|
|
private:
|
|
CInputBindingManager* m_inputManager;
|
|
Ui::ControllerConfigDialog *ui;
|
|
};
|
|
|
|
#endif // CONTROLLERCONFIGDIALOG_H
|