2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2022-01-31 23:19:01 +00:00
|
|
|
/* editor_settings_dialog.cpp */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2022-01-03 20:27:34 +00:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2022-01-31 23:19:01 +00:00
|
|
|
#include "editor_settings_dialog.h"
|
2017-01-16 07:04:19 +00:00
|
|
|
|
2020-11-07 22:33:38 +00:00
|
|
|
#include "core/config/project_settings.h"
|
2020-10-02 13:12:20 +00:00
|
|
|
#include "core/input/input_map.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/os/keyboard.h"
|
2020-02-07 01:52:05 +00:00
|
|
|
#include "editor/debugger/editor_debugger_node.h"
|
2022-02-12 01:46:22 +00:00
|
|
|
#include "editor/editor_file_system.h"
|
|
|
|
#include "editor/editor_log.h"
|
|
|
|
#include "editor/editor_node.h"
|
|
|
|
#include "editor/editor_scale.h"
|
|
|
|
#include "editor/editor_settings.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/gui/margin_container.h"
|
2016-06-05 00:31:29 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void EditorSettingsDialog::ok_pressed() {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!EditorSettings::get_singleton()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
_settings_save();
|
|
|
|
timer->stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorSettingsDialog::_settings_changed() {
|
|
|
|
timer->start();
|
2016-07-18 21:46:16 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void EditorSettingsDialog::_settings_property_edited(const String &p_name) {
|
2018-07-19 21:58:15 +00:00
|
|
|
String full_name = inspector->get_full_item_path(p_name);
|
2016-07-18 21:46:16 +00:00
|
|
|
|
2018-09-15 18:22:09 +00:00
|
|
|
if (full_name == "interface/theme/accent_color" || full_name == "interface/theme/base_color" || full_name == "interface/theme/contrast") {
|
2018-06-23 09:05:12 +00:00
|
|
|
EditorSettings::get_singleton()->set_manually("interface/theme/preset", "Custom"); // set preset to Custom
|
2021-08-15 17:14:46 +00:00
|
|
|
} else if (full_name.begins_with("text_editor/theme/highlighting")) {
|
2017-12-26 19:41:08 +00:00
|
|
|
EditorSettings::get_singleton()->set_manually("text_editor/theme/color_theme", "Custom");
|
2016-07-18 21:46:16 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EditorSettingsDialog::_settings_save() {
|
|
|
|
EditorSettings::get_singleton()->notify_changes();
|
|
|
|
EditorSettings::get_singleton()->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorSettingsDialog::cancel_pressed() {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!EditorSettings::get_singleton()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
EditorSettings::get_singleton()->notify_changes();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorSettingsDialog::popup_edit_settings() {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!EditorSettings::get_singleton()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
return;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-04-12 14:45:31 +00:00
|
|
|
EditorSettings::get_singleton()->list_text_editor_themes(); // make sure we have an up to date list of themes
|
|
|
|
|
2018-07-19 21:58:15 +00:00
|
|
|
inspector->edit(EditorSettings::get_singleton());
|
|
|
|
inspector->get_inspector()->update_tree();
|
2015-11-21 16:42:15 +00:00
|
|
|
|
2016-01-23 19:05:27 +00:00
|
|
|
search_box->select_all();
|
|
|
|
search_box->grab_focus();
|
|
|
|
|
2016-06-05 00:31:29 +00:00
|
|
|
_update_shortcuts();
|
2017-10-15 11:36:36 +00:00
|
|
|
set_process_unhandled_input(true);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-02 21:43:56 +00:00
|
|
|
// Restore valid window bounds or pop up at default size.
|
2018-12-04 15:52:56 +00:00
|
|
|
Rect2 saved_size = EditorSettings::get_singleton()->get_project_metadata("dialog_bounds", "editor_settings", Rect2());
|
|
|
|
if (saved_size != Rect2()) {
|
|
|
|
popup(saved_size);
|
2017-03-02 21:43:56 +00:00
|
|
|
} else {
|
2019-04-26 19:36:44 +00:00
|
|
|
popup_centered_clamped(Size2(900, 700) * EDSCALE, 0.8);
|
2017-03-02 21:43:56 +00:00
|
|
|
}
|
2017-12-17 17:22:26 +00:00
|
|
|
|
|
|
|
_focus_current_search_box();
|
2017-03-02 21:43:56 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void EditorSettingsDialog::_filter_shortcuts(const String &p_filter) {
|
2016-07-03 13:07:16 +00:00
|
|
|
shortcut_filter = p_filter;
|
|
|
|
_update_shortcuts();
|
|
|
|
}
|
|
|
|
|
2017-10-15 11:36:36 +00:00
|
|
|
void EditorSettingsDialog::_undo_redo_callback(void *p_self, const String &p_name) {
|
2019-09-19 23:56:09 +00:00
|
|
|
EditorNode::get_log()->add_message(p_name, EditorLog::MSG_TYPE_EDITOR);
|
2017-10-15 11:36:36 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void EditorSettingsDialog::_notification(int p_what) {
|
2017-03-02 21:43:56 +00:00
|
|
|
switch (p_what) {
|
2020-03-06 17:00:16 +00:00
|
|
|
case NOTIFICATION_VISIBILITY_CHANGED: {
|
|
|
|
if (!is_visible()) {
|
|
|
|
EditorSettings::get_singleton()->set_project_metadata("dialog_bounds", "editor_settings", Rect2(get_position(), get_size()));
|
|
|
|
set_process_unhandled_input(false);
|
|
|
|
}
|
|
|
|
} break;
|
2022-02-15 23:52:32 +00:00
|
|
|
|
2017-10-15 11:36:36 +00:00
|
|
|
case NOTIFICATION_READY: {
|
2020-04-01 23:20:12 +00:00
|
|
|
undo_redo->set_method_notify_callback(EditorDebuggerNode::_method_changeds, nullptr);
|
|
|
|
undo_redo->set_property_notify_callback(EditorDebuggerNode::_property_changeds, nullptr);
|
2017-10-15 11:36:36 +00:00
|
|
|
undo_redo->set_commit_notify_callback(_undo_redo_callback, this);
|
|
|
|
} break;
|
2022-02-15 23:52:32 +00:00
|
|
|
|
2017-03-02 21:43:56 +00:00
|
|
|
case NOTIFICATION_ENTER_TREE: {
|
2017-12-17 17:22:26 +00:00
|
|
|
_update_icons();
|
2017-03-02 21:43:56 +00:00
|
|
|
} break;
|
2022-02-15 23:52:32 +00:00
|
|
|
|
2017-12-17 17:22:26 +00:00
|
|
|
case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
|
|
|
|
_update_icons();
|
|
|
|
// Update theme colors.
|
2018-07-19 21:58:15 +00:00
|
|
|
inspector->update_category_list();
|
2017-12-17 17:22:26 +00:00
|
|
|
_update_shortcuts();
|
|
|
|
} break;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-22 15:37:22 +00:00
|
|
|
void EditorSettingsDialog::unhandled_input(const Ref<InputEvent> &p_event) {
|
2021-04-05 06:52:21 +00:00
|
|
|
ERR_FAIL_COND(p_event.is_null());
|
|
|
|
|
2019-10-06 15:13:56 +00:00
|
|
|
const Ref<InputEventKey> k = p_event;
|
2017-10-15 11:36:36 +00:00
|
|
|
|
2020-03-06 17:00:16 +00:00
|
|
|
if (k.is_valid() && k->is_pressed()) {
|
2019-10-06 15:13:56 +00:00
|
|
|
bool handled = false;
|
2017-10-15 11:36:36 +00:00
|
|
|
|
2020-12-07 11:32:00 +00:00
|
|
|
if (ED_IS_SHORTCUT("ui_undo", p_event)) {
|
2019-10-06 15:13:56 +00:00
|
|
|
String action = undo_redo->get_current_action_name();
|
2021-12-09 09:42:46 +00:00
|
|
|
if (!action.is_empty()) {
|
2019-10-06 15:13:56 +00:00
|
|
|
EditorNode::get_log()->add_message("Undo: " + action, EditorLog::MSG_TYPE_EDITOR);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2019-10-06 15:13:56 +00:00
|
|
|
undo_redo->undo();
|
|
|
|
handled = true;
|
|
|
|
}
|
2017-10-15 11:36:36 +00:00
|
|
|
|
2020-12-07 11:32:00 +00:00
|
|
|
if (ED_IS_SHORTCUT("ui_redo", p_event)) {
|
2019-10-06 15:13:56 +00:00
|
|
|
undo_redo->redo();
|
|
|
|
String action = undo_redo->get_current_action_name();
|
2021-12-09 09:42:46 +00:00
|
|
|
if (!action.is_empty()) {
|
2019-10-06 15:13:56 +00:00
|
|
|
EditorNode::get_log()->add_message("Redo: " + action, EditorLog::MSG_TYPE_EDITOR);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2019-10-06 15:13:56 +00:00
|
|
|
handled = true;
|
|
|
|
}
|
2017-10-15 11:36:36 +00:00
|
|
|
|
2021-08-13 21:31:57 +00:00
|
|
|
if (k->get_keycode_with_modifiers() == (KeyModifierMask::CMD | Key::F)) {
|
2019-10-06 15:13:56 +00:00
|
|
|
_focus_current_search_box();
|
|
|
|
handled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (handled) {
|
2020-03-06 17:00:16 +00:00
|
|
|
set_input_as_handled();
|
2017-10-15 11:36:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-17 17:22:26 +00:00
|
|
|
void EditorSettingsDialog::_update_icons() {
|
2021-07-17 21:22:52 +00:00
|
|
|
search_box->set_right_icon(shortcuts->get_theme_icon(SNAME("Search"), SNAME("EditorIcons")));
|
2018-07-26 11:45:38 +00:00
|
|
|
search_box->set_clear_button_enabled(true);
|
2021-07-17 21:22:52 +00:00
|
|
|
shortcut_search_box->set_right_icon(shortcuts->get_theme_icon(SNAME("Search"), SNAME("EditorIcons")));
|
2018-07-26 11:45:38 +00:00
|
|
|
shortcut_search_box->set_clear_button_enabled(true);
|
2018-07-19 21:58:15 +00:00
|
|
|
|
2021-07-17 21:22:52 +00:00
|
|
|
restart_close_button->set_icon(shortcuts->get_theme_icon(SNAME("Close"), SNAME("EditorIcons")));
|
2022-02-08 09:14:58 +00:00
|
|
|
restart_container->add_theme_style_override("panel", shortcuts->get_theme_stylebox(SNAME("bg"), SNAME("Tree")));
|
2021-07-17 21:22:52 +00:00
|
|
|
restart_icon->set_texture(shortcuts->get_theme_icon(SNAME("StatusWarning"), SNAME("EditorIcons")));
|
2022-02-08 09:14:58 +00:00
|
|
|
restart_label->add_theme_color_override("font_color", shortcuts->get_theme_color(SNAME("warning_color"), SNAME("Editor")));
|
2017-12-17 17:22:26 +00:00
|
|
|
}
|
|
|
|
|
2020-10-02 13:12:20 +00:00
|
|
|
void EditorSettingsDialog::_event_config_confirmed() {
|
|
|
|
Ref<InputEventKey> k = shortcut_editor->get_event();
|
|
|
|
if (k.is_null()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
if (current_event_index == -1) {
|
|
|
|
// Add new event
|
|
|
|
current_events.push_back(k);
|
|
|
|
} else {
|
|
|
|
// Edit existing event
|
|
|
|
current_events[current_event_index] = k;
|
|
|
|
}
|
2020-10-02 13:12:20 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
if (is_editing_action) {
|
|
|
|
_update_builtin_action(current_edited_identifier, current_events);
|
2020-10-02 13:12:20 +00:00
|
|
|
} else {
|
2021-06-21 01:34:50 +00:00
|
|
|
_update_shortcut_events(current_edited_identifier, current_events);
|
2020-10-02 13:12:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorSettingsDialog::_update_builtin_action(const String &p_name, const Array &p_events) {
|
2021-06-21 01:34:50 +00:00
|
|
|
Array old_input_array = EditorSettings::get_singleton()->get_builtin_action_overrides(p_name);
|
2020-10-02 13:12:20 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
undo_redo->create_action(TTR("Edit Built-in Action") + " '" + p_name + "'");
|
2020-10-02 13:12:20 +00:00
|
|
|
undo_redo->add_do_method(EditorSettings::get_singleton(), "set_builtin_action_override", p_name, p_events);
|
|
|
|
undo_redo->add_undo_method(EditorSettings::get_singleton(), "set_builtin_action_override", p_name, old_input_array);
|
|
|
|
undo_redo->add_do_method(this, "_settings_changed");
|
|
|
|
undo_redo->add_undo_method(this, "_settings_changed");
|
|
|
|
undo_redo->commit_action();
|
|
|
|
|
|
|
|
_update_shortcuts();
|
|
|
|
}
|
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
void EditorSettingsDialog::_update_shortcut_events(const String &p_path, const Array &p_events) {
|
|
|
|
Ref<Shortcut> current_sc = EditorSettings::get_singleton()->get_shortcut(p_path);
|
|
|
|
|
|
|
|
undo_redo->create_action(TTR("Edit Shortcut") + " '" + p_path + "'");
|
|
|
|
undo_redo->add_do_method(current_sc.ptr(), "set_events", p_events);
|
|
|
|
undo_redo->add_undo_method(current_sc.ptr(), "set_events", current_sc->get_events());
|
|
|
|
undo_redo->add_do_method(this, "_update_shortcuts");
|
|
|
|
undo_redo->add_undo_method(this, "_update_shortcuts");
|
|
|
|
undo_redo->add_do_method(this, "_settings_changed");
|
|
|
|
undo_redo->add_undo_method(this, "_settings_changed");
|
|
|
|
undo_redo->commit_action();
|
|
|
|
}
|
|
|
|
|
|
|
|
Array EditorSettingsDialog::_event_list_to_array_helper(List<Ref<InputEvent>> &p_events) {
|
|
|
|
Array events;
|
|
|
|
|
|
|
|
// Convert the list to an array, and only keep key events as this is for the editor.
|
|
|
|
for (List<Ref<InputEvent>>::Element *E = p_events.front(); E; E = E->next()) {
|
|
|
|
Ref<InputEventKey> k = E->get();
|
|
|
|
if (k.is_valid()) {
|
|
|
|
events.append(E->get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return events;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorSettingsDialog::_create_shortcut_treeitem(TreeItem *p_parent, const String &p_shortcut_identifier, const String &p_display, Array &p_events, bool p_allow_revert, bool p_is_action, bool p_is_collapsed) {
|
|
|
|
TreeItem *shortcut_item = shortcuts->create_item(p_parent);
|
|
|
|
shortcut_item->set_collapsed(p_is_collapsed);
|
|
|
|
shortcut_item->set_text(0, p_display);
|
|
|
|
|
|
|
|
Ref<InputEvent> primary = p_events.size() > 0 ? Ref<InputEvent>(p_events[0]) : Ref<InputEvent>();
|
|
|
|
Ref<InputEvent> secondary = p_events.size() > 1 ? Ref<InputEvent>(p_events[1]) : Ref<InputEvent>();
|
|
|
|
|
|
|
|
String sc_text = "None";
|
|
|
|
if (primary.is_valid()) {
|
|
|
|
sc_text = primary->as_text();
|
|
|
|
|
|
|
|
if (secondary.is_valid()) {
|
|
|
|
sc_text += ", " + secondary->as_text();
|
|
|
|
|
|
|
|
if (p_events.size() > 2) {
|
|
|
|
sc_text += " (+" + itos(p_events.size() - 2) + ")";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shortcut_item->set_text(1, sc_text);
|
|
|
|
if (sc_text == "None") {
|
|
|
|
// Fade out unassigned shortcut labels for easier visual grepping.
|
2022-02-08 09:30:18 +00:00
|
|
|
shortcut_item->set_custom_color(1, shortcuts->get_theme_color(SNAME("font_color"), SNAME("Label")) * Color(1, 1, 1, 0.5));
|
2021-06-21 01:34:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (p_allow_revert) {
|
2022-02-08 09:30:18 +00:00
|
|
|
shortcut_item->add_button(1, shortcuts->get_theme_icon(SNAME("Reload"), SNAME("EditorIcons")), SHORTCUT_REVERT);
|
2021-06-21 01:34:50 +00:00
|
|
|
}
|
|
|
|
|
2022-02-08 09:30:18 +00:00
|
|
|
shortcut_item->add_button(1, shortcuts->get_theme_icon(SNAME("Add"), SNAME("EditorIcons")), SHORTCUT_ADD);
|
|
|
|
shortcut_item->add_button(1, shortcuts->get_theme_icon(SNAME("Close"), SNAME("EditorIcons")), SHORTCUT_ERASE);
|
2021-06-21 01:34:50 +00:00
|
|
|
|
|
|
|
shortcut_item->set_meta("is_action", p_is_action);
|
|
|
|
shortcut_item->set_meta("type", "shortcut");
|
|
|
|
shortcut_item->set_meta("shortcut_identifier", p_shortcut_identifier);
|
|
|
|
shortcut_item->set_meta("events", p_events);
|
|
|
|
|
|
|
|
// Shortcut Input Events
|
|
|
|
for (int i = 0; i < p_events.size(); i++) {
|
|
|
|
Ref<InputEvent> ie = p_events[i];
|
|
|
|
if (ie.is_null()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
TreeItem *event_item = shortcuts->create_item(shortcut_item);
|
|
|
|
|
|
|
|
event_item->set_text(0, shortcut_item->get_child_count() == 1 ? "Primary" : "");
|
|
|
|
event_item->set_text(1, ie->as_text());
|
|
|
|
|
2022-02-08 09:30:18 +00:00
|
|
|
event_item->add_button(1, shortcuts->get_theme_icon(SNAME("Edit"), SNAME("EditorIcons")), SHORTCUT_EDIT);
|
|
|
|
event_item->add_button(1, shortcuts->get_theme_icon(SNAME("Close"), SNAME("EditorIcons")), SHORTCUT_ERASE);
|
2021-06-21 01:34:50 +00:00
|
|
|
|
2022-02-08 09:30:18 +00:00
|
|
|
event_item->set_custom_bg_color(0, shortcuts->get_theme_color(SNAME("dark_color_3"), SNAME("Editor")));
|
|
|
|
event_item->set_custom_bg_color(1, shortcuts->get_theme_color(SNAME("dark_color_3"), SNAME("Editor")));
|
2021-06-21 01:34:50 +00:00
|
|
|
|
|
|
|
event_item->set_meta("is_action", p_is_action);
|
|
|
|
event_item->set_meta("type", "event");
|
|
|
|
event_item->set_meta("event_index", i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-05 00:31:29 +00:00
|
|
|
void EditorSettingsDialog::_update_shortcuts() {
|
2020-10-02 13:12:20 +00:00
|
|
|
// Before clearing the tree, take note of which categories are collapsed so that this state can be maintained when the tree is repopulated.
|
2018-03-23 22:02:38 +00:00
|
|
|
Map<String, bool> collapsed;
|
|
|
|
|
2021-03-07 20:07:30 +00:00
|
|
|
if (shortcuts->get_root() && shortcuts->get_root()->get_first_child()) {
|
2021-06-21 01:34:50 +00:00
|
|
|
TreeItem *ti = shortcuts->get_root()->get_first_child();
|
|
|
|
while (ti) {
|
|
|
|
// Not all items have valid or unique text in the first column - so if it has an identifier, use that, as it should be unique.
|
|
|
|
if (ti->get_first_child() && ti->has_meta("shortcut_identifier")) {
|
|
|
|
collapsed[ti->get_meta("shortcut_identifier")] = ti->is_collapsed();
|
|
|
|
} else {
|
|
|
|
collapsed[ti->get_text(0)] = ti->is_collapsed();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try go down tree
|
|
|
|
TreeItem *ti_next = ti->get_first_child();
|
|
|
|
// Try go across tree
|
|
|
|
if (!ti_next) {
|
|
|
|
ti_next = ti->get_next();
|
|
|
|
}
|
|
|
|
// Try go up tree, to next node
|
|
|
|
if (!ti_next) {
|
|
|
|
ti_next = ti->get_parent()->get_next();
|
|
|
|
}
|
|
|
|
|
|
|
|
ti = ti_next;
|
2018-03-23 22:02:38 +00:00
|
|
|
}
|
|
|
|
}
|
2021-06-21 01:34:50 +00:00
|
|
|
|
2016-06-05 00:31:29 +00:00
|
|
|
shortcuts->clear();
|
|
|
|
|
|
|
|
TreeItem *root = shortcuts->create_item();
|
2017-03-05 15:44:50 +00:00
|
|
|
Map<String, TreeItem *> sections;
|
2016-06-05 00:31:29 +00:00
|
|
|
|
2020-10-02 13:12:20 +00:00
|
|
|
// Set up section for Common/Built-in actions
|
|
|
|
TreeItem *common_section = shortcuts->create_item(root);
|
|
|
|
sections["Common"] = common_section;
|
|
|
|
common_section->set_text(0, TTR("Common"));
|
2021-08-15 22:35:23 +00:00
|
|
|
common_section->set_selectable(0, false);
|
|
|
|
common_section->set_selectable(1, false);
|
2020-10-02 13:12:20 +00:00
|
|
|
if (collapsed.has("Common")) {
|
|
|
|
common_section->set_collapsed(collapsed["Common"]);
|
|
|
|
}
|
2021-07-17 21:22:52 +00:00
|
|
|
common_section->set_custom_bg_color(0, shortcuts->get_theme_color(SNAME("prop_subsection"), SNAME("Editor")));
|
|
|
|
common_section->set_custom_bg_color(1, shortcuts->get_theme_color(SNAME("prop_subsection"), SNAME("Editor")));
|
2020-10-02 13:12:20 +00:00
|
|
|
|
|
|
|
// Get the action map for the editor, and add each item to the "Common" section.
|
|
|
|
OrderedHashMap<StringName, InputMap::Action> action_map = InputMap::get_singleton()->get_action_map();
|
|
|
|
for (OrderedHashMap<StringName, InputMap::Action>::Element E = action_map.front(); E; E = E.next()) {
|
|
|
|
String action_name = E.key();
|
|
|
|
InputMap::Action action = E.get();
|
|
|
|
|
|
|
|
Array events; // Need to get the list of events into an array so it can be set as metadata on the item.
|
|
|
|
Vector<String> event_strings;
|
|
|
|
|
2021-08-06 06:30:15 +00:00
|
|
|
List<Ref<InputEvent>> all_default_events = InputMap::get_singleton()->get_builtins_with_feature_overrides_applied().find(action_name).value();
|
2021-05-05 01:33:08 +00:00
|
|
|
List<Ref<InputEventKey>> key_default_events;
|
|
|
|
// Remove all non-key events from the defaults. Only check keys, since we are in the editor.
|
|
|
|
for (List<Ref<InputEvent>>::Element *I = all_default_events.front(); I; I = I->next()) {
|
2020-10-02 13:12:20 +00:00
|
|
|
Ref<InputEventKey> k = I->get();
|
2021-05-05 01:33:08 +00:00
|
|
|
if (k.is_valid()) {
|
|
|
|
key_default_events.push_back(k);
|
2020-10-02 13:12:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Join the text of the events with a delimiter so they can all be displayed in one cell.
|
|
|
|
String events_display_string = event_strings.is_empty() ? "None" : String("; ").join(event_strings);
|
|
|
|
|
2022-01-26 23:03:56 +00:00
|
|
|
if (!shortcut_filter.is_subsequence_ofn(action_name) && (events_display_string == "None" || !shortcut_filter.is_subsequence_ofn(events_display_string))) {
|
2021-06-03 23:31:55 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
Array action_events = _event_list_to_array_helper(action.inputs);
|
|
|
|
Array default_events = _event_list_to_array_helper(all_default_events);
|
|
|
|
bool same_as_defaults = Shortcut::is_event_array_equal(default_events, action_events);
|
|
|
|
bool collapse = !collapsed.has(action_name) || (collapsed.has(action_name) && collapsed[action_name]);
|
2020-10-02 13:12:20 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
_create_shortcut_treeitem(common_section, action_name, action_name, action_events, !same_as_defaults, true, collapse);
|
2020-10-02 13:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Editor Shortcuts
|
|
|
|
|
|
|
|
List<String> slist;
|
|
|
|
EditorSettings::get_singleton()->get_shortcut_list(&slist);
|
|
|
|
|
2021-07-24 13:46:25 +00:00
|
|
|
for (const String &E : slist) {
|
2021-07-16 03:45:57 +00:00
|
|
|
Ref<Shortcut> sc = EditorSettings::get_singleton()->get_shortcut(E);
|
2020-05-14 14:41:43 +00:00
|
|
|
if (!sc->has_meta("original")) {
|
2016-06-05 00:31:29 +00:00
|
|
|
continue;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-06-05 00:31:29 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
// Shortcut Section
|
2016-06-05 00:31:29 +00:00
|
|
|
|
|
|
|
TreeItem *section;
|
2021-06-21 01:34:50 +00:00
|
|
|
String section_name = E.get_slice("/", 0);
|
2016-06-05 00:31:29 +00:00
|
|
|
|
|
|
|
if (sections.has(section_name)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
section = sections[section_name];
|
2016-06-05 00:31:29 +00:00
|
|
|
} else {
|
|
|
|
section = shortcuts->create_item(root);
|
2018-03-23 22:02:38 +00:00
|
|
|
|
|
|
|
String item_name = section_name.capitalize();
|
|
|
|
section->set_text(0, item_name);
|
2021-08-15 22:35:23 +00:00
|
|
|
section->set_selectable(0, false);
|
|
|
|
section->set_selectable(1, false);
|
|
|
|
section->set_custom_bg_color(0, shortcuts->get_theme_color(SNAME("prop_subsection"), SNAME("Editor")));
|
|
|
|
section->set_custom_bg_color(1, shortcuts->get_theme_color(SNAME("prop_subsection"), SNAME("Editor")));
|
2018-03-23 22:02:38 +00:00
|
|
|
|
|
|
|
if (collapsed.has(item_name)) {
|
|
|
|
section->set_collapsed(collapsed[item_name]);
|
|
|
|
}
|
2016-06-05 00:31:29 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
sections[section_name] = section;
|
2016-06-05 00:31:29 +00:00
|
|
|
}
|
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
// Shortcut Item
|
2019-12-12 13:52:49 +00:00
|
|
|
|
2022-01-26 23:03:56 +00:00
|
|
|
if (!shortcut_filter.is_subsequence_ofn(sc->get_name())) {
|
2021-06-21 01:34:50 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-12-12 13:52:49 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
Array original = sc->get_meta("original");
|
2021-10-13 02:33:53 +00:00
|
|
|
Array shortcuts_array = sc->get_events().duplicate(true);
|
2021-06-21 01:34:50 +00:00
|
|
|
bool same_as_defaults = Shortcut::is_event_array_equal(original, shortcuts_array);
|
|
|
|
bool collapse = !collapsed.has(E) || (collapsed.has(E) && collapsed[E]);
|
2019-12-12 13:52:49 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
_create_shortcut_treeitem(section, E, sc->get_name(), shortcuts_array, !same_as_defaults, false, collapse);
|
2016-06-05 00:31:29 +00:00
|
|
|
}
|
|
|
|
|
2016-07-03 13:07:16 +00:00
|
|
|
// remove sections with no shortcuts
|
2021-08-09 20:13:42 +00:00
|
|
|
for (KeyValue<String, TreeItem *> &E : sections) {
|
|
|
|
TreeItem *section = E.value;
|
2021-03-07 20:07:30 +00:00
|
|
|
if (section->get_first_child() == nullptr) {
|
2016-07-03 13:07:16 +00:00
|
|
|
root->remove_child(section);
|
|
|
|
}
|
|
|
|
}
|
2016-06-05 00:31:29 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void EditorSettingsDialog::_shortcut_button_pressed(Object *p_item, int p_column, int p_idx) {
|
2017-08-24 20:58:51 +00:00
|
|
|
TreeItem *ti = Object::cast_to<TreeItem>(p_item);
|
2021-06-21 01:34:50 +00:00
|
|
|
ERR_FAIL_COND_MSG(!ti, "Object passed is not a TreeItem");
|
2021-04-03 12:11:29 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
ShortcutButton button_idx = (ShortcutButton)p_idx;
|
2020-10-02 13:12:20 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
is_editing_action = ti->get_meta("is_action");
|
2020-10-02 13:12:20 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
String type = ti->get_meta("type");
|
2020-10-02 13:12:20 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
if (type == "event") {
|
|
|
|
current_edited_identifier = ti->get_parent()->get_meta("shortcut_identifier");
|
|
|
|
current_events = ti->get_parent()->get_meta("events");
|
|
|
|
current_event_index = ti->get_meta("event_index");
|
|
|
|
} else { // Type is "shortcut"
|
|
|
|
current_edited_identifier = ti->get_meta("shortcut_identifier");
|
|
|
|
current_events = ti->get_meta("events");
|
|
|
|
current_event_index = -1;
|
|
|
|
}
|
2020-10-02 13:12:20 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
switch (button_idx) {
|
|
|
|
case EditorSettingsDialog::SHORTCUT_ADD: {
|
|
|
|
// Only for "shortcut" types
|
|
|
|
shortcut_editor->popup_and_configure();
|
|
|
|
} break;
|
|
|
|
case EditorSettingsDialog::SHORTCUT_EDIT: {
|
|
|
|
// Only for "event" types
|
|
|
|
shortcut_editor->popup_and_configure(current_events[current_event_index]);
|
|
|
|
} break;
|
|
|
|
case EditorSettingsDialog::SHORTCUT_ERASE: {
|
|
|
|
if (type == "shortcut") {
|
|
|
|
if (is_editing_action) {
|
|
|
|
_update_builtin_action(current_edited_identifier, Array());
|
|
|
|
} else {
|
|
|
|
_update_shortcut_events(current_edited_identifier, Array());
|
2020-10-02 13:12:20 +00:00
|
|
|
}
|
2021-06-21 01:34:50 +00:00
|
|
|
} else if (type == "event") {
|
2021-07-03 22:17:03 +00:00
|
|
|
current_events.remove_at(current_event_index);
|
2020-10-02 13:12:20 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
if (is_editing_action) {
|
|
|
|
_update_builtin_action(current_edited_identifier, current_events);
|
|
|
|
} else {
|
|
|
|
_update_shortcut_events(current_edited_identifier, current_events);
|
2020-10-02 13:12:20 +00:00
|
|
|
}
|
2021-06-21 01:34:50 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case EditorSettingsDialog::SHORTCUT_REVERT: {
|
|
|
|
// Only for "shortcut" types
|
|
|
|
if (is_editing_action) {
|
|
|
|
List<Ref<InputEvent>> defaults = InputMap::get_singleton()->get_builtins_with_feature_overrides_applied()[current_edited_identifier];
|
|
|
|
Array events = _event_list_to_array_helper(defaults);
|
2020-10-02 13:12:20 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
_update_builtin_action(current_edited_identifier, events);
|
2020-10-02 13:12:20 +00:00
|
|
|
} else {
|
2021-06-21 01:34:50 +00:00
|
|
|
Ref<Shortcut> sc = EditorSettings::get_singleton()->get_shortcut(current_edited_identifier);
|
|
|
|
Array original = sc->get_meta("original");
|
|
|
|
_update_shortcut_events(current_edited_identifier, original);
|
2020-10-02 13:12:20 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
default:
|
|
|
|
break;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2016-06-05 00:31:29 +00:00
|
|
|
}
|
|
|
|
|
2022-01-05 04:03:52 +00:00
|
|
|
void EditorSettingsDialog::_shortcut_cell_double_clicked() {
|
|
|
|
// When a shortcut cell is double clicked:
|
|
|
|
// If the cell has children and is in the bindings column, and if its first child is editable,
|
|
|
|
// then uncollapse the cell, and if the first child is the only child, then edit that child.
|
|
|
|
// If the cell is in the bindings column and can be edited, then edit it.
|
|
|
|
// If the cell is in the name column, then toggle collapse.
|
|
|
|
const ShortcutButton edit_btn_id = EditorSettingsDialog::SHORTCUT_EDIT;
|
|
|
|
const int edit_btn_col = 1;
|
|
|
|
TreeItem *ti = shortcuts->get_selected();
|
|
|
|
String type = ti->get_meta("type");
|
|
|
|
int col = shortcuts->get_selected_column();
|
|
|
|
if (type == "shortcut" && col == 0) {
|
|
|
|
if (ti->get_first_child()) {
|
|
|
|
ti->set_collapsed(!ti->is_collapsed());
|
|
|
|
}
|
|
|
|
} else if (type == "shortcut" && col == 1) {
|
|
|
|
if (ti->get_first_child()) {
|
|
|
|
TreeItem *child_ti = ti->get_first_child();
|
|
|
|
if (child_ti->get_button_by_id(edit_btn_col, edit_btn_id) != -1) {
|
|
|
|
ti->set_collapsed(false);
|
|
|
|
if (ti->get_child_count() == 1) {
|
|
|
|
_shortcut_button_pressed(child_ti, edit_btn_col, edit_btn_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (type == "event" && col == 1) {
|
|
|
|
if (ti->get_button_by_id(edit_btn_col, edit_btn_id) != -1) {
|
|
|
|
_shortcut_button_pressed(ti, edit_btn_col, edit_btn_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
Variant EditorSettingsDialog::get_drag_data_fw(const Point2 &p_point, Control *p_from) {
|
|
|
|
TreeItem *selected = shortcuts->get_selected();
|
|
|
|
|
|
|
|
// Only allow drag for events
|
|
|
|
if (!selected || !selected->has_meta("type") || selected->get_meta("type") != "event") {
|
|
|
|
return Variant();
|
|
|
|
}
|
|
|
|
|
|
|
|
String label_text = "Event " + itos(selected->get_meta("event_index"));
|
|
|
|
Label *label = memnew(Label(label_text));
|
|
|
|
label->set_modulate(Color(1, 1, 1, 1.0f));
|
|
|
|
shortcuts->set_drag_preview(label);
|
|
|
|
|
|
|
|
shortcuts->set_drop_mode_flags(Tree::DROP_MODE_INBETWEEN);
|
|
|
|
|
|
|
|
return Dictionary(); // No data required
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EditorSettingsDialog::can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const {
|
|
|
|
TreeItem *selected = shortcuts->get_selected();
|
|
|
|
TreeItem *item = shortcuts->get_item_at_position(p_point);
|
|
|
|
if (!selected || !item || item == selected || !item->has_meta("type") || item->get_meta("type") != "event") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't allow moving an events in-between shortcuts.
|
|
|
|
if (selected->get_parent()->get_meta("shortcut_identifier") != item->get_parent()->get_meta("shortcut_identifier")) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorSettingsDialog::drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) {
|
|
|
|
if (!can_drop_data_fw(p_point, p_data, p_from)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TreeItem *selected = shortcuts->get_selected();
|
|
|
|
TreeItem *target = shortcuts->get_item_at_position(p_point);
|
|
|
|
|
|
|
|
if (!target) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int target_event_index = target->get_meta("event_index");
|
|
|
|
int index_moving_from = selected->get_meta("event_index");
|
|
|
|
|
|
|
|
Array events = selected->get_parent()->get_meta("events");
|
|
|
|
|
|
|
|
Variant event_moved = events[index_moving_from];
|
2021-07-03 22:17:03 +00:00
|
|
|
events.remove_at(index_moving_from);
|
2021-06-21 01:34:50 +00:00
|
|
|
events.insert(target_event_index, event_moved);
|
|
|
|
|
|
|
|
String ident = selected->get_parent()->get_meta("shortcut_identifier");
|
|
|
|
if (selected->get_meta("is_action")) {
|
|
|
|
_update_builtin_action(ident, events);
|
|
|
|
} else {
|
|
|
|
_update_shortcut_events(ident, events);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-17 17:22:26 +00:00
|
|
|
void EditorSettingsDialog::_tabs_tab_changed(int p_tab) {
|
|
|
|
_focus_current_search_box();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorSettingsDialog::_focus_current_search_box() {
|
|
|
|
Control *tab = tabs->get_current_tab_control();
|
2020-04-01 23:20:12 +00:00
|
|
|
LineEdit *current_search_box = nullptr;
|
2020-05-14 14:41:43 +00:00
|
|
|
if (tab == tab_general) {
|
2017-12-17 17:22:26 +00:00
|
|
|
current_search_box = search_box;
|
2020-05-14 14:41:43 +00:00
|
|
|
} else if (tab == tab_shortcuts) {
|
2017-12-17 17:22:26 +00:00
|
|
|
current_search_box = shortcut_search_box;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2017-12-17 17:22:26 +00:00
|
|
|
|
|
|
|
if (current_search_box) {
|
|
|
|
current_search_box->grab_focus();
|
|
|
|
current_search_box->select_all();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-19 21:58:15 +00:00
|
|
|
void EditorSettingsDialog::_editor_restart() {
|
2019-01-25 20:23:56 +00:00
|
|
|
EditorNode::get_singleton()->save_all_scenes();
|
|
|
|
EditorNode::get_singleton()->restart_editor();
|
2018-07-19 21:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EditorSettingsDialog::_editor_restart_request() {
|
|
|
|
restart_container->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorSettingsDialog::_editor_restart_close() {
|
|
|
|
restart_container->hide();
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void EditorSettingsDialog::_bind_methods() {
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("_update_shortcuts"), &EditorSettingsDialog::_update_shortcuts);
|
2020-10-02 13:12:20 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("_settings_changed"), &EditorSettingsDialog::_settings_changed);
|
2021-06-21 01:34:50 +00:00
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("_get_drag_data_fw"), &EditorSettingsDialog::get_drag_data_fw);
|
|
|
|
ClassDB::bind_method(D_METHOD("_can_drop_data_fw"), &EditorSettingsDialog::can_drop_data_fw);
|
|
|
|
ClassDB::bind_method(D_METHOD("_drop_data_fw"), &EditorSettingsDialog::drop_data_fw);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EditorSettingsDialog::EditorSettingsDialog() {
|
2016-05-04 01:25:37 +00:00
|
|
|
set_title(TTR("Editor Settings"));
|
2020-03-06 17:00:16 +00:00
|
|
|
|
2017-10-15 11:36:36 +00:00
|
|
|
undo_redo = memnew(UndoRedo);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
tabs = memnew(TabContainer);
|
2021-11-25 02:58:47 +00:00
|
|
|
tabs->set_tab_alignment(TabContainer::ALIGNMENT_LEFT);
|
2020-02-21 17:28:45 +00:00
|
|
|
tabs->connect("tab_changed", callable_mp(this, &EditorSettingsDialog::_tabs_tab_changed));
|
2014-02-10 01:10:30 +00:00
|
|
|
add_child(tabs);
|
|
|
|
|
2017-12-17 17:22:26 +00:00
|
|
|
// General Tab
|
|
|
|
|
|
|
|
tab_general = memnew(VBoxContainer);
|
|
|
|
tabs->add_child(tab_general);
|
|
|
|
tab_general->set_name(TTR("General"));
|
2016-01-23 19:05:27 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
HBoxContainer *hbc = memnew(HBoxContainer);
|
2016-01-23 19:05:27 +00:00
|
|
|
hbc->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
2017-12-17 17:22:26 +00:00
|
|
|
tab_general->add_child(hbc);
|
2016-01-23 19:05:27 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
search_box = memnew(LineEdit);
|
2020-08-28 21:39:19 +00:00
|
|
|
search_box->set_placeholder(TTR("Search"));
|
2016-01-23 19:05:27 +00:00
|
|
|
search_box->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
|
|
|
hbc->add_child(search_box);
|
|
|
|
|
2018-07-19 21:58:15 +00:00
|
|
|
inspector = memnew(SectionedInspector);
|
|
|
|
inspector->get_inspector()->set_use_filter(true);
|
|
|
|
inspector->register_search_box(search_box);
|
|
|
|
inspector->set_v_size_flags(Control::SIZE_EXPAND_FILL);
|
|
|
|
inspector->get_inspector()->set_undo_redo(undo_redo);
|
|
|
|
tab_general->add_child(inspector);
|
2020-02-21 17:28:45 +00:00
|
|
|
inspector->get_inspector()->connect("property_edited", callable_mp(this, &EditorSettingsDialog::_settings_property_edited));
|
|
|
|
inspector->get_inspector()->connect("restart_requested", callable_mp(this, &EditorSettingsDialog::_editor_restart_request));
|
2018-07-19 21:58:15 +00:00
|
|
|
|
|
|
|
restart_container = memnew(PanelContainer);
|
|
|
|
tab_general->add_child(restart_container);
|
|
|
|
HBoxContainer *restart_hb = memnew(HBoxContainer);
|
|
|
|
restart_container->add_child(restart_hb);
|
|
|
|
restart_icon = memnew(TextureRect);
|
2020-03-06 17:00:16 +00:00
|
|
|
restart_icon->set_v_size_flags(Control::SIZE_SHRINK_CENTER);
|
2018-07-19 21:58:15 +00:00
|
|
|
restart_hb->add_child(restart_icon);
|
|
|
|
restart_label = memnew(Label);
|
2019-03-25 00:54:29 +00:00
|
|
|
restart_label->set_text(TTR("The editor must be restarted for changes to take effect."));
|
2018-07-19 21:58:15 +00:00
|
|
|
restart_hb->add_child(restart_label);
|
|
|
|
restart_hb->add_spacer();
|
|
|
|
Button *restart_button = memnew(Button);
|
2020-02-21 17:28:45 +00:00
|
|
|
restart_button->connect("pressed", callable_mp(this, &EditorSettingsDialog::_editor_restart));
|
2018-07-19 21:58:15 +00:00
|
|
|
restart_hb->add_child(restart_button);
|
|
|
|
restart_button->set_text(TTR("Save & Restart"));
|
2020-06-19 18:49:04 +00:00
|
|
|
restart_close_button = memnew(Button);
|
|
|
|
restart_close_button->set_flat(true);
|
2020-02-21 17:28:45 +00:00
|
|
|
restart_close_button->connect("pressed", callable_mp(this, &EditorSettingsDialog::_editor_restart_close));
|
2018-07-19 21:58:15 +00:00
|
|
|
restart_hb->add_child(restart_close_button);
|
|
|
|
restart_container->hide();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-12-17 17:22:26 +00:00
|
|
|
// Shortcuts Tab
|
|
|
|
|
|
|
|
tab_shortcuts = memnew(VBoxContainer);
|
2020-10-02 13:12:20 +00:00
|
|
|
|
2017-12-17 17:22:26 +00:00
|
|
|
tabs->add_child(tab_shortcuts);
|
|
|
|
tab_shortcuts->set_name(TTR("Shortcuts"));
|
2016-06-05 00:31:29 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
shortcut_search_box = memnew(LineEdit);
|
2020-08-28 21:39:19 +00:00
|
|
|
shortcut_search_box->set_placeholder(TTR("Search"));
|
2016-07-03 13:07:16 +00:00
|
|
|
shortcut_search_box->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
2020-10-02 13:12:20 +00:00
|
|
|
tab_shortcuts->add_child(shortcut_search_box);
|
2020-02-21 17:28:45 +00:00
|
|
|
shortcut_search_box->connect("text_changed", callable_mp(this, &EditorSettingsDialog::_filter_shortcuts));
|
2016-07-03 13:07:16 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
shortcuts = memnew(Tree);
|
2020-03-06 17:00:16 +00:00
|
|
|
shortcuts->set_v_size_flags(Control::SIZE_EXPAND_FILL);
|
2016-06-05 00:31:29 +00:00
|
|
|
shortcuts->set_columns(2);
|
|
|
|
shortcuts->set_hide_root(true);
|
|
|
|
shortcuts->set_column_titles_visible(true);
|
2017-12-02 09:58:58 +00:00
|
|
|
shortcuts->set_column_title(0, TTR("Name"));
|
|
|
|
shortcuts->set_column_title(1, TTR("Binding"));
|
2020-02-21 17:28:45 +00:00
|
|
|
shortcuts->connect("button_pressed", callable_mp(this, &EditorSettingsDialog::_shortcut_button_pressed));
|
2022-01-05 04:03:52 +00:00
|
|
|
shortcuts->connect("item_activated", callable_mp(this, &EditorSettingsDialog::_shortcut_cell_double_clicked));
|
2020-10-02 13:12:20 +00:00
|
|
|
tab_shortcuts->add_child(shortcuts);
|
2016-06-05 00:31:29 +00:00
|
|
|
|
2021-06-21 01:34:50 +00:00
|
|
|
shortcuts->set_drag_forwarding(this);
|
|
|
|
|
2020-10-02 13:12:20 +00:00
|
|
|
// Adding event dialog
|
|
|
|
shortcut_editor = memnew(InputEventConfigurationDialog);
|
|
|
|
shortcut_editor->connect("confirmed", callable_mp(this, &EditorSettingsDialog::_event_config_confirmed));
|
|
|
|
shortcut_editor->set_allowed_input_types(InputEventConfigurationDialog::InputType::INPUT_KEY);
|
|
|
|
add_child(shortcut_editor);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
set_hide_on_ok(true);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
timer = memnew(Timer);
|
2018-07-03 17:33:06 +00:00
|
|
|
timer->set_wait_time(1.5);
|
2020-02-21 17:28:45 +00:00
|
|
|
timer->connect("timeout", callable_mp(this, &EditorSettingsDialog::_settings_save));
|
2014-02-10 01:10:30 +00:00
|
|
|
timer->set_one_shot(true);
|
|
|
|
add_child(timer);
|
2020-02-21 17:28:45 +00:00
|
|
|
EditorSettings::get_singleton()->connect("settings_changed", callable_mp(this, &EditorSettingsDialog::_settings_changed));
|
2020-12-14 18:37:30 +00:00
|
|
|
get_ok_button()->set_text(TTR("Close"));
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
updating = false;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-10-15 11:36:36 +00:00
|
|
|
|
|
|
|
EditorSettingsDialog::~EditorSettingsDialog() {
|
|
|
|
memdelete(undo_redo);
|
|
|
|
}
|