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
2723 2724 2725 |
# File 'lib/imgui.rb', line 2723 def Build() ImGui::ImGuiTextFilter_Build(self) end |
#Clear ⇒ Object
2727 2728 2729 |
# File 'lib/imgui.rb', line 2727 def Clear() ImGui::ImGuiTextFilter_Clear(self) end |
#Draw(label = "Filter (inc,-exc)", width = 0.0) ⇒ Object
2715 2716 2717 |
# File 'lib/imgui.rb', line 2715 def Draw(label = "Filter (inc,-exc)", width = 0.0) ImGui::ImGuiTextFilter_Draw(self, label, width) end |
#IsActive ⇒ Object
2731 2732 2733 |
# File 'lib/imgui.rb', line 2731 def IsActive() ImGui::ImGuiTextFilter_IsActive(self) end |
#PassFilter(text, text_end = nil) ⇒ Object
2719 2720 2721 |
# File 'lib/imgui.rb', line 2719 def PassFilter(text, text_end = nil) ImGui::ImGuiTextFilter_PassFilter(self, text, text_end) end |