aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx/UI/Models/Input/HotkeyConfig.cs
blob: b5f53508bd61dda8be0cbcce91e3faf473006e1d (plain) (blame)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
using Ryujinx.Ava.UI.ViewModels;
using Ryujinx.Common.Configuration.Hid;

namespace Ryujinx.Ava.UI.Models.Input
{
    public class HotkeyConfig : BaseModel
    {
        private Key _toggleVsync;
        public Key ToggleVsync
        {
            get => _toggleVsync;
            set
            {
                _toggleVsync = value;
                OnPropertyChanged();
            }
        }

        private Key _screenshot;
        public Key Screenshot
        {
            get => _screenshot;
            set
            {
                _screenshot = value;
                OnPropertyChanged();
            }
        }

        private Key _showUI;
        public Key ShowUI
        {
            get => _showUI;
            set
            {
                _showUI = value;
                OnPropertyChanged();
            }
        }

        private Key _pause;
        public Key Pause
        {
            get => _pause;
            set
            {
                _pause = value;
                OnPropertyChanged();
            }
        }

        private Key _toggleMute;
        public Key ToggleMute
        {
            get => _toggleMute;
            set
            {
                _toggleMute = value;
                OnPropertyChanged();
            }
        }

        private Key _resScaleUp;
        public Key ResScaleUp
        {
            get => _resScaleUp;
            set
            {
                _resScaleUp = value;
                OnPropertyChanged();
            }
        }

        private Key _resScaleDown;
        public Key ResScaleDown
        {
            get => _resScaleDown;
            set
            {
                _resScaleDown = value;
                OnPropertyChanged();
            }
        }

        private Key _volumeUp;
        public Key VolumeUp
        {
            get => _volumeUp;
            set
            {
                _volumeUp = value;
                OnPropertyChanged();
            }
        }

        private Key _volumeDown;
        public Key VolumeDown
        {
            get => _volumeDown;
            set
            {
                _volumeDown = value;
                OnPropertyChanged();
            }
        }

        public HotkeyConfig(KeyboardHotkeys config)
        {
            if (config != null)
            {
                ToggleVsync = config.ToggleVsync;
                Screenshot = config.Screenshot;
                ShowUI = config.ShowUI;
                Pause = config.Pause;
                ToggleMute = config.ToggleMute;
                ResScaleUp = config.ResScaleUp;
                ResScaleDown = config.ResScaleDown;
                VolumeUp = config.VolumeUp;
                VolumeDown = config.VolumeDown;
            }
        }

        public KeyboardHotkeys GetConfig()
        {
            var config = new KeyboardHotkeys
            {
                ToggleVsync = ToggleVsync,
                Screenshot = Screenshot,
                ShowUI = ShowUI,
                Pause = Pause,
                ToggleMute = ToggleMute,
                ResScaleUp = ResScaleUp,
                ResScaleDown = ResScaleDown,
                VolumeUp = VolumeUp,
                VolumeDown = VolumeDown,
            };

            return config;
        }
    }
}