|
|
@ -645,6 +645,11 @@ enum ImGuiCol_ |
|
|
|
ImGuiCol_TextSelectedBg, |
|
|
|
ImGuiCol_ModalWindowDarkening, // darken entire screen when a modal window is active
|
|
|
|
ImGuiCol_COUNT |
|
|
|
|
|
|
|
// Obsolete names (will be removed)
|
|
|
|
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS |
|
|
|
, ImGuiCol_Column = ImGuiCol_Separator, ImGuiCol_ColumnHovered = ImGuiCol_SeparatorHovered, ImGuiCol_ColumnActive = ImGuiCol_SeparatorActive |
|
|
|
#endif |
|
|
|
}; |
|
|
|
|
|
|
|
// Enumeration for PushStyleVar() / PopStyleVar() to temporarily modify the ImGuiStyle structure.
|
|
|
@ -721,7 +726,7 @@ enum ImGuiCond_ |
|
|
|
ImGuiCond_FirstUseEver = 1 << 2, // Set the variable if the window has no saved data (if doesn't exist in the .ini file)
|
|
|
|
ImGuiCond_Appearing = 1 << 3 // Set the variable if the window is appearing after being hidden/inactive (or the first time)
|
|
|
|
|
|
|
|
// Obsolete names (will be obsolete)
|
|
|
|
// Obsolete names (will be removed)
|
|
|
|
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS |
|
|
|
, ImGuiSetCond_Always = ImGuiCond_Always, ImGuiSetCond_Once = ImGuiCond_Once, ImGuiSetCond_FirstUseEver = ImGuiCond_FirstUseEver, ImGuiSetCond_Appearing = ImGuiCond_Appearing |
|
|
|
#endif |
|
|
|