From 56ed7430b0d3cda2e705fee12934fd9d5ff26da6 Mon Sep 17 00:00:00 2001 From: omar Date: Tue, 20 Sep 2022 16:59:24 +0200 Subject: [PATCH] Destroyed ImGui Widgets (markdown) --- ImGui-Widgets.md | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 ImGui-Widgets.md diff --git a/ImGui-Widgets.md b/ImGui-Widgets.md deleted file mode 100644 index f8b8432..0000000 --- a/ImGui-Widgets.md +++ /dev/null @@ -1,47 +0,0 @@ -**(THIS DRAFT HAS BEEN ABANDONED BY ITS CREATOR)** - -# Text -## ImGui::Text - -Draws formatted text. The format options are like `printf`. -### Function Signature -```c++ -IMGUI_API void Text(const char* fmt, ...); -``` -### Example -```c++ -ImGui::Text("Hello world %f", 42); -``` - -# Main -## ImGui::Button -Draws a button and returns whether it was clicked or not. -### Function Signature -```c++ -IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0, 0)); -``` -### Example -```c++ -if (ImGui::Button("Button")) -{ - printf("Button Clicked"); -} -``` - -# Combo Box - -# Drag Sliders - -# Regular Sliders - -# Trees - -# Selectables - -# Data plotting - -# Menus - -# Tooltips - -# Tables \ No newline at end of file