Files
godot/editor/settings/editor_event_search_bar.cpp
noahbackus 9d30169a8d
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
initial commit, 4.5 stable
2025-09-16 20:46:46 -04:00

110 lines
4.7 KiB
C++

/**************************************************************************/
/* editor_event_search_bar.cpp */
/**************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/**************************************************************************/
#include "editor_event_search_bar.h"
#include "editor/settings/event_listener_line_edit.h"
#include "scene/gui/button.h"
#include "scene/gui/dialogs.h"
#include "scene/gui/line_edit.h"
void EditorEventSearchBar::_on_event_changed(const Ref<InputEvent> &p_event) {
if (p_event.is_valid() && (!p_event->is_pressed() || p_event->is_echo())) {
return;
}
_value_changed();
}
void EditorEventSearchBar::_on_clear_all() {
search_by_name->set_block_signals(true);
search_by_name->clear();
search_by_name->set_block_signals(false);
search_by_event->set_block_signals(true);
search_by_event->clear_event();
search_by_event->set_block_signals(false);
_value_changed();
}
void EditorEventSearchBar::_value_changed() {
clear_all->set_disabled(!is_searching());
emit_signal(SceneStringName(value_changed));
}
bool EditorEventSearchBar::is_searching() const {
return !get_name().is_empty() || get_event().is_valid();
}
String EditorEventSearchBar::get_name() const {
return search_by_name->get_text().strip_edges();
}
Ref<InputEvent> EditorEventSearchBar::get_event() const {
return search_by_event->get_event();
}
void EditorEventSearchBar::_notification(int p_what) {
switch (p_what) {
case NOTIFICATION_THEME_CHANGED: {
search_by_name->set_right_icon(get_editor_theme_icon(SNAME("Search")));
} break;
}
}
void EditorEventSearchBar::_bind_methods() {
ADD_SIGNAL(MethodInfo("value_changed"));
}
EditorEventSearchBar::EditorEventSearchBar() {
set_h_size_flags(Control::SIZE_EXPAND_FILL);
search_by_name = memnew(LineEdit);
search_by_name->set_h_size_flags(Control::SIZE_EXPAND_FILL);
search_by_name->set_placeholder(TTRC("Filter by Name"));
search_by_name->set_accessibility_name(TTRC("Filter by Name"));
search_by_name->set_clear_button_enabled(true);
search_by_name->connect(SceneStringName(text_changed), callable_mp(this, &EditorEventSearchBar::_value_changed).unbind(1));
add_child(search_by_name);
search_by_event = memnew(EventListenerLineEdit);
search_by_event->set_h_size_flags(Control::SIZE_EXPAND_FILL);
search_by_event->set_stretch_ratio(0.75);
search_by_event->set_accessibility_name(TTRC("Action Event"));
search_by_event->connect("event_changed", callable_mp(this, &EditorEventSearchBar::_on_event_changed));
add_child(search_by_event);
clear_all = memnew(Button(TTRC("Clear All")));
clear_all->set_tooltip_text(TTRC("Clear all search filters."));
clear_all->connect(SceneStringName(pressed), callable_mp(this, &EditorEventSearchBar::_on_clear_all));
clear_all->set_disabled(true);
add_child(clear_all);
}