diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-15 02:50:08 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-15 02:50:08 +0000 |
commit | b3378e7ed11f7f4ec16e1eb268768791d6861331 (patch) | |
tree | 4dd9beb30173a6e9707410c4e0cd9f799fb4e9de /ui/imgui_extras.h | |
parent | Wrap imgui_intenal if requested (diff) | |
download | ilt-b3378e7ed11f7f4ec16e1eb268768791d6861331.tar.bz2 ilt-b3378e7ed11f7f4ec16e1eb268768791d6861331.tar.xz ilt-b3378e7ed11f7f4ec16e1eb268768791d6861331.zip |
Add ImGui wrappers for creating a toolbar docked to a viewport edge
Based on, but simplified, code for BeginMainMenuBar.
Diffstat (limited to 'ui/imgui_extras.h')
-rw-r--r-- | ui/imgui_extras.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/imgui_extras.h b/ui/imgui_extras.h new file mode 100644 index 0000000..0babaa3 --- /dev/null +++ b/ui/imgui_extras.h @@ -0,0 +1,10 @@ +#include "imgui_wrap.h" + +namespace IltGui { + // NOLINTBEGIN(readability-identifier-naming) + bool BeginToolbar(const char * name, ImGuiViewport * viewport, ImGuiDir dir, float axisSize, + ImGuiWindowFlags windowFlags = 0); + bool BeginToolbar(const char * name, ImGuiDir dir, float axisSize, ImGuiWindowFlags windowFlags = 0); + void EndToolbar(); + // NOLINTEND(readability-identifier-naming) +} |