Fork of mellinoe/ImGui.NET, an ImGui wrapper for .NET, which includes access to internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
808 B

namespace ImGuiNET
{
[System.Flags]
public enum ImGuiInputTextFlags
{
None = 0,
CharsDecimal = 1 << 0,
CharsHexadecimal = 1 << 1,
CharsUppercase = 1 << 2,
CharsNoBlank = 1 << 3,
AutoSelectAll = 1 << 4,
EnterReturnsTrue = 1 << 5,
CallbackCompletion = 1 << 6,
CallbackHistory = 1 << 7,
CallbackAlways = 1 << 8,
CallbackCharFilter = 1 << 9,
AllowTabInput = 1 << 10,
CtrlEnterForNewLine = 1 << 11,
NoHorizontalScroll = 1 << 12,
AlwaysInsertMode = 1 << 13,
ReadOnly = 1 << 14,
Password = 1 << 15,
NoUndoRedo = 1 << 16,
CharsScientific = 1 << 17,
CallbackResize = 1 << 18,
Multiline = 1 << 20,
NoMarkEdited = 1 << 21,
}
}