mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Regenerate bindings
This commit is contained in:
parent
6078c42963
commit
e559ae6b20
310 changed files with 361033 additions and 717041 deletions
|
|
@ -25,102 +25,102 @@ namespace Dalamud.Bindings.ImGui
|
|||
None = unchecked(0),
|
||||
|
||||
/// <summary>
|
||||
/// Allow 0123456789.+-*<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CharsDecimal = unchecked(1),
|
||||
|
||||
/// <summary>
|
||||
/// Allow 0123456789ABCDEFabcdef<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CharsHexadecimal = unchecked(2),
|
||||
|
||||
/// <summary>
|
||||
/// Turn a..z into A..Z<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CharsUppercase = unchecked(4),
|
||||
|
||||
/// <summary>
|
||||
/// Filter out spaces, tabs<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CharsNoBlank = unchecked(8),
|
||||
|
||||
/// <summary>
|
||||
/// Select entire text when first taking mouse focus<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
AutoSelectAll = unchecked(16),
|
||||
|
||||
/// <summary>
|
||||
/// Return 'true' when Enter is pressed (as opposed to every time the value was modified). Consider using IsItemDeactivatedAfterEdit() instead!<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
EnterReturnsTrue = unchecked(32),
|
||||
|
||||
/// <summary>
|
||||
/// Callback on pressing TAB (for completion handling)<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CallbackCompletion = unchecked(64),
|
||||
|
||||
/// <summary>
|
||||
/// Callback on pressing UpDown arrows (for history handling)<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CallbackHistory = unchecked(128),
|
||||
|
||||
/// <summary>
|
||||
/// Callback on each iteration. User code may query cursor position, modify text buffer.<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CallbackAlways = unchecked(256),
|
||||
|
||||
/// <summary>
|
||||
/// Callback on character inputs to replace or discard them. Modify 'EventChar' to replace or discard, or return 1 in callback to discard.<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CallbackCharFilter = unchecked(512),
|
||||
|
||||
/// <summary>
|
||||
/// Pressing TAB input a '\t' character into the text field<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
AllowTabInput = unchecked(1024),
|
||||
|
||||
/// <summary>
|
||||
/// In multi-line mode, validate with Enter, add new line with Ctrl+Enter (default is opposite: validate with Ctrl+Enter, add line with Enter).<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CtrlEnterForNewLine = unchecked(2048),
|
||||
|
||||
/// <summary>
|
||||
/// Disable following the cursor horizontally<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
NoHorizontalScroll = unchecked(4096),
|
||||
|
||||
/// <summary>
|
||||
/// Overwrite mode<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
AlwaysOverwrite = unchecked(8192),
|
||||
|
||||
/// <summary>
|
||||
/// Read-only mode<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
ReadOnly = unchecked(16384),
|
||||
|
||||
/// <summary>
|
||||
/// Password mode, display all characters as '*', disable copy<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
Password = unchecked(32768),
|
||||
|
||||
/// <summary>
|
||||
/// 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().<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
NoUndoRedo = unchecked(65536),
|
||||
|
||||
/// <summary>
|
||||
/// Allow 0123456789.+-*eE (Scientific notation input)<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CharsScientific = unchecked(131072),
|
||||
|
||||
/// <summary>
|
||||
/// 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)<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CallbackResize = unchecked(262144),
|
||||
|
||||
/// <summary>
|
||||
/// 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.<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
CallbackEdit = unchecked(524288),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue