Class: ImGuiInputTextCallbackData

Inherits:
FFI::Struct
  • Object
show all
Defined in:
lib/imgui.rb

Instance Method Summary collapse

Instance Method Details

#ClearSelectionObject



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

#HasSelectionObject



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

#SelectAllObject



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