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
2628 2629 2630 |
# File 'lib/imgui.rb', line 2628 def ClearSelection() ImGui::ImGuiInputTextCallbackData_ClearSelection(self) end |
#DeleteChars(pos, bytes_count) ⇒ Object
2612 2613 2614 |
# File 'lib/imgui.rb', line 2612 def DeleteChars(pos, bytes_count) ImGui::ImGuiInputTextCallbackData_DeleteChars(self, pos, bytes_count) end |
#HasSelection ⇒ Object
2632 2633 2634 |
# File 'lib/imgui.rb', line 2632 def HasSelection() ImGui::ImGuiInputTextCallbackData_HasSelection(self) end |
#InsertChars(pos, text, text_end = nil) ⇒ Object
2616 2617 2618 |
# File 'lib/imgui.rb', line 2616 def InsertChars(pos, text, text_end = nil) ImGui::ImGuiInputTextCallbackData_InsertChars(self, pos, text, text_end) end |
#SelectAll ⇒ Object
2620 2621 2622 |
# File 'lib/imgui.rb', line 2620 def SelectAll() ImGui::ImGuiInputTextCallbackData_SelectAll(self) end |
#SetSelection(s, e) ⇒ Object
2624 2625 2626 |
# File 'lib/imgui.rb', line 2624 def SetSelection(s, e) ImGui::ImGuiInputTextCallbackData_SetSelection(self, s, e) end |