mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
20 lines
274 B
C
20 lines
274 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QComboBox>
|
||
|
|
#include <QDialog>
|
||
|
|
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
class basic_mouse_settings_dialog : public QDialog
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
basic_mouse_settings_dialog(QWidget* parent = nullptr);
|
||
|
|
|
||
|
|
private:
|
||
|
|
void reset_config();
|
||
|
|
|
||
|
|
std::vector<QComboBox*> m_combos;
|
||
|
|
};
|