// ------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
// ------------------------------------------------------------------------------
using System;
using HexaGen.Runtime;
using System.Numerics;
namespace Dalamud.Bindings.ImGui
{
///
/// To be documented.
///
[Flags]
public enum ImGuiInputTextFlags : int
{
///
/// To be documented.
///
None = unchecked(0),
///
/// Allow 0123456789.+-*
///
CharsDecimal = unchecked(1),
///
/// Allow 0123456789ABCDEFabcdef
///
CharsHexadecimal = unchecked(2),
///
/// Turn a..z into A..Z
///
CharsUppercase = unchecked(4),
///
/// Filter out spaces, tabs
///
CharsNoBlank = unchecked(8),
///
/// Select entire text when first taking mouse focus
///
AutoSelectAll = unchecked(16),
///
/// Return 'true' when Enter is pressed (as opposed to every time the value was modified). Consider using IsItemDeactivatedAfterEdit() instead!
///
EnterReturnsTrue = unchecked(32),
///
/// Callback on pressing TAB (for completion handling)
///
CallbackCompletion = unchecked(64),
///
/// Callback on pressing UpDown arrows (for history handling)
///
CallbackHistory = unchecked(128),
///
/// Callback on each iteration. User code may query cursor position, modify text buffer.
///
CallbackAlways = unchecked(256),
///
/// Callback on character inputs to replace or discard them. Modify 'EventChar' to replace or discard, or return 1 in callback to discard.
///
CallbackCharFilter = unchecked(512),
///
/// Pressing TAB input a '\t' character into the text field
///
AllowTabInput = unchecked(1024),
///
/// In multi-line mode, validate with Enter, add new line with Ctrl+Enter (default is opposite: validate with Ctrl+Enter, add line with Enter).
///
CtrlEnterForNewLine = unchecked(2048),
///
/// Disable following the cursor horizontally
///
NoHorizontalScroll = unchecked(4096),
///
/// Overwrite mode
///
AlwaysOverwrite = unchecked(8192),
///
/// Read-only mode
///
ReadOnly = unchecked(16384),
///
/// Password mode, display all characters as '*', disable copy
///
Password = unchecked(32768),
///
/// Disable undoredo. Note that input text owns the text data while active, if you want to provide your own undoredo stack you need e.g. to call ClearActiveID().
///
NoUndoRedo = unchecked(65536),
///
/// Allow 0123456789.+-*eE (Scientific notation input)
///
CharsScientific = unchecked(131072),
///
/// Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow. Notify when the string wants to be resized (for string types which hold a cache of their Size). You will be provided a new BufSize in the callback and NEED to honor it. (see misccppimgui_stdlib.h for an example of using this)
///
CallbackResize = unchecked(262144),
///
/// Callback on any edit. Note that InputText() already returns true on edit + you can always use IsItemEdited(). The callback is useful to manipulate the underlying buffer while focus is active.
///
CallbackEdit = unchecked(524288),
}
}