Class: ImGuiInputTextCallbackData
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- ImGuiInputTextCallbackData
- Defined in:
- lib/imgui.rb
Instance Method Summary collapse
- #ClearSelection ⇒ Object
- #DeleteChars(pos, bytes_count) ⇒ Object
- #HasSelection ⇒ Object
- #InsertChars(pos, text, text_end = nil) ⇒ Object
- #SelectAll ⇒ Object
- #SetSelection(s, e) ⇒ Object
Instance Method Details
#ClearSelection ⇒ Object
2612 2613 2614 |
# File 'lib/imgui.rb', line 2612 def ClearSelection() ImGui::ImGuiInputTextCallbackData_ClearSelection(self) end |
#DeleteChars(pos, bytes_count) ⇒ Object
2596 2597 2598 |
# File 'lib/imgui.rb', line 2596 def DeleteChars(pos, bytes_count) ImGui::ImGuiInputTextCallbackData_DeleteChars(self, pos, bytes_count) end |
#HasSelection ⇒ Object
2616 2617 2618 |
# File 'lib/imgui.rb', line 2616 def HasSelection() ImGui::ImGuiInputTextCallbackData_HasSelection(self) end |
#InsertChars(pos, text, text_end = nil) ⇒ Object
2600 2601 2602 |
# File 'lib/imgui.rb', line 2600 def InsertChars(pos, text, text_end = nil) ImGui::ImGuiInputTextCallbackData_InsertChars(self, pos, text, text_end) end |
#SelectAll ⇒ Object
2604 2605 2606 |
# File 'lib/imgui.rb', line 2604 def SelectAll() ImGui::ImGuiInputTextCallbackData_SelectAll(self) end |
#SetSelection(s, e) ⇒ Object
2608 2609 2610 |
# File 'lib/imgui.rb', line 2608 def SetSelection(s, e) ImGui::ImGuiInputTextCallbackData_SetSelection(self, s, e) end |