Class: ImGui::ImGui_ImplSDL2_Data
- Inherits:
-
Object
- Object
- ImGui::ImGui_ImplSDL2_Data
- Defined in:
- lib/imgui_impl_sdl2.rb
Overview
- INTERNAL
Instance Attribute Summary collapse
-
#clipboardTextData ⇒ Object
Returns the value of attribute clipboardTextData.
-
#mouseButtonsDown ⇒ Object
Returns the value of attribute mouseButtonsDown.
-
#mouseCanUseGlobalState ⇒ Object
Returns the value of attribute mouseCanUseGlobalState.
-
#mouseCursors ⇒ Object
Returns the value of attribute mouseCursors.
-
#renderer ⇒ Object
Returns the value of attribute renderer.
-
#time ⇒ Object
Returns the value of attribute time.
-
#window ⇒ Object
Returns the value of attribute window.
Instance Method Summary collapse
-
#initialize ⇒ ImGui_ImplSDL2_Data
constructor
A new instance of ImGui_ImplSDL2_Data.
Constructor Details
#initialize ⇒ ImGui_ImplSDL2_Data
Returns a new instance of ImGui_ImplSDL2_Data.
16 17 18 19 20 21 22 23 24 |
# File 'lib/imgui_impl_sdl2.rb', line 16 def initialize @window = nil # SDL_Window* @renderer = nil # SDL_Renderer* @time = 0.0 # Uint64 @mouseButtonsDown = 0 # int @mouseCursors = Array.new(ImGuiMouseCursor_COUNT) { 0 } # SDL_Cursor* @clipboardTextData = nil # char* @mouseCanUseGlobalState = false # bool end |
Instance Attribute Details
#clipboardTextData ⇒ Object
Returns the value of attribute clipboardTextData.
14 15 16 |
# File 'lib/imgui_impl_sdl2.rb', line 14 def clipboardTextData @clipboardTextData end |
#mouseButtonsDown ⇒ Object
Returns the value of attribute mouseButtonsDown.
14 15 16 |
# File 'lib/imgui_impl_sdl2.rb', line 14 def mouseButtonsDown @mouseButtonsDown end |
#mouseCanUseGlobalState ⇒ Object
Returns the value of attribute mouseCanUseGlobalState.
14 15 16 |
# File 'lib/imgui_impl_sdl2.rb', line 14 def mouseCanUseGlobalState @mouseCanUseGlobalState end |
#mouseCursors ⇒ Object
Returns the value of attribute mouseCursors.
14 15 16 |
# File 'lib/imgui_impl_sdl2.rb', line 14 def mouseCursors @mouseCursors end |
#renderer ⇒ Object
Returns the value of attribute renderer.
14 15 16 |
# File 'lib/imgui_impl_sdl2.rb', line 14 def renderer @renderer end |
#time ⇒ Object
Returns the value of attribute time.
14 15 16 |
# File 'lib/imgui_impl_sdl2.rb', line 14 def time @time end |
#window ⇒ Object
Returns the value of attribute window.
14 15 16 |
# File 'lib/imgui_impl_sdl2.rb', line 14 def window @window end |