2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2017-09-01 16:07:55 +02:00
|
|
|
/* project_settings_editor.h */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 02:10:30 +01: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-05 00:50:27 +01:00
|
|
|
|
2020-03-25 11:10:34 +01:00
|
|
|
#ifndef PROJECT_SETTINGS_EDITOR_H
|
|
|
|
#define PROJECT_SETTINGS_EDITOR_H
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-02-12 02:46:22 +01:00
|
|
|
#include "core/config/project_settings.h"
|
2020-11-07 23:33:38 +01:00
|
|
|
#include "core/object/undo_redo.h"
|
2020-10-01 15:04:57 +02:00
|
|
|
#include "editor/action_map_editor.h"
|
2022-02-12 02:46:22 +01:00
|
|
|
#include "editor/editor_autoload_settings.h"
|
2017-08-26 17:46:49 +02:00
|
|
|
#include "editor/editor_data.h"
|
|
|
|
#include "editor/editor_plugin_settings.h"
|
2018-07-19 23:58:15 +02:00
|
|
|
#include "editor/editor_sectioned_inspector.h"
|
2021-02-23 18:17:42 +01:00
|
|
|
#include "editor/import_defaults_editor.h"
|
2020-07-15 18:33:34 +02:00
|
|
|
#include "editor/localization_editor.h"
|
|
|
|
#include "editor/shader_globals_editor.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/gui/tab_container.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-07-19 22:00:46 +02:00
|
|
|
class ProjectSettingsEditor : public AcceptDialog {
|
|
|
|
GDCLASS(ProjectSettingsEditor, AcceptDialog);
|
2016-03-12 14:44:12 +01:00
|
|
|
|
2020-07-15 18:33:34 +02:00
|
|
|
static ProjectSettingsEditor *singleton;
|
2022-04-04 15:06:57 +02:00
|
|
|
ProjectSettings *ps = nullptr;
|
|
|
|
Timer *timer = nullptr;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
TabContainer *tab_container = nullptr;
|
|
|
|
SectionedInspector *general_settings_inspector = nullptr;
|
|
|
|
ActionMapEditor *action_map_editor = nullptr;
|
|
|
|
LocalizationEditor *localization_editor = nullptr;
|
|
|
|
EditorAutoloadSettings *autoload_settings = nullptr;
|
|
|
|
ShaderGlobalsEditor *shaders_global_variables_editor = nullptr;
|
|
|
|
EditorPluginSettings *plugin_settings = nullptr;
|
2016-02-28 03:10:44 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
LineEdit *search_box = nullptr;
|
|
|
|
CheckButton *advanced = nullptr;
|
2020-07-15 18:33:34 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
LineEdit *property_box = nullptr;
|
|
|
|
OptionButton *feature_box = nullptr;
|
|
|
|
OptionButton *type_box = nullptr;
|
|
|
|
Button *add_button = nullptr;
|
|
|
|
Button *del_button = nullptr;
|
2020-08-14 10:04:34 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
Label *restart_label = nullptr;
|
|
|
|
TextureRect *restart_icon = nullptr;
|
|
|
|
PanelContainer *restart_container = nullptr;
|
|
|
|
Button *restart_close_button = nullptr;
|
2020-07-11 00:52:52 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
ImportDefaultsEditor *import_defaults_editor = nullptr;
|
|
|
|
EditorData *data = nullptr;
|
|
|
|
UndoRedo *undo_redo = nullptr;
|
2020-07-11 00:52:52 +02:00
|
|
|
|
2021-05-03 19:07:24 +02:00
|
|
|
void _advanced_toggled(bool p_button_pressed);
|
|
|
|
void _property_box_changed(const String &p_text);
|
|
|
|
void _update_property_box();
|
2020-07-15 18:33:34 +02:00
|
|
|
void _feature_selected(int p_index);
|
2021-05-03 19:07:24 +02:00
|
|
|
void _select_type(Variant::Type p_type);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-02-01 00:19:01 +01:00
|
|
|
virtual void unhandled_input(const Ref<InputEvent> &p_event) override;
|
|
|
|
|
2020-07-15 18:33:34 +02: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 19:07:24 +02:00
|
|
|
void _delete_setting();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-19 23:58:15 +02:00
|
|
|
void _editor_restart_request();
|
|
|
|
void _editor_restart();
|
|
|
|
void _editor_restart_close();
|
|
|
|
|
2020-07-15 18:33:34 +02:00
|
|
|
void _add_feature_overrides();
|
2020-10-01 15:04:57 +02: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-01-16 08:59:02 +01:00
|
|
|
void _update_theme();
|
2020-10-01 15:04:57 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
protected:
|
2014-02-10 02:10:30 +01:00
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2017-07-19 22:00:46 +02:00
|
|
|
static ProjectSettingsEditor *get_singleton() { return singleton; }
|
2014-02-10 02:10:30 +01:00
|
|
|
void popup_project_settings();
|
2016-03-12 14:44:12 +01:00
|
|
|
void set_plugins_page();
|
2018-07-19 17:34:22 +02:00
|
|
|
void update_plugins();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-02-14 05:31:38 +01:00
|
|
|
EditorAutoloadSettings *get_autoload_settings() { return autoload_settings; }
|
2020-07-15 18:33:34 +02:00
|
|
|
TabContainer *get_tabs() { return tab_container; }
|
2017-09-03 15:29:56 +02:00
|
|
|
|
2016-02-28 03:10:44 +01:00
|
|
|
void queue_save();
|
|
|
|
|
2017-07-19 22:00:46 +02:00
|
|
|
ProjectSettingsEditor(EditorData *p_data);
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2020-03-25 11:10:34 +01:00
|
|
|
#endif // PROJECT_SETTINGS_EDITOR_H
|