-
Notifications
You must be signed in to change notification settings - Fork 38
/
imgui-knobs.h
71 lines (61 loc) · 1.83 KB
/
imgui-knobs.h
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
#pragma once
#include <cstdlib>
#include <imgui.h>
typedef int ImGuiKnobFlags;
enum ImGuiKnobFlags_ {
ImGuiKnobFlags_NoTitle = 1 << 0,
ImGuiKnobFlags_NoInput = 1 << 1,
ImGuiKnobFlags_ValueTooltip = 1 << 2,
ImGuiKnobFlags_DragHorizontal = 1 << 3,
ImGuiKnobFlags_DragVertical = 1 << 4,
};
typedef int ImGuiKnobVariant;
enum ImGuiKnobVariant_ {
ImGuiKnobVariant_Tick = 1 << 0,
ImGuiKnobVariant_Dot = 1 << 1,
ImGuiKnobVariant_Wiper = 1 << 2,
ImGuiKnobVariant_WiperOnly = 1 << 3,
ImGuiKnobVariant_WiperDot = 1 << 4,
ImGuiKnobVariant_Stepped = 1 << 5,
ImGuiKnobVariant_Space = 1 << 6,
};
namespace ImGuiKnobs {
struct color_set {
ImColor base;
ImColor hovered;
ImColor active;
color_set(ImColor base, ImColor hovered, ImColor active)
: base(base), hovered(hovered), active(active) {}
color_set(ImColor color) {
base = color;
hovered = color;
active = color;
}
};
bool Knob(
const char *label,
float *p_value,
float v_min,
float v_max,
float speed = 0,
const char *format = "%.3f",
ImGuiKnobVariant variant = ImGuiKnobVariant_Tick,
float size = 0,
ImGuiKnobFlags flags = 0,
int steps = 10,
float angle_min = -1,
float angle_max = -1);
bool KnobInt(
const char *label,
int *p_value,
int v_min,
int v_max,
float speed = 0,
const char *format = "%i",
ImGuiKnobVariant variant = ImGuiKnobVariant_Tick,
float size = 0,
ImGuiKnobFlags flags = 0,
int steps = 10,
float angle_min = -1,
float angle_max = -1);
}// namespace ImGuiKnobs