Class: ImGuiSelectionBasicStorage

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

Instance Method Summary collapse

Instance Method Details

#ApplyRequests(ms_io) ⇒ Object



2927
2928
2929
# File 'lib/imgui.rb', line 2927

def ApplyRequests(ms_io)
  ImGui::ImGuiSelectionBasicStorage_ApplyRequests(self, ms_io)
end

#ClearObject



2935
2936
2937
# File 'lib/imgui.rb', line 2935

def Clear()
  ImGui::ImGuiSelectionBasicStorage_Clear(self)
end

#Contains(id) ⇒ Object



2931
2932
2933
# File 'lib/imgui.rb', line 2931

def Contains(id)
  ImGui::ImGuiSelectionBasicStorage_Contains(self, id)
end

#GetNextSelectedItem(opaque_it, out_id) ⇒ Object



2947
2948
2949
# File 'lib/imgui.rb', line 2947

def GetNextSelectedItem(opaque_it, out_id)
  ImGui::ImGuiSelectionBasicStorage_GetNextSelectedItem(self, opaque_it, out_id)
end

#GetStorageIdFromIndex(idx) ⇒ Object



2951
2952
2953
# File 'lib/imgui.rb', line 2951

def GetStorageIdFromIndex(idx)
  ImGui::ImGuiSelectionBasicStorage_GetStorageIdFromIndex(self, idx)
end

#SetItemSelected(id, selected) ⇒ Object



2943
2944
2945
# File 'lib/imgui.rb', line 2943

def SetItemSelected(id, selected)
  ImGui::ImGuiSelectionBasicStorage_SetItemSelected(self, id, selected)
end

#Swap(r) ⇒ Object



2939
2940
2941
# File 'lib/imgui.rb', line 2939

def Swap(r)
  ImGui::ImGuiSelectionBasicStorage_Swap(self, r)
end