blob: f2ebcb0527c7314884f3bc0acb8220d87474da93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright 2020 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <QWidget>
class ConfigBool;
class ConfigChoice;
class QCheckBox;
class QPushButton;
class ToolTipCheckBox;
class FreeLookWidget final : public QWidget
{
Q_OBJECT
public:
explicit FreeLookWidget(QWidget* parent);
private:
void CreateLayout();
void ConnectWidgets();
void OnFreeLookControllerConfigured();
void LoadSettings();
void SaveSettings();
ConfigBool* m_enable_freelook;
ConfigChoice* m_freelook_control_type;
QPushButton* m_freelook_controller_configure_button;
QCheckBox* m_freelook_background_input;
};
|