![]() |
Blamite Game Engine - blam!
00296.01.12.21.0102.blamite
The core library for the Blamite Game Engine.
|
Namespace containing general-purpose widgets used in multiple ImGUI drawing groups/windows. More...
Classes | |
class | DevToolsBar |
Class for the original menu bar shown with ImGUI. More... | |
class | DynamicMenuBar |
Class for the main ImGUI menu bar. More... | |
class | MenuBar |
Class for the main ImGUI menu bar. More... | |
Functions | |
BLAM void | ShowHelpMarker (const char *desc) |
Shows a help indicator. More... | |
BLAM void | ShowNYITooltip () |
Shows a tooltip with the text Not yet implemented upon hovered. More... | |
BLAM void | ShowBasicHoveredTooltip (const char *text) |
Shows a tooltip with the specified text upon hovering over the control it is applied to. More... | |
Namespace containing general-purpose widgets used in multiple ImGUI drawing groups/windows.
void Blam::DebugUI::Widgets::ShowBasicHoveredTooltip | ( | const char * | text | ) |
Shows a tooltip with the specified text upon hovering over the control it is applied to.
This will apply to whatever ImGUI control was created immediately before calling this function. See functions that reference this if you are unsure how to use it.
void Blam::DebugUI::Widgets::ShowHelpMarker | ( | const char * | desc | ) |
Shows a help indicator.
Adds a darker-colored (?)
that, when hovered, shows additional information in a tooltip. The text is automatically wrapped if it gets too long.
desc | - The text to show upon hovering over the help marker. |
void Blam::DebugUI::Widgets::ShowNYITooltip | ( | ) |
Shows a tooltip with the text Not yet implemented
upon hovered.
This will apply to whatever ImGUI control was created immediately before calling this function. See functions that reference this if you are unsure how to use it.