|
|
|
@ -947,6 +947,7 @@ namespace ImGui |
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
// Flags for ImGui::Begin()
|
|
|
|
|
// (Those are per-window flags. There are shared flags in ImGuiIO: io.ConfigWindowsResizeFromEdges and io.ConfigWindowsMoveFromTitleBarOnly)
|
|
|
|
|
enum ImGuiWindowFlags_ |
|
|
|
|
{ |
|
|
|
|
ImGuiWindowFlags_None = 0, |
|
|
|
@ -984,6 +985,7 @@ enum ImGuiWindowFlags_ |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// Flags for ImGui::InputText()
|
|
|
|
|
// (Those are per-item flags. There are shared flags in ImGuiIO: io.ConfigInputTextCursorBlink and io.ConfigInputTextEnterKeepActive)
|
|
|
|
|
enum ImGuiInputTextFlags_ |
|
|
|
|
{ |
|
|
|
|
ImGuiInputTextFlags_None = 0, |
|
|
|
@ -1678,6 +1680,7 @@ enum ImGuiColorEditFlags_ |
|
|
|
|
|
|
|
|
|
// Flags for DragFloat(), DragInt(), SliderFloat(), SliderInt() etc.
|
|
|
|
|
// We use the same sets of flags for DragXXX() and SliderXXX() functions as the features are the same and it makes it easier to swap them.
|
|
|
|
|
// (Those are per-item flags. There are shared flags in ImGuiIO: io.ConfigDragClickToInputText)
|
|
|
|
|
enum ImGuiSliderFlags_ |
|
|
|
|
{ |
|
|
|
|
ImGuiSliderFlags_None = 0, |
|
|
|
|