mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
This commit is contained in:
parent
5ea47d9560
commit
62d6be3747
7 changed files with 32 additions and 39 deletions
|
|
@ -912,10 +912,13 @@ enum ImGuiInputEventType
|
|||
ImGuiInputEventType_COUNT
|
||||
};
|
||||
|
||||
// Extend ImGuiInputSource
|
||||
enum ImGuiInputSourcePrivate_
|
||||
enum ImGuiInputSource
|
||||
{
|
||||
ImGuiInputSource_Clipboard = ImGuiInputSource_Gamepad + 1, // Currently only used by InputText()
|
||||
ImGuiInputSource_None = 0,
|
||||
ImGuiInputSource_Mouse,
|
||||
ImGuiInputSource_Keyboard,
|
||||
ImGuiInputSource_Gamepad,
|
||||
ImGuiInputSource_Clipboard, // Currently only used by InputText()
|
||||
ImGuiInputSource_Nav, // Stored in g.ActiveIdSource only
|
||||
ImGuiInputSource_COUNT
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue