Class: ImGuiSelectionBasicStorage
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- ImGuiSelectionBasicStorage
- Defined in:
- lib/imgui.rb
Instance Method Summary collapse
- #ApplyRequests(ms_io) ⇒ Object
- #Clear ⇒ Object
- #Contains(id) ⇒ Object
- #GetNextSelectedItem(opaque_it, out_id) ⇒ Object
- #GetStorageIdFromIndex(idx) ⇒ Object
- #SetItemSelected(id, selected) ⇒ Object
- #Swap(r) ⇒ Object
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 |
#Clear ⇒ Object
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 |