Elaztek Developer Hub
Blamite Game Engine - blam!  00406.12.10.23.1457.blamite
The core library for the Blamite Game Engine.
imgui_style_editor.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
9 {
10 public:
11  void Draw()
12  {
13  if (show)
14  {
15  if (ImGui::Begin("ImGui Style Editor", &show))
16  {
18  }
19  ImGui::End();
20  }
21  }
22 };
BlamImGuiWindow::show
bool show
Controls whether or not the group should be shown. May not be used in all groups.
Definition: imgui.h:34
ImGui::End
IMGUI_API void End()
Definition: imgui.cpp:6016
BlamImGuiWindow
Class representing an ImGUI window.
Definition: imgui.h:31
ImGui::Begin
IMGUI_API bool Begin(const char *name, bool *p_open=NULL, ImGuiWindowFlags flags=0)
Definition: imgui.cpp:5397
BlamImGuiWindow_ImGuiStyleEditorWindow::Draw
void Draw()
Draws the contents of the group.
Definition: imgui_style_editor.hpp:11
ImGui::ShowStyleEditor
IMGUI_API void ShowStyleEditor(ImGuiStyle *ref=NULL)
Definition: imgui_demo.cpp:3165
imgui.h
BlamImGuiWindow_ImGuiStyleEditorWindow
Wrapper for ImGui's built-in style editor.
Definition: imgui_style_editor.hpp:8