Qt/WiimoteControllersWidget: Add bluetooth unavailable message

This commit is contained in:
Dentomologist
2023-02-22 20:10:23 -08:00
parent 88fc431dce
commit d18735e82e
6 changed files with 28 additions and 0 deletions

View File

@ -27,6 +27,8 @@ class WiimoteControllersWidget final : public QWidget
public:
explicit WiimoteControllersWidget(QWidget* parent);
void UpdateBluetoothAvailableStatus();
private:
void SaveSettings();
void OnBluetoothPassthroughSyncPressed();
@ -55,4 +57,5 @@ private:
QCheckBox* m_wiimote_speaker_data;
QCheckBox* m_wiimote_ciface;
QPushButton* m_wiimote_refresh;
QLabel* m_bluetooth_unavailable;
};