Class: ImGuiTextFilter
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- ImGuiTextFilter
- Defined in:
- lib/imgui.rb
Instance Method Summary collapse
- #Build ⇒ Object
- #Clear ⇒ Object
- #Draw(label = "Filter (inc,-exc)", width = 0.0) ⇒ Object
- #IsActive ⇒ Object
- #PassFilter(text, text_end = nil) ⇒ Object
Instance Method Details
#Build ⇒ Object
2707 2708 2709 |
# File 'lib/imgui.rb', line 2707 def Build() ImGui::ImGuiTextFilter_Build(self) end |
#Clear ⇒ Object
2711 2712 2713 |
# File 'lib/imgui.rb', line 2711 def Clear() ImGui::ImGuiTextFilter_Clear(self) end |
#Draw(label = "Filter (inc,-exc)", width = 0.0) ⇒ Object
2699 2700 2701 |
# File 'lib/imgui.rb', line 2699 def Draw(label = "Filter (inc,-exc)", width = 0.0) ImGui::ImGuiTextFilter_Draw(self, label, width) end |
#IsActive ⇒ Object
2715 2716 2717 |
# File 'lib/imgui.rb', line 2715 def IsActive() ImGui::ImGuiTextFilter_IsActive(self) end |
#PassFilter(text, text_end = nil) ⇒ Object
2703 2704 2705 |
# File 'lib/imgui.rb', line 2703 def PassFilter(text, text_end = nil) ImGui::ImGuiTextFilter_PassFilter(self, text, text_end) end |