blob: d386fc3b985eddc65ad19e12e749254b9f75cbb2 (
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
|
using System;
using System.Numerics;
using Dalamud.Interface.Windowing;
using ImGuiNET;
namespace DiscordToXIV.Windows;
public class ConfigWindow : Window, IDisposable
{
private Configuration Configuration;
public ConfigWindow(Plugin plugin) : base("A Wonderful Configuration Window###With a constant ID")
{
Size = new Vector2(232, 90);
SizeCondition = ImGuiCond.Always;
Configuration = plugin.Configuration;
}
public void Dispose() { }
public override void Draw()
{
var configValue = Configuration.SomePropertyToBeSavedAndWithADefault;
if (ImGui.Checkbox("Random Config Bool", ref configValue))
{
Configuration.SomePropertyToBeSavedAndWithADefault = configValue;
Configuration.Save();
}
var movable = Configuration.IsConfigWindowMovable;
if (ImGui.Checkbox("Movable Config Window", ref movable))
{
Configuration.IsConfigWindowMovable = movable;
Configuration.Save();
}
}
}
|