summaryrefslogtreecommitdiff
path: root/my_imgui_internal_widgets.h
diff options
context:
space:
mode:
authorFox Caminiti <fox@foxcam.net>2022-12-16 20:16:43 -0500
committerFox Caminiti <fox@foxcam.net>2022-12-16 20:16:43 -0500
commitbedd6906eabdd513042d6a178d4dc56a3a41d1d3 (patch)
tree2bcbd3e46ae61e583707a2ccc5b3f5cfeacb61a8 /my_imgui_internal_widgets.h
parentcdb9e1f7240cb0716b7d99df5e1fd7c3fc3407a8 (diff)
v3, file/build organization
Diffstat (limited to 'my_imgui_internal_widgets.h')
-rw-r--r--my_imgui_internal_widgets.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/my_imgui_internal_widgets.h b/my_imgui_internal_widgets.h
deleted file mode 100644
index 2841c2d..0000000
--- a/my_imgui_internal_widgets.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-#include <climits>
-
-#include <imgui.h>
-
-// NOTE(fox): Appending to the standard ImGui namespace so I don't have to convert all the functions to ImGui::Function()
-namespace ImGui {
- IMGUI_API ImVec2 GetLocalMouseDragDelta(ImGuiMouseButton button, float lock_threshold);
- IMGUI_API void SetLocalMouseDragDelta(ImGuiMouseButton button, ImVec2 DeltaOffset);
- IMGUI_API bool SliderLevels(const char* label, const char* label2, const char* label3, void* p_data, void* p_min, void* p_max);
- IMGUI_API bool TestLine(ImVec2 P1, ImVec2 P2);
- IMGUI_API bool BezierInteractive(ImVec2 p0, ImVec2 p1, ImVec2 p2, ImVec2 p3);
- IMGUI_API bool LineInteractive(ImVec2 p0, ImVec2 p1);
- IMGUI_API ImVec2 RatioToPoint(ImVec2 a, ImVec2 b, float ratio);
-}
-