blob: 9ac6a4da9f9376e0860b405a774ceea3dc480c64 (
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
|
using System;
using System.Numerics;
using Dalamud.Interface.Internal;
using Dalamud.Interface.Utility;
using Dalamud.Interface.Windowing;
using Dalamud.Plugin.Services;
using ImGuiNET;
namespace SamplePlugin.Windows;
public class MainWindow : Window, IDisposable
{
private string GoatImagePath;
private Plugin Plugin;
// We give this window a hidden ID using ##
// So that the user will see "My Amazing Window" as window title,
// but for ImGui the ID is "My Amazing Window##With a hidden ID"
public MainWindow(Plugin plugin, string goatImagePath)
: base("My Amazing Window##With a hidden ID", ImGuiWindowFlags.NoScrollbar | ImGuiWindowFlags.NoScrollWithMouse)
{
SizeConstraints = new WindowSizeConstraints
{
MinimumSize = new Vector2(375, 330),
MaximumSize = new Vector2(float.MaxValue, float.MaxValue)
};
GoatImagePath = goatImagePath;
Plugin = plugin;
}
public void Dispose() { }
public override void Draw()
{
ImGui.Text($"The random config bool is {Plugin.Configuration.SomePropertyToBeSavedAndWithADefault}");
if (ImGui.Button("Show Settings"))
{
Plugin.ToggleConfigUI();
}
ImGui.Spacing();
ImGui.Text("Have a goat:");
var goatImage = Plugin.TextureProvider.GetFromFile(GoatImagePath).GetWrapOrDefault();
if (goatImage != null)
{
ImGuiHelpers.ScaledIndent(55f);
ImGui.Image(goatImage.ImGuiHandle, new Vector2(goatImage.Width, goatImage.Height));
ImGuiHelpers.ScaledIndent(-55f);
}
else
{
ImGui.Text("Image not found.");
}
}
}
|