Class: ImGuiWindow

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

Instance Method Summary collapse

Instance Method Details

#GetID(ptr) ⇒ Object



5436
5437
5438
# File 'lib/imgui.rb', line 5436

def GetID(ptr)
  ImGui::ImGuiWindow_GetID(self, ptr)
end

#GetIDFromPos(p_abs) ⇒ Object



5444
5445
5446
# File 'lib/imgui.rb', line 5444

def GetIDFromPos(p_abs)
  ImGui::ImGuiWindow_GetIDFromPos(self, p_abs)
end

#GetIDFromRectangle(r_abs) ⇒ Object



5448
5449
5450
# File 'lib/imgui.rb', line 5448

def GetIDFromRectangle(r_abs)
  ImGui::ImGuiWindow_GetIDFromRectangle(self, r_abs)
end

#GetIDInt(n) ⇒ Object



5440
5441
5442
# File 'lib/imgui.rb', line 5440

def GetIDInt(n)
  ImGui::ImGuiWindow_GetIDInt(self, n)
end

#GetIDStr(str) ⇒ Object



5428
5429
5430
# File 'lib/imgui.rb', line 5428

def GetIDStr(str)
  ImGui::ImGuiWindow_GetIDStr(self, str)
end

#GetIDStrEx(str, str_end = nil) ⇒ Object



5432
5433
5434
# File 'lib/imgui.rb', line 5432

def GetIDStrEx(str, str_end = nil)
  ImGui::ImGuiWindow_GetIDStrEx(self, str, str_end)
end


5460
5461
5462
# File 'lib/imgui.rb', line 5460

def MenuBarRect()
  ImGui::ImGuiWindow_MenuBarRect(self)
end

#RectObject



5452
5453
5454
# File 'lib/imgui.rb', line 5452

def Rect()
  ImGui::ImGuiWindow_Rect(self)
end

#TitleBarRectObject



5456
5457
5458
# File 'lib/imgui.rb', line 5456

def TitleBarRect()
  ImGui::ImGuiWindow_TitleBarRect(self)
end