-
Notifications
You must be signed in to change notification settings - Fork 4
/
Settings.cs
53 lines (41 loc) · 1.4 KB
/
Settings.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using System.Xml.Linq;
namespace Echoes
{
public class Settings
{
public int volume { get; set; }
public int repeat { get; set; }
public int visualisationStyle { get; set; }
public int visualFps { get; set; }
public int fontSizePercentage { get; set; }
public float hotkeyVolumeIncrement { get; set; }
public float hotkeyTransposeIncrement { get; set; }
public bool hotkeysAllowed { get; set; }
public bool autoAdvance { get; set; }
public bool autoShuffle { get; set; }
public bool trackChangePopup { get; set; }
public bool saveTranspose { get; set; }
public bool showWaveform { get; set; }
public bool normalize { get; set; }
public bool suppressHotkeys { get; set; }
public string midiSfLocation { get; set; }
public Font font1 { get; set; }
public Font font2 { get; set; }
ColorScheme currentColorScheme { get; set; }
List<ColorScheme> savedColorSchemes { get; set; }
List<HotkeyData> hotkeys { get; set; }
List<ColumnInfo> currentColumns { get; set; }
public void SaveToXML(string xmlPath)
{
}
public void LoadFromXml(string xmlPath)
{
}
}
}