2023-01-05 12:25:55 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* project_settings_editor.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* 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. */
|
|
|
|
/**************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2020-03-25 10:10:34 +00:00
|
|
|
#ifndef PROJECT_SETTINGS_EDITOR_H
|
|
|
|
#define PROJECT_SETTINGS_EDITOR_H
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-02-12 01:46:22 +00:00
|
|
|
#include "core/config/project_settings.h"
|
2020-10-01 13:04:57 +00:00
|
|
|
#include "editor/action_map_editor.h"
|
2022-02-12 01:46:22 +00:00
|
|
|
#include "editor/editor_autoload_settings.h"
|
2017-08-26 15:46:49 +00:00
|
|
|
#include "editor/editor_data.h"
|
|
|
|
#include "editor/editor_plugin_settings.h"
|
2018-07-19 21:58:15 +00:00
|
|
|
#include "editor/editor_sectioned_inspector.h"
|
2021-02-23 17:17:42 +00:00
|
|
|
#include "editor/import_defaults_editor.h"
|
2020-07-15 16:33:34 +00:00
|
|
|
#include "editor/localization_editor.h"
|
|
|
|
#include "editor/shader_globals_editor.h"
|
2016-03-12 13:44:12 +00:00
|
|
|
#include "scene/gui/tab_container.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-01-02 17:56:33 +00:00
|
|
|
class FileSystemDock;
|
|
|
|
|
2017-07-19 20:00:46 +00:00
|
|
|
class ProjectSettingsEditor : public AcceptDialog {
|
|
|
|
GDCLASS(ProjectSettingsEditor, AcceptDialog);
|
2016-03-12 13:44:12 +00:00
|
|
|
|
2020-07-15 16:33:34 +00:00
|
|
|
static ProjectSettingsEditor *singleton;
|
2022-04-04 13:06:57 +00:00
|
|
|
ProjectSettings *ps = nullptr;
|
|
|
|
Timer *timer = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
TabContainer *tab_container = nullptr;
|
2022-10-06 10:51:30 +00:00
|
|
|
VBoxContainer *general_editor = nullptr;
|
2022-04-04 13:06:57 +00:00
|
|
|
SectionedInspector *general_settings_inspector = nullptr;
|
|
|
|
ActionMapEditor *action_map_editor = nullptr;
|
|
|
|
LocalizationEditor *localization_editor = nullptr;
|
|
|
|
EditorAutoloadSettings *autoload_settings = nullptr;
|
2022-04-03 16:56:43 +00:00
|
|
|
ShaderGlobalsEditor *shaders_global_shader_uniforms_editor = nullptr;
|
2022-04-04 13:06:57 +00:00
|
|
|
EditorPluginSettings *plugin_settings = nullptr;
|
2016-02-28 02:10:44 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
LineEdit *search_box = nullptr;
|
|
|
|
CheckButton *advanced = nullptr;
|
2020-07-15 16:33:34 +00:00
|
|
|
|
2021-05-24 19:16:02 +00:00
|
|
|
HBoxContainer *custom_properties = nullptr;
|
2022-04-04 13:06:57 +00:00
|
|
|
LineEdit *property_box = nullptr;
|
|
|
|
OptionButton *feature_box = nullptr;
|
|
|
|
OptionButton *type_box = nullptr;
|
|
|
|
Button *add_button = nullptr;
|
|
|
|
Button *del_button = nullptr;
|
2020-08-14 08:04:34 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
Label *restart_label = nullptr;
|
|
|
|
TextureRect *restart_icon = nullptr;
|
|
|
|
PanelContainer *restart_container = nullptr;
|
|
|
|
Button *restart_close_button = nullptr;
|
2020-07-10 22:52:52 +00:00
|
|
|
|
2022-04-04 13:06:57 +00:00
|
|
|
ImportDefaultsEditor *import_defaults_editor = nullptr;
|
|
|
|
EditorData *data = nullptr;
|
2020-07-10 22:52:52 +00:00
|
|
|
|
2021-05-03 17:07:24 +00:00
|
|
|
void _advanced_toggled(bool p_button_pressed);
|
2021-05-24 19:16:02 +00:00
|
|
|
void _update_advanced(bool p_is_advanced);
|
2021-05-03 17:07:24 +00:00
|
|
|
void _property_box_changed(const String &p_text);
|
|
|
|
void _update_property_box();
|
2020-07-15 16:33:34 +00:00
|
|
|
void _feature_selected(int p_index);
|
2021-05-03 17:07:24 +00:00
|
|
|
void _select_type(Variant::Type p_type);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-01-11 13:59:52 +00:00
|
|
|
virtual void shortcut_input(const Ref<InputEvent> &p_event) override;
|
2022-01-31 23:19:01 +00:00
|
|
|
|
2020-07-15 16:33:34 +00:00
|
|
|
String _get_setting_name() const;
|
|
|
|
void _setting_edited(const String &p_name);
|
|
|
|
void _setting_selected(const String &p_path);
|
|
|
|
void _add_setting();
|
2021-05-03 17:07:24 +00:00
|
|
|
void _delete_setting();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-07-19 21:58:15 +00:00
|
|
|
void _editor_restart_request();
|
|
|
|
void _editor_restart();
|
|
|
|
void _editor_restart_close();
|
|
|
|
|
2020-07-15 16:33:34 +00:00
|
|
|
void _add_feature_overrides();
|
2020-10-01 13:04:57 +00:00
|
|
|
|
|
|
|
void _action_added(const String &p_name);
|
|
|
|
void _action_edited(const String &p_name, const Dictionary &p_action);
|
|
|
|
void _action_removed(const String &p_name);
|
|
|
|
void _action_renamed(const String &p_old_name, const String &p_new_name);
|
|
|
|
void _action_reordered(const String &p_action_name, const String &p_relative_to, bool p_before);
|
|
|
|
void _update_action_map_editor();
|
2022-08-29 09:04:31 +00:00
|
|
|
void _update_theme();
|
2020-10-01 13:04:57 +00:00
|
|
|
|
2022-12-21 11:48:59 +00:00
|
|
|
void _input_filter_focused();
|
|
|
|
void _input_filter_unfocused();
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2017-07-19 20:00:46 +00:00
|
|
|
static ProjectSettingsEditor *get_singleton() { return singleton; }
|
2023-03-10 10:10:05 +00:00
|
|
|
void popup_project_settings(bool p_clear_filter = false);
|
2016-03-12 13:44:12 +00:00
|
|
|
void set_plugins_page();
|
2022-10-06 10:51:30 +00:00
|
|
|
void set_general_page(const String &p_category);
|
2018-07-19 15:34:22 +00:00
|
|
|
void update_plugins();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-02-14 04:31:38 +00:00
|
|
|
EditorAutoloadSettings *get_autoload_settings() { return autoload_settings; }
|
2020-07-15 16:33:34 +00:00
|
|
|
TabContainer *get_tabs() { return tab_container; }
|
2017-09-03 13:29:56 +00:00
|
|
|
|
2016-02-28 02:10:44 +00:00
|
|
|
void queue_save();
|
2022-01-02 17:56:33 +00:00
|
|
|
void connect_filesystem_dock_signals(FileSystemDock *p_fs_dock);
|
2016-02-28 02:10:44 +00:00
|
|
|
|
2017-07-19 20:00:46 +00:00
|
|
|
ProjectSettingsEditor(EditorData *p_data);
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2020-03-25 10:10:34 +00:00
|
|
|
#endif // PROJECT_SETTINGS_EDITOR_H
|