Class: ImGuiWindow

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

Instance Method Summary collapse

Instance Method Details

#GetID(ptr) ⇒ Object



5499
5500
5501
# File 'lib/imgui.rb', line 5499

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

#GetIDFromPos(p_abs) ⇒ Object



5507
5508
5509
# File 'lib/imgui.rb', line 5507

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

#GetIDFromRectangle(r_abs) ⇒ Object



5511
5512
5513
# File 'lib/imgui.rb', line 5511

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

#GetIDInt(n) ⇒ Object



5503
5504
5505
# File 'lib/imgui.rb', line 5503

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

#GetIDStr(str) ⇒ Object



5491
5492
5493
# File 'lib/imgui.rb', line 5491

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

#GetIDStrEx(str, str_end = nil) ⇒ Object



5495
5496
5497
# File 'lib/imgui.rb', line 5495

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


5523
5524
5525
# File 'lib/imgui.rb', line 5523

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

#RectObject



5515
5516
5517
# File 'lib/imgui.rb', line 5515

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

#TitleBarRectObject



5519
5520
5521
# File 'lib/imgui.rb', line 5519

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