Class: ImGuiWindow
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- ImGuiWindow
- Defined in:
- lib/imgui.rb
Instance Method Summary collapse
- #GetID(ptr) ⇒ Object
- #GetIDFromPos(p_abs) ⇒ Object
- #GetIDFromRectangle(r_abs) ⇒ Object
- #GetIDInt(n) ⇒ Object
- #GetIDStr(str) ⇒ Object
- #GetIDStrEx(str, str_end = nil) ⇒ Object
- #MenuBarRect ⇒ Object
- #Rect ⇒ Object
- #TitleBarRect ⇒ Object
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 |
#MenuBarRect ⇒ Object
5460 5461 5462 |
# File 'lib/imgui.rb', line 5460 def MenuBarRect() ImGui::ImGuiWindow_MenuBarRect(self) end |
#Rect ⇒ Object
5452 5453 5454 |
# File 'lib/imgui.rb', line 5452 def Rect() ImGui::ImGuiWindow_Rect(self) end |
#TitleBarRect ⇒ Object
5456 5457 5458 |
# File 'lib/imgui.rb', line 5456 def TitleBarRect() ImGui::ImGuiWindow_TitleBarRect(self) end |