Class: ImGuiSelectionBasicStorage

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

Instance Method Summary collapse

Instance Method Details

#ApplyRequests(ms_io) ⇒ Object



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

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

#ClearObject



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

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

#Contains(id) ⇒ Object



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

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

#GetNextSelectedItem(opaque_it, out_id) ⇒ Object



2963
2964
2965
# File 'lib/imgui.rb', line 2963

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

#GetStorageIdFromIndex(idx) ⇒ Object



2967
2968
2969
# File 'lib/imgui.rb', line 2967

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

#SetItemSelected(id, selected) ⇒ Object



2959
2960
2961
# File 'lib/imgui.rb', line 2959

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

#Swap(r) ⇒ Object



2955
2956
2957
# File 'lib/imgui.rb', line 2955

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