mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
InputCommon: Allow Wii remote extension to be set with an input expression.
This commit is contained in:
@ -7,6 +7,7 @@
|
||||
#include "DolphinQt/Config/Mapping/MappingWidget.h"
|
||||
|
||||
class QComboBox;
|
||||
class QLabel;
|
||||
class WiimoteEmuExtension;
|
||||
|
||||
class WiimoteEmuGeneral final : public MappingWidget
|
||||
@ -21,12 +22,19 @@ private:
|
||||
void LoadSettings() override;
|
||||
void SaveSettings() override;
|
||||
void CreateMainLayout();
|
||||
void Connect(MappingWindow* window);
|
||||
void Connect();
|
||||
|
||||
// Index changed by code/expression.
|
||||
void OnAttachmentChanged(int index);
|
||||
// Selection chosen by user.
|
||||
void OnAttachmentSelected(int index);
|
||||
|
||||
void ConfigChanged();
|
||||
void Update();
|
||||
|
||||
// Extensions
|
||||
QComboBox* m_extension_combo;
|
||||
QLabel* m_extension_combo_dynamic_indicator;
|
||||
|
||||
WiimoteEmuExtension* m_extension_widget;
|
||||
};
|
||||
|
Reference in New Issue
Block a user