2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* theme_editor_plugin.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* 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
|
|
|
/*************************************************************************/
|
2021-01-01 19:13:46 +00:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 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
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "theme_editor_plugin.h"
|
2017-01-16 07:04:19 +00:00
|
|
|
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/os/file_access.h"
|
2021-03-01 15:18:53 +00:00
|
|
|
#include "core/os/keyboard.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/version.h"
|
2019-12-24 07:17:23 +00:00
|
|
|
#include "editor/editor_scale.h"
|
|
|
|
#include "scene/gui/progress_bar.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
void ThemeItemEditorDialog::_dialog_about_to_show() {
|
|
|
|
ERR_FAIL_COND(edited_theme.is_null());
|
|
|
|
|
|
|
|
_update_edit_types();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_update_edit_types() {
|
|
|
|
Ref<Theme> base_theme = Theme::get_default();
|
|
|
|
|
|
|
|
List<StringName> theme_types;
|
|
|
|
edited_theme->get_type_list(&theme_types);
|
|
|
|
theme_types.sort_custom<StringName::AlphCompare>();
|
|
|
|
|
|
|
|
bool item_reselected = false;
|
|
|
|
edit_type_list->clear();
|
|
|
|
int e_idx = 0;
|
|
|
|
for (List<StringName>::Element *E = theme_types.front(); E; E = E->next()) {
|
|
|
|
Ref<Texture2D> item_icon;
|
|
|
|
if (E->get() == "") {
|
|
|
|
item_icon = get_theme_icon("NodeDisabled", "EditorIcons");
|
|
|
|
} else {
|
|
|
|
item_icon = EditorNode::get_singleton()->get_class_icon(E->get(), "NodeDisabled");
|
|
|
|
}
|
|
|
|
edit_type_list->add_item(E->get(), item_icon);
|
|
|
|
|
|
|
|
if (E->get() == edited_item_type) {
|
|
|
|
edit_type_list->select(e_idx);
|
|
|
|
item_reselected = true;
|
|
|
|
}
|
|
|
|
e_idx++;
|
|
|
|
}
|
|
|
|
if (!item_reselected) {
|
|
|
|
edited_item_type = "";
|
|
|
|
|
|
|
|
if (edit_type_list->get_item_count() > 0) {
|
|
|
|
edit_type_list->select(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
List<StringName> default_types;
|
|
|
|
base_theme->get_type_list(&default_types);
|
|
|
|
default_types.sort_custom<StringName::AlphCompare>();
|
|
|
|
|
|
|
|
edit_add_class_options->clear();
|
|
|
|
for (List<StringName>::Element *E = default_types.front(); E; E = E->next()) {
|
|
|
|
edit_add_class_options->add_item(E->get());
|
|
|
|
}
|
|
|
|
|
|
|
|
String selected_type = "";
|
|
|
|
Vector<int> selected_ids = edit_type_list->get_selected_items();
|
|
|
|
if (selected_ids.size() > 0) {
|
|
|
|
selected_type = edit_type_list->get_item_text(selected_ids[0]);
|
|
|
|
|
|
|
|
edit_items_add_color->set_disabled(false);
|
|
|
|
edit_items_add_constant->set_disabled(false);
|
|
|
|
edit_items_add_font->set_disabled(false);
|
|
|
|
edit_items_add_font_size->set_disabled(false);
|
|
|
|
edit_items_add_icon->set_disabled(false);
|
|
|
|
edit_items_add_stylebox->set_disabled(false);
|
|
|
|
|
|
|
|
edit_items_remove_class->set_disabled(false);
|
|
|
|
edit_items_remove_custom->set_disabled(false);
|
|
|
|
edit_items_remove_all->set_disabled(false);
|
|
|
|
} else {
|
|
|
|
edit_items_add_color->set_disabled(true);
|
|
|
|
edit_items_add_constant->set_disabled(true);
|
|
|
|
edit_items_add_font->set_disabled(true);
|
|
|
|
edit_items_add_font_size->set_disabled(true);
|
|
|
|
edit_items_add_icon->set_disabled(true);
|
|
|
|
edit_items_add_stylebox->set_disabled(true);
|
|
|
|
|
|
|
|
edit_items_remove_class->set_disabled(true);
|
|
|
|
edit_items_remove_custom->set_disabled(true);
|
|
|
|
edit_items_remove_all->set_disabled(true);
|
|
|
|
}
|
|
|
|
_update_edit_item_tree(selected_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_edited_type_selected(int p_item_idx) {
|
|
|
|
String selected_type = edit_type_list->get_item_text(p_item_idx);
|
|
|
|
_update_edit_item_tree(selected_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_update_edit_item_tree(String p_item_type) {
|
|
|
|
edited_item_type = p_item_type;
|
|
|
|
|
|
|
|
edit_items_tree->clear();
|
|
|
|
TreeItem *root = edit_items_tree->create_item();
|
|
|
|
|
|
|
|
List<StringName> names;
|
|
|
|
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
edited_theme->get_color_list(p_item_type, &names);
|
|
|
|
|
|
|
|
if (names.size() > 0) {
|
|
|
|
TreeItem *color_root = edit_items_tree->create_item(root);
|
|
|
|
color_root->set_metadata(0, Theme::DATA_TYPE_COLOR);
|
|
|
|
color_root->set_icon(0, get_theme_icon("Color", "EditorIcons"));
|
|
|
|
color_root->set_text(0, TTR("Colors"));
|
|
|
|
color_root->add_button(0, get_theme_icon("Clear", "EditorIcons"), ITEMS_TREE_REMOVE_DATA_TYPE, false, TTR("Remove All Color Items"));
|
|
|
|
|
|
|
|
names.sort_custom<StringName::AlphCompare>();
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
TreeItem *item = edit_items_tree->create_item(color_root);
|
|
|
|
item->set_text(0, E->get());
|
|
|
|
item->add_button(0, get_theme_icon("Edit", "EditorIcons"), ITEMS_TREE_RENAME_ITEM, false, TTR("Rename Item"));
|
|
|
|
item->add_button(0, get_theme_icon("Remove", "EditorIcons"), ITEMS_TREE_REMOVE_ITEM, false, TTR("Remove Item"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
edited_theme->get_constant_list(p_item_type, &names);
|
|
|
|
|
|
|
|
if (names.size() > 0) {
|
|
|
|
TreeItem *constant_root = edit_items_tree->create_item(root);
|
|
|
|
constant_root->set_metadata(0, Theme::DATA_TYPE_CONSTANT);
|
|
|
|
constant_root->set_icon(0, get_theme_icon("MemberConstant", "EditorIcons"));
|
|
|
|
constant_root->set_text(0, TTR("Constants"));
|
|
|
|
constant_root->add_button(0, get_theme_icon("Clear", "EditorIcons"), ITEMS_TREE_REMOVE_DATA_TYPE, false, TTR("Remove All Constant Items"));
|
|
|
|
|
|
|
|
names.sort_custom<StringName::AlphCompare>();
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
TreeItem *item = edit_items_tree->create_item(constant_root);
|
|
|
|
item->set_text(0, E->get());
|
|
|
|
item->add_button(0, get_theme_icon("Edit", "EditorIcons"), ITEMS_TREE_RENAME_ITEM, false, TTR("Rename Item"));
|
|
|
|
item->add_button(0, get_theme_icon("Remove", "EditorIcons"), ITEMS_TREE_REMOVE_ITEM, false, TTR("Remove Item"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
edited_theme->get_font_list(p_item_type, &names);
|
|
|
|
|
|
|
|
if (names.size() > 0) {
|
|
|
|
TreeItem *font_root = edit_items_tree->create_item(root);
|
|
|
|
font_root->set_metadata(0, Theme::DATA_TYPE_FONT);
|
|
|
|
font_root->set_icon(0, get_theme_icon("Font", "EditorIcons"));
|
|
|
|
font_root->set_text(0, TTR("Fonts"));
|
|
|
|
font_root->add_button(0, get_theme_icon("Clear", "EditorIcons"), ITEMS_TREE_REMOVE_DATA_TYPE, false, TTR("Remove All Font Items"));
|
|
|
|
|
|
|
|
names.sort_custom<StringName::AlphCompare>();
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
TreeItem *item = edit_items_tree->create_item(font_root);
|
|
|
|
item->set_text(0, E->get());
|
|
|
|
item->add_button(0, get_theme_icon("Edit", "EditorIcons"), ITEMS_TREE_RENAME_ITEM, false, TTR("Rename Item"));
|
|
|
|
item->add_button(0, get_theme_icon("Remove", "EditorIcons"), ITEMS_TREE_REMOVE_ITEM, false, TTR("Remove Item"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
edited_theme->get_font_size_list(p_item_type, &names);
|
|
|
|
|
|
|
|
if (names.size() > 0) {
|
|
|
|
TreeItem *font_size_root = edit_items_tree->create_item(root);
|
|
|
|
font_size_root->set_metadata(0, Theme::DATA_TYPE_FONT_SIZE);
|
|
|
|
font_size_root->set_icon(0, get_theme_icon("FontSize", "EditorIcons"));
|
|
|
|
font_size_root->set_text(0, TTR("Font Sizes"));
|
|
|
|
font_size_root->add_button(0, get_theme_icon("Clear", "EditorIcons"), ITEMS_TREE_REMOVE_DATA_TYPE, false, TTR("Remove All Font Size Items"));
|
|
|
|
|
|
|
|
names.sort_custom<StringName::AlphCompare>();
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
TreeItem *item = edit_items_tree->create_item(font_size_root);
|
|
|
|
item->set_text(0, E->get());
|
|
|
|
item->add_button(0, get_theme_icon("Edit", "EditorIcons"), ITEMS_TREE_RENAME_ITEM, false, TTR("Rename Item"));
|
|
|
|
item->add_button(0, get_theme_icon("Remove", "EditorIcons"), ITEMS_TREE_REMOVE_ITEM, false, TTR("Remove Item"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
edited_theme->get_icon_list(p_item_type, &names);
|
|
|
|
|
|
|
|
if (names.size() > 0) {
|
|
|
|
TreeItem *icon_root = edit_items_tree->create_item(root);
|
|
|
|
icon_root->set_metadata(0, Theme::DATA_TYPE_ICON);
|
|
|
|
icon_root->set_icon(0, get_theme_icon("ImageTexture", "EditorIcons"));
|
|
|
|
icon_root->set_text(0, TTR("Icons"));
|
|
|
|
icon_root->add_button(0, get_theme_icon("Clear", "EditorIcons"), ITEMS_TREE_REMOVE_DATA_TYPE, false, TTR("Remove All Icon Items"));
|
|
|
|
|
|
|
|
names.sort_custom<StringName::AlphCompare>();
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
TreeItem *item = edit_items_tree->create_item(icon_root);
|
|
|
|
item->set_text(0, E->get());
|
|
|
|
item->add_button(0, get_theme_icon("Edit", "EditorIcons"), ITEMS_TREE_RENAME_ITEM, false, TTR("Rename Item"));
|
|
|
|
item->add_button(0, get_theme_icon("Remove", "EditorIcons"), ITEMS_TREE_REMOVE_ITEM, false, TTR("Remove Item"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
edited_theme->get_stylebox_list(p_item_type, &names);
|
|
|
|
|
|
|
|
if (names.size() > 0) {
|
|
|
|
TreeItem *stylebox_root = edit_items_tree->create_item(root);
|
|
|
|
stylebox_root->set_metadata(0, Theme::DATA_TYPE_STYLEBOX);
|
|
|
|
stylebox_root->set_icon(0, get_theme_icon("StyleBoxFlat", "EditorIcons"));
|
|
|
|
stylebox_root->set_text(0, TTR("Styleboxes"));
|
|
|
|
stylebox_root->add_button(0, get_theme_icon("Clear", "EditorIcons"), ITEMS_TREE_REMOVE_DATA_TYPE, false, TTR("Remove All StyleBox Items"));
|
|
|
|
|
|
|
|
names.sort_custom<StringName::AlphCompare>();
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
TreeItem *item = edit_items_tree->create_item(stylebox_root);
|
|
|
|
item->set_text(0, E->get());
|
|
|
|
item->add_button(0, get_theme_icon("Edit", "EditorIcons"), ITEMS_TREE_RENAME_ITEM, false, TTR("Rename Item"));
|
|
|
|
item->add_button(0, get_theme_icon("Remove", "EditorIcons"), ITEMS_TREE_REMOVE_ITEM, false, TTR("Remove Item"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_item_tree_button_pressed(Object *p_item, int p_column, int p_id) {
|
|
|
|
TreeItem *item = Object::cast_to<TreeItem>(p_item);
|
|
|
|
if (!item) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (p_id) {
|
|
|
|
case ITEMS_TREE_RENAME_ITEM: {
|
|
|
|
String item_name = item->get_text(0);
|
|
|
|
int data_type = item->get_parent()->get_metadata(0);
|
|
|
|
_open_rename_theme_item_dialog((Theme::DataType)data_type, item_name);
|
|
|
|
} break;
|
|
|
|
case ITEMS_TREE_REMOVE_ITEM: {
|
|
|
|
String item_name = item->get_text(0);
|
|
|
|
int data_type = item->get_parent()->get_metadata(0);
|
|
|
|
edited_theme->clear_theme_item((Theme::DataType)data_type, item_name, edited_item_type);
|
|
|
|
} break;
|
|
|
|
case ITEMS_TREE_REMOVE_DATA_TYPE: {
|
|
|
|
int data_type = item->get_metadata(0);
|
|
|
|
_remove_data_type_items((Theme::DataType)data_type, edited_item_type);
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
|
|
|
_update_edit_item_tree(edited_item_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_add_class_type_items() {
|
|
|
|
int selected_idx = edit_add_class_options->get_selected();
|
|
|
|
String type_name = edit_add_class_options->get_item_text(selected_idx);
|
|
|
|
List<StringName> names;
|
|
|
|
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
Theme::get_default()->get_icon_list(type_name, &names);
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
edited_theme->set_icon(E->get(), type_name, Ref<Texture2D>());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
Theme::get_default()->get_stylebox_list(type_name, &names);
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
edited_theme->set_stylebox(E->get(), type_name, Ref<StyleBox>());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
Theme::get_default()->get_font_list(type_name, &names);
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
edited_theme->set_font(E->get(), type_name, Ref<Font>());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
Theme::get_default()->get_font_size_list(type_name, &names);
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
edited_theme->set_font_size(E->get(), type_name, Theme::get_default()->get_font_size(E->get(), type_name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
Theme::get_default()->get_color_list(type_name, &names);
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
edited_theme->set_color(E->get(), type_name, Theme::get_default()->get_color(E->get(), type_name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
names.clear();
|
|
|
|
Theme::get_default()->get_constant_list(type_name, &names);
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
edited_theme->set_constant(E->get(), type_name, Theme::get_default()->get_constant(E->get(), type_name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_update_edit_types();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_add_custom_type() {
|
|
|
|
edited_theme->add_icon_type(edit_add_custom_value->get_text());
|
|
|
|
edited_theme->add_stylebox_type(edit_add_custom_value->get_text());
|
|
|
|
edited_theme->add_font_type(edit_add_custom_value->get_text());
|
|
|
|
edited_theme->add_font_size_type(edit_add_custom_value->get_text());
|
|
|
|
edited_theme->add_color_type(edit_add_custom_value->get_text());
|
|
|
|
edited_theme->add_constant_type(edit_add_custom_value->get_text());
|
|
|
|
_update_edit_types();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_add_theme_item(Theme::DataType p_data_type, String p_item_name, String p_item_type) {
|
|
|
|
switch (p_data_type) {
|
|
|
|
case Theme::DATA_TYPE_ICON:
|
|
|
|
edited_theme->set_icon(p_item_name, p_item_type, Ref<Texture2D>());
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_STYLEBOX:
|
|
|
|
edited_theme->set_stylebox(p_item_name, p_item_type, Ref<StyleBox>());
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_FONT:
|
|
|
|
edited_theme->set_font(p_item_name, p_item_type, Ref<Font>());
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_FONT_SIZE:
|
|
|
|
edited_theme->set_font_size(p_item_name, p_item_type, -1);
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_COLOR:
|
|
|
|
edited_theme->set_color(p_item_name, p_item_type, Color());
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_CONSTANT:
|
|
|
|
edited_theme->set_constant(p_item_name, p_item_type, 0);
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_MAX:
|
|
|
|
break; // Can't happen, but silences warning.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_remove_data_type_items(Theme::DataType p_data_type, String p_item_type) {
|
|
|
|
List<StringName> names;
|
|
|
|
|
|
|
|
edited_theme->get_theme_item_list(p_data_type, p_item_type, &names);
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
edited_theme->clear_theme_item(p_data_type, E->get(), p_item_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_remove_class_items() {
|
|
|
|
List<StringName> names;
|
|
|
|
|
|
|
|
for (int dt = 0; dt < Theme::DATA_TYPE_MAX; dt++) {
|
|
|
|
Theme::DataType data_type = (Theme::DataType)dt;
|
|
|
|
|
|
|
|
names.clear();
|
|
|
|
Theme::get_default()->get_theme_item_list(data_type, edited_item_type, &names);
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
if (edited_theme->has_theme_item_nocheck(data_type, E->get(), edited_item_type)) {
|
|
|
|
edited_theme->clear_theme_item(data_type, E->get(), edited_item_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_update_edit_item_tree(edited_item_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_remove_custom_items() {
|
|
|
|
List<StringName> names;
|
|
|
|
|
|
|
|
for (int dt = 0; dt < Theme::DATA_TYPE_MAX; dt++) {
|
|
|
|
Theme::DataType data_type = (Theme::DataType)dt;
|
|
|
|
|
|
|
|
names.clear();
|
|
|
|
edited_theme->get_theme_item_list(data_type, edited_item_type, &names);
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
if (!Theme::get_default()->has_theme_item_nocheck(data_type, E->get(), edited_item_type)) {
|
|
|
|
edited_theme->clear_theme_item(data_type, E->get(), edited_item_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_update_edit_item_tree(edited_item_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_remove_all_items() {
|
|
|
|
List<StringName> names;
|
|
|
|
|
|
|
|
for (int dt = 0; dt < Theme::DATA_TYPE_MAX; dt++) {
|
|
|
|
Theme::DataType data_type = (Theme::DataType)dt;
|
|
|
|
|
|
|
|
names.clear();
|
|
|
|
edited_theme->get_theme_item_list(data_type, edited_item_type, &names);
|
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
|
|
|
edited_theme->clear_theme_item(data_type, E->get(), edited_item_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_update_edit_item_tree(edited_item_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_open_add_theme_item_dialog(int p_data_type) {
|
|
|
|
ERR_FAIL_INDEX_MSG(p_data_type, Theme::DATA_TYPE_MAX, "Theme item data type is out of bounds.");
|
|
|
|
|
|
|
|
item_popup_mode = CREATE_THEME_ITEM;
|
|
|
|
edit_item_data_type = (Theme::DataType)p_data_type;
|
|
|
|
|
|
|
|
switch (edit_item_data_type) {
|
|
|
|
case Theme::DATA_TYPE_COLOR:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Add Color Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_CONSTANT:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Add Constant Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_FONT:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Add Font Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_FONT_SIZE:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Add Font Size Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_ICON:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Add Icon Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_STYLEBOX:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Add Stylebox Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_MAX:
|
|
|
|
break; // Can't happen, but silences warning.
|
|
|
|
}
|
|
|
|
|
|
|
|
edit_theme_item_old_vb->hide();
|
|
|
|
theme_item_name->clear();
|
|
|
|
edit_theme_item_dialog->popup_centered(Size2(380, 110) * EDSCALE);
|
|
|
|
theme_item_name->grab_focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_open_rename_theme_item_dialog(Theme::DataType p_data_type, String p_item_name) {
|
|
|
|
ERR_FAIL_INDEX_MSG(p_data_type, Theme::DATA_TYPE_MAX, "Theme item data type is out of bounds.");
|
|
|
|
|
|
|
|
item_popup_mode = RENAME_THEME_ITEM;
|
|
|
|
edit_item_data_type = p_data_type;
|
|
|
|
edit_item_old_name = p_item_name;
|
|
|
|
|
|
|
|
switch (edit_item_data_type) {
|
|
|
|
case Theme::DATA_TYPE_COLOR:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Rename Color Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_CONSTANT:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Rename Constant Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_FONT:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Rename Font Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_FONT_SIZE:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Rename Font Size Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_ICON:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Rename Icon Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_STYLEBOX:
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Rename Stylebox Item"));
|
|
|
|
break;
|
|
|
|
case Theme::DATA_TYPE_MAX:
|
|
|
|
break; // Can't happen, but silences warning.
|
|
|
|
}
|
|
|
|
|
|
|
|
edit_theme_item_old_vb->show();
|
|
|
|
theme_item_old_name->set_text(p_item_name);
|
|
|
|
theme_item_name->set_text(p_item_name);
|
|
|
|
edit_theme_item_dialog->popup_centered(Size2(380, 140) * EDSCALE);
|
|
|
|
theme_item_name->grab_focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_confirm_edit_theme_item() {
|
|
|
|
if (item_popup_mode == CREATE_THEME_ITEM) {
|
|
|
|
_add_theme_item(edit_item_data_type, theme_item_name->get_text(), edited_item_type);
|
|
|
|
} else if (item_popup_mode == RENAME_THEME_ITEM) {
|
|
|
|
edited_theme->rename_theme_item(edit_item_data_type, edit_item_old_name, theme_item_name->get_text(), edited_item_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
item_popup_mode = ITEM_POPUP_MODE_MAX;
|
|
|
|
edit_item_data_type = Theme::DATA_TYPE_MAX;
|
|
|
|
edit_item_old_name = "";
|
|
|
|
|
|
|
|
_update_edit_item_tree(edited_item_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_edit_theme_item_gui_input(const Ref<InputEvent> &p_event) {
|
|
|
|
Ref<InputEventKey> k = p_event;
|
|
|
|
|
|
|
|
if (k.is_valid()) {
|
|
|
|
if (!k->is_pressed()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (k->get_keycode()) {
|
|
|
|
case KEY_KP_ENTER:
|
|
|
|
case KEY_ENTER: {
|
|
|
|
_confirm_edit_theme_item();
|
|
|
|
edit_theme_item_dialog->hide();
|
|
|
|
edit_theme_item_dialog->set_input_as_handled();
|
|
|
|
} break;
|
|
|
|
case KEY_ESCAPE: {
|
|
|
|
edit_theme_item_dialog->hide();
|
|
|
|
edit_theme_item_dialog->set_input_as_handled();
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::_notification(int p_what) {
|
|
|
|
switch (p_what) {
|
|
|
|
case NOTIFICATION_ENTER_TREE: {
|
|
|
|
connect("about_to_popup", callable_mp(this, &ThemeItemEditorDialog::_dialog_about_to_show));
|
|
|
|
[[fallthrough]];
|
|
|
|
}
|
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
|
|
|
edit_items_add_color->set_icon(get_theme_icon("Color", "EditorIcons"));
|
|
|
|
edit_items_add_constant->set_icon(get_theme_icon("MemberConstant", "EditorIcons"));
|
|
|
|
edit_items_add_font->set_icon(get_theme_icon("Font", "EditorIcons"));
|
|
|
|
edit_items_add_font_size->set_icon(get_theme_icon("FontSize", "EditorIcons"));
|
|
|
|
edit_items_add_icon->set_icon(get_theme_icon("ImageTexture", "EditorIcons"));
|
|
|
|
edit_items_add_stylebox->set_icon(get_theme_icon("StyleBoxFlat", "EditorIcons"));
|
|
|
|
|
|
|
|
edit_items_remove_class->set_icon(get_theme_icon("Control", "EditorIcons"));
|
|
|
|
edit_items_remove_custom->set_icon(get_theme_icon("ThemeRemoveCustomItems", "EditorIcons"));
|
|
|
|
edit_items_remove_all->set_icon(get_theme_icon("ThemeRemoveAllItems", "EditorIcons"));
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeItemEditorDialog::set_edited_theme(const Ref<Theme> &p_theme) {
|
|
|
|
edited_theme = p_theme;
|
|
|
|
}
|
|
|
|
|
|
|
|
ThemeItemEditorDialog::ThemeItemEditorDialog() {
|
|
|
|
set_title(TTR("Edit Theme Items"));
|
|
|
|
|
|
|
|
HSplitContainer *edit_dialog_hs = memnew(HSplitContainer);
|
|
|
|
add_child(edit_dialog_hs);
|
|
|
|
|
|
|
|
VBoxContainer *edit_dialog_side_vb = memnew(VBoxContainer);
|
|
|
|
edit_dialog_side_vb->set_custom_minimum_size(Size2(200.0, 0.0) * EDSCALE);
|
|
|
|
edit_dialog_hs->add_child(edit_dialog_side_vb);
|
|
|
|
|
|
|
|
Label *edit_type_label = memnew(Label);
|
|
|
|
edit_type_label->set_text(TTR("Types:"));
|
|
|
|
edit_dialog_side_vb->add_child(edit_type_label);
|
|
|
|
|
|
|
|
edit_type_list = memnew(ItemList);
|
|
|
|
edit_type_list->set_v_size_flags(Control::SIZE_EXPAND_FILL);
|
|
|
|
edit_dialog_side_vb->add_child(edit_type_list);
|
|
|
|
edit_type_list->connect("item_selected", callable_mp(this, &ThemeItemEditorDialog::_edited_type_selected));
|
|
|
|
|
|
|
|
Label *edit_add_class_label = memnew(Label);
|
|
|
|
edit_add_class_label->set_text(TTR("Add Type from Class:"));
|
|
|
|
edit_dialog_side_vb->add_child(edit_add_class_label);
|
|
|
|
|
|
|
|
HBoxContainer *edit_add_class = memnew(HBoxContainer);
|
|
|
|
edit_dialog_side_vb->add_child(edit_add_class);
|
|
|
|
edit_add_class_options = memnew(OptionButton);
|
|
|
|
edit_add_class_options->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
|
|
|
edit_add_class->add_child(edit_add_class_options);
|
|
|
|
Button *edit_add_class_button = memnew(Button);
|
|
|
|
edit_add_class_button->set_text(TTR("Add"));
|
|
|
|
edit_add_class->add_child(edit_add_class_button);
|
|
|
|
edit_add_class_button->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_add_class_type_items));
|
|
|
|
|
|
|
|
Label *edit_add_custom_label = memnew(Label);
|
|
|
|
edit_add_custom_label->set_text(TTR("Add Custom Type:"));
|
|
|
|
edit_dialog_side_vb->add_child(edit_add_custom_label);
|
|
|
|
|
|
|
|
HBoxContainer *edit_add_custom = memnew(HBoxContainer);
|
|
|
|
edit_dialog_side_vb->add_child(edit_add_custom);
|
|
|
|
edit_add_custom_value = memnew(LineEdit);
|
|
|
|
edit_add_custom_value->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
|
|
|
edit_add_custom->add_child(edit_add_custom_value);
|
|
|
|
Button *edit_add_custom_button = memnew(Button);
|
|
|
|
edit_add_custom_button->set_text(TTR("Add"));
|
|
|
|
edit_add_custom->add_child(edit_add_custom_button);
|
|
|
|
edit_add_custom_button->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_add_custom_type));
|
|
|
|
|
|
|
|
VBoxContainer *edit_items_vb = memnew(VBoxContainer);
|
|
|
|
edit_items_vb->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
|
|
|
edit_dialog_hs->add_child(edit_items_vb);
|
|
|
|
|
|
|
|
HBoxContainer *edit_items_toolbar = memnew(HBoxContainer);
|
|
|
|
edit_items_vb->add_child(edit_items_toolbar);
|
|
|
|
|
|
|
|
Label *edit_items_toolbar_add_label = memnew(Label);
|
|
|
|
edit_items_toolbar_add_label->set_text(TTR("Add:"));
|
|
|
|
edit_items_toolbar->add_child(edit_items_toolbar_add_label);
|
|
|
|
|
|
|
|
edit_items_add_color = memnew(Button);
|
|
|
|
edit_items_add_color->set_tooltip(TTR("Add Color Item"));
|
|
|
|
edit_items_add_color->set_flat(true);
|
|
|
|
edit_items_add_color->set_disabled(true);
|
|
|
|
edit_items_toolbar->add_child(edit_items_add_color);
|
|
|
|
edit_items_add_color->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_open_add_theme_item_dialog), varray(Theme::DATA_TYPE_COLOR));
|
|
|
|
|
|
|
|
edit_items_add_constant = memnew(Button);
|
|
|
|
edit_items_add_constant->set_tooltip(TTR("Add Constant Item"));
|
|
|
|
edit_items_add_constant->set_flat(true);
|
|
|
|
edit_items_add_constant->set_disabled(true);
|
|
|
|
edit_items_toolbar->add_child(edit_items_add_constant);
|
|
|
|
edit_items_add_constant->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_open_add_theme_item_dialog), varray(Theme::DATA_TYPE_CONSTANT));
|
|
|
|
|
|
|
|
edit_items_add_font = memnew(Button);
|
|
|
|
edit_items_add_font->set_tooltip(TTR("Add Font Item"));
|
|
|
|
edit_items_add_font->set_flat(true);
|
|
|
|
edit_items_add_font->set_disabled(true);
|
|
|
|
edit_items_toolbar->add_child(edit_items_add_font);
|
|
|
|
edit_items_add_font->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_open_add_theme_item_dialog), varray(Theme::DATA_TYPE_FONT));
|
|
|
|
|
|
|
|
edit_items_add_font_size = memnew(Button);
|
|
|
|
edit_items_add_font_size->set_tooltip(TTR("Add Font Size Item"));
|
|
|
|
edit_items_add_font_size->set_flat(true);
|
|
|
|
edit_items_add_font_size->set_disabled(true);
|
|
|
|
edit_items_toolbar->add_child(edit_items_add_font_size);
|
|
|
|
edit_items_add_font_size->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_open_add_theme_item_dialog), varray(Theme::DATA_TYPE_FONT_SIZE));
|
|
|
|
|
|
|
|
edit_items_add_icon = memnew(Button);
|
|
|
|
edit_items_add_icon->set_tooltip(TTR("Add Icon Item"));
|
|
|
|
edit_items_add_icon->set_flat(true);
|
|
|
|
edit_items_add_icon->set_disabled(true);
|
|
|
|
edit_items_toolbar->add_child(edit_items_add_icon);
|
|
|
|
edit_items_add_icon->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_open_add_theme_item_dialog), varray(Theme::DATA_TYPE_ICON));
|
|
|
|
|
|
|
|
edit_items_add_stylebox = memnew(Button);
|
|
|
|
edit_items_add_stylebox->set_tooltip(TTR("Add StyleBox Item"));
|
|
|
|
edit_items_add_stylebox->set_flat(true);
|
|
|
|
edit_items_add_stylebox->set_disabled(true);
|
|
|
|
edit_items_toolbar->add_child(edit_items_add_stylebox);
|
|
|
|
edit_items_add_stylebox->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_open_add_theme_item_dialog), varray(Theme::DATA_TYPE_STYLEBOX));
|
|
|
|
|
|
|
|
edit_items_toolbar->add_child(memnew(VSeparator));
|
|
|
|
|
|
|
|
Label *edit_items_toolbar_remove_label = memnew(Label);
|
|
|
|
edit_items_toolbar_remove_label->set_text(TTR("Remove:"));
|
|
|
|
edit_items_toolbar->add_child(edit_items_toolbar_remove_label);
|
|
|
|
|
|
|
|
edit_items_remove_class = memnew(Button);
|
|
|
|
edit_items_remove_class->set_tooltip(TTR("Remove Class Items"));
|
|
|
|
edit_items_remove_class->set_flat(true);
|
|
|
|
edit_items_remove_class->set_disabled(true);
|
|
|
|
edit_items_toolbar->add_child(edit_items_remove_class);
|
|
|
|
edit_items_remove_class->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_remove_class_items));
|
|
|
|
|
|
|
|
edit_items_remove_custom = memnew(Button);
|
|
|
|
edit_items_remove_custom->set_tooltip(TTR("Remove Custom Items"));
|
|
|
|
edit_items_remove_custom->set_flat(true);
|
|
|
|
edit_items_remove_custom->set_disabled(true);
|
|
|
|
edit_items_toolbar->add_child(edit_items_remove_custom);
|
|
|
|
edit_items_remove_custom->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_remove_custom_items));
|
|
|
|
|
|
|
|
edit_items_remove_all = memnew(Button);
|
|
|
|
edit_items_remove_all->set_tooltip(TTR("Remove All Items"));
|
|
|
|
edit_items_remove_all->set_flat(true);
|
|
|
|
edit_items_remove_all->set_disabled(true);
|
|
|
|
edit_items_toolbar->add_child(edit_items_remove_all);
|
|
|
|
edit_items_remove_all->connect("pressed", callable_mp(this, &ThemeItemEditorDialog::_remove_all_items));
|
|
|
|
|
|
|
|
edit_items_tree = memnew(Tree);
|
|
|
|
edit_items_tree->set_v_size_flags(Control::SIZE_EXPAND_FILL);
|
|
|
|
edit_items_tree->set_hide_root(true);
|
|
|
|
edit_items_tree->set_columns(1);
|
|
|
|
edit_items_vb->add_child(edit_items_tree);
|
|
|
|
edit_items_tree->connect("button_pressed", callable_mp(this, &ThemeItemEditorDialog::_item_tree_button_pressed));
|
|
|
|
|
|
|
|
edit_theme_item_dialog = memnew(ConfirmationDialog);
|
|
|
|
edit_theme_item_dialog->set_title(TTR("Add Theme Item"));
|
|
|
|
add_child(edit_theme_item_dialog);
|
|
|
|
VBoxContainer *edit_theme_item_vb = memnew(VBoxContainer);
|
|
|
|
edit_theme_item_dialog->add_child(edit_theme_item_vb);
|
|
|
|
|
|
|
|
edit_theme_item_old_vb = memnew(VBoxContainer);
|
|
|
|
edit_theme_item_vb->add_child(edit_theme_item_old_vb);
|
|
|
|
Label *edit_theme_item_old = memnew(Label);
|
|
|
|
edit_theme_item_old->set_text(TTR("Old Name:"));
|
|
|
|
edit_theme_item_old_vb->add_child(edit_theme_item_old);
|
|
|
|
theme_item_old_name = memnew(Label);
|
|
|
|
edit_theme_item_old_vb->add_child(theme_item_old_name);
|
|
|
|
|
|
|
|
Label *edit_theme_item_label = memnew(Label);
|
|
|
|
edit_theme_item_label->set_text(TTR("Name:"));
|
|
|
|
edit_theme_item_vb->add_child(edit_theme_item_label);
|
|
|
|
theme_item_name = memnew(LineEdit);
|
|
|
|
edit_theme_item_vb->add_child(theme_item_name);
|
|
|
|
theme_item_name->connect("gui_input", callable_mp(this, &ThemeItemEditorDialog::_edit_theme_item_gui_input));
|
|
|
|
edit_theme_item_dialog->connect("confirmed", callable_mp(this, &ThemeItemEditorDialog::_confirm_edit_theme_item));
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void ThemeEditor::edit(const Ref<Theme> &p_theme) {
|
|
|
|
theme = p_theme;
|
2021-03-01 15:18:53 +00:00
|
|
|
theme_edit_dialog->set_edited_theme(p_theme);
|
2019-08-13 18:09:25 +00:00
|
|
|
main_panel->set_theme(p_theme);
|
2019-02-09 17:38:35 +00:00
|
|
|
main_container->set_theme(p_theme);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2014-02-15 05:01:39 +00:00
|
|
|
void ThemeEditor::_propagate_redraw(Control *p_at) {
|
|
|
|
p_at->notification(NOTIFICATION_THEME_CHANGED);
|
|
|
|
p_at->minimum_size_changed();
|
|
|
|
p_at->update();
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < p_at->get_child_count(); i++) {
|
2017-08-24 20:58:51 +00:00
|
|
|
Control *a = Object::cast_to<Control>(p_at->get_child(i));
|
2020-05-14 14:41:43 +00:00
|
|
|
if (a) {
|
2014-02-15 05:01:39 +00:00
|
|
|
_propagate_redraw(a);
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-15 05:01:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeEditor::_refresh_interval() {
|
2019-08-13 18:09:25 +00:00
|
|
|
_propagate_redraw(main_panel);
|
2019-02-09 17:38:35 +00:00
|
|
|
_propagate_redraw(main_container);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct _TECategory {
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T>
|
2014-02-10 01:10:30 +00:00
|
|
|
struct RefItem {
|
|
|
|
Ref<T> item;
|
|
|
|
StringName name;
|
2017-08-07 10:17:31 +00:00
|
|
|
bool operator<(const RefItem<T> &p) const { return item->get_instance_id() < p.item->get_instance_id(); }
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
template <class T>
|
2014-02-10 01:10:30 +00:00
|
|
|
struct Item {
|
|
|
|
T item;
|
|
|
|
String name;
|
2017-03-05 15:44:50 +00:00
|
|
|
bool operator<(const Item<T> &p) const { return name < p.name; }
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2020-03-17 06:33:00 +00:00
|
|
|
Set<RefItem<StyleBox>> stylebox_items;
|
|
|
|
Set<RefItem<Font>> font_items;
|
2020-09-03 11:22:16 +00:00
|
|
|
Set<Item<int>> font_size_items;
|
2020-03-17 06:33:00 +00:00
|
|
|
Set<RefItem<Texture2D>> icon_items;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-17 06:33:00 +00:00
|
|
|
Set<Item<Color>> color_items;
|
|
|
|
Set<Item<int>> constant_items;
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void ThemeEditor::_save_template_cbk(String fname) {
|
|
|
|
String filename = file_dialog->get_current_path();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Map<String, _TECategory> categories;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2019-08-13 18:09:25 +00:00
|
|
|
// Fill types.
|
2014-02-10 01:10:30 +00:00
|
|
|
List<StringName> type_list;
|
|
|
|
Theme::get_default()->get_type_list(&type_list);
|
2017-03-05 15:44:50 +00:00
|
|
|
for (List<StringName>::Element *E = type_list.front(); E; E = E->next()) {
|
|
|
|
categories.insert(E->get(), _TECategory());
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2019-08-13 18:09:25 +00:00
|
|
|
// Fill default theme.
|
2017-03-05 15:44:50 +00:00
|
|
|
for (Map<String, _TECategory>::Element *E = categories.front(); E; E = E->next()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_TECategory &tc = E->get();
|
|
|
|
|
|
|
|
List<StringName> stylebox_list;
|
2017-03-05 15:44:50 +00:00
|
|
|
Theme::get_default()->get_stylebox_list(E->key(), &stylebox_list);
|
|
|
|
for (List<StringName>::Element *F = stylebox_list.front(); F; F = F->next()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_TECategory::RefItem<StyleBox> it;
|
2017-03-05 15:44:50 +00:00
|
|
|
it.name = F->get();
|
|
|
|
it.item = Theme::get_default()->get_stylebox(F->get(), E->key());
|
2014-02-10 01:10:30 +00:00
|
|
|
tc.stylebox_items.insert(it);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<StringName> font_list;
|
2017-03-05 15:44:50 +00:00
|
|
|
Theme::get_default()->get_font_list(E->key(), &font_list);
|
|
|
|
for (List<StringName>::Element *F = font_list.front(); F; F = F->next()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_TECategory::RefItem<Font> it;
|
2017-03-05 15:44:50 +00:00
|
|
|
it.name = F->get();
|
|
|
|
it.item = Theme::get_default()->get_font(F->get(), E->key());
|
2014-02-10 01:10:30 +00:00
|
|
|
tc.font_items.insert(it);
|
|
|
|
}
|
|
|
|
|
2020-09-03 11:22:16 +00:00
|
|
|
List<StringName> font_size_list;
|
|
|
|
Theme::get_default()->get_font_size_list(E->key(), &font_list);
|
|
|
|
for (List<StringName>::Element *F = font_size_list.front(); F; F = F->next()) {
|
|
|
|
_TECategory::Item<int> it;
|
|
|
|
it.name = F->get();
|
|
|
|
it.item = Theme::get_default()->get_font_size(F->get(), E->key());
|
|
|
|
tc.font_size_items.insert(it);
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
List<StringName> icon_list;
|
2017-03-05 15:44:50 +00:00
|
|
|
Theme::get_default()->get_icon_list(E->key(), &icon_list);
|
|
|
|
for (List<StringName>::Element *F = icon_list.front(); F; F = F->next()) {
|
2019-06-11 18:43:37 +00:00
|
|
|
_TECategory::RefItem<Texture2D> it;
|
2017-03-05 15:44:50 +00:00
|
|
|
it.name = F->get();
|
|
|
|
it.item = Theme::get_default()->get_icon(F->get(), E->key());
|
2014-02-10 01:10:30 +00:00
|
|
|
tc.icon_items.insert(it);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<StringName> color_list;
|
2017-03-05 15:44:50 +00:00
|
|
|
Theme::get_default()->get_color_list(E->key(), &color_list);
|
|
|
|
for (List<StringName>::Element *F = color_list.front(); F; F = F->next()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_TECategory::Item<Color> it;
|
2017-03-05 15:44:50 +00:00
|
|
|
it.name = F->get();
|
|
|
|
it.item = Theme::get_default()->get_color(F->get(), E->key());
|
2014-02-10 01:10:30 +00:00
|
|
|
tc.color_items.insert(it);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<StringName> constant_list;
|
2017-03-05 15:44:50 +00:00
|
|
|
Theme::get_default()->get_constant_list(E->key(), &constant_list);
|
|
|
|
for (List<StringName>::Element *F = constant_list.front(); F; F = F->next()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_TECategory::Item<int> it;
|
2017-03-05 15:44:50 +00:00
|
|
|
it.name = F->get();
|
|
|
|
it.item = Theme::get_default()->get_constant(F->get(), E->key());
|
2014-02-10 01:10:30 +00:00
|
|
|
tc.constant_items.insert(it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
FileAccess *file = FileAccess::open(filename, FileAccess::WRITE);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2019-09-25 08:28:50 +00:00
|
|
|
ERR_FAIL_COND_MSG(!file, "Can't save theme to file '" + filename + "'.");
|
2019-08-15 02:57:49 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
file->store_line("; ******************* ");
|
|
|
|
file->store_line("; Template Theme File ");
|
|
|
|
file->store_line("; ******************* ");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; Theme Syntax: ");
|
|
|
|
file->store_line("; ------------- ");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; Must be placed in section [theme]");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; Type.item = [value] ");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; [value] examples:");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; Type.item = 6 ; numeric constant. ");
|
2020-09-01 06:03:30 +00:00
|
|
|
file->store_line("; Type.item = #FF00FF ; HTML color (magenta).");
|
|
|
|
file->store_line("; Type.item = #FF00FF55 ; HTML color (magenta with alpha 0x55).");
|
2014-02-10 01:10:30 +00:00
|
|
|
file->store_line("; Type.item = icon(image.png) ; icon in a png file (relative to theme file).");
|
|
|
|
file->store_line("; Type.item = font(font.xres) ; font in a resource (relative to theme file).");
|
|
|
|
file->store_line("; Type.item = sbox(stylebox.xres) ; stylebox in a resource (relative to theme file).");
|
|
|
|
file->store_line("; Type.item = sboxf(2,#FF00FF) ; flat stylebox with margin 2.");
|
|
|
|
file->store_line("; Type.item = sboxf(2,#FF00FF,#FFFFFF) ; flat stylebox with margin 2 and border.");
|
|
|
|
file->store_line("; Type.item = sboxf(2,#FF00FF,#FFFFFF,#000000) ; flat stylebox with margin 2, light & dark borders.");
|
|
|
|
file->store_line("; Type.item = sboxt(base.png,2,2,2,2) ; textured stylebox with 3x3 stretch and stretch margins.");
|
|
|
|
file->store_line("; -Additionally, 4 extra integers can be added to sboxf and sboxt to specify custom padding of contents:");
|
|
|
|
file->store_line("; Type.item = sboxt(base.png,2,2,2,2,5,4,2,4) ;");
|
|
|
|
file->store_line("; -Order for all is always left, top, right, bottom.");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; Special values:");
|
|
|
|
file->store_line("; Type.item = default ; use the value in the default theme (must exist there).");
|
|
|
|
file->store_line("; Type.item = @somebutton_color ; reference to a library value previously defined.");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; Library Syntax: ");
|
|
|
|
file->store_line("; --------------- ");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; Must be placed in section [library], but usage is optional.");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; item = [value] ; same as Theme, but assign to library.");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; examples:");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; [library]");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; default_button_color = #FF00FF");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; [theme]");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; Button.color = @default_button_color ; used reference.");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; ******************* ");
|
|
|
|
file->store_line("; ");
|
Refactor version macros and fix related bugs
The previous logic with VERSION_MKSTRING was a bit unwieldy, so there were
several places hardcoding their own variant of the version string, potentially
with bugs (e.g. forgetting the patch number when defined).
The new logic defines:
- VERSION_BRANCH, the main 'major.minor' version (e.g. 3.1)
- VERSION_NUMBER, which can be 'major.minor' or 'major.minor.patch',
depending on whether the latter is defined (e.g. 3.1.4)
- VERSION_FULL_CONFIG, which contains the version status (e.g. stable)
and the module-specific suffix (e.g. mono)
- VERSION_FULL_BUILD, same as above but with build/reference name
(e.g. official, custom_build, mageia, etc.)
Note: Slight change here, as the previous format had the build name
*before* the module-specific suffix; now it's after
- VERSION_FULL_NAME, same as before, so VERSION_FULL_BUILD prefixed
with "Godot v" for readability
Bugs fixed thanks to that:
- Export templates version matching now properly takes VERSION_PATCH
into account by relying on VERSION_FULL_CONFIG.
- ClassDB hash no longer takes the build name into account, but limits
itself to VERSION_FULL_CONFIG (build name is cosmetic, not relevant
for the API hash).
- Docs XML no longer hardcode the VERSION_STATUS, this was annoying.
- Small cleanup in Windows .rc file thanks to new macros.
2018-02-23 18:48:49 +00:00
|
|
|
file->store_line("; Template Generated Using: " + String(VERSION_FULL_BUILD));
|
2014-02-10 01:10:30 +00:00
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("; ");
|
|
|
|
file->store_line("");
|
|
|
|
file->store_line("[library]");
|
|
|
|
file->store_line("");
|
|
|
|
file->store_line("; place library stuff here");
|
|
|
|
file->store_line("");
|
|
|
|
file->store_line("[theme]");
|
|
|
|
file->store_line("");
|
|
|
|
file->store_line("");
|
|
|
|
|
2019-08-13 18:09:25 +00:00
|
|
|
// Write default theme.
|
2017-03-05 15:44:50 +00:00
|
|
|
for (Map<String, _TECategory>::Element *E = categories.front(); E; E = E->next()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
_TECategory &tc = E->get();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
String underline = "; ";
|
2020-05-14 14:41:43 +00:00
|
|
|
for (int i = 0; i < E->key().length(); i++) {
|
2017-03-05 15:44:50 +00:00
|
|
|
underline += "*";
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
file->store_line("");
|
|
|
|
file->store_line(underline);
|
2017-03-05 15:44:50 +00:00
|
|
|
file->store_line("; " + E->key());
|
2014-02-10 01:10:30 +00:00
|
|
|
file->store_line(underline);
|
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (tc.stylebox_items.size()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
file->store_line("\n; StyleBox Items:\n");
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-17 06:33:00 +00:00
|
|
|
for (Set<_TECategory::RefItem<StyleBox>>::Element *F = tc.stylebox_items.front(); F; F = F->next()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
file->store_line(E->key() + "." + F->get().name + " = default");
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (tc.font_items.size()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
file->store_line("\n; Font Items:\n");
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-17 06:33:00 +00:00
|
|
|
for (Set<_TECategory::RefItem<Font>>::Element *F = tc.font_items.front(); F; F = F->next()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
file->store_line(E->key() + "." + F->get().name + " = default");
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 11:22:16 +00:00
|
|
|
if (tc.font_size_items.size()) {
|
|
|
|
file->store_line("\n; Font Size Items:\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Set<_TECategory::Item<int>>::Element *F = tc.font_size_items.front(); F; F = F->next()) {
|
|
|
|
file->store_line(E->key() + "." + F->get().name + " = default");
|
|
|
|
}
|
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (tc.icon_items.size()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
file->store_line("\n; Icon Items:\n");
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-17 06:33:00 +00:00
|
|
|
for (Set<_TECategory::RefItem<Texture2D>>::Element *F = tc.icon_items.front(); F; F = F->next()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
file->store_line(E->key() + "." + F->get().name + " = default");
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (tc.color_items.size()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
file->store_line("\n; Color Items:\n");
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-17 06:33:00 +00:00
|
|
|
for (Set<_TECategory::Item<Color>>::Element *F = tc.color_items.front(); F; F = F->next()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
file->store_line(E->key() + "." + F->get().name + " = default");
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 14:41:43 +00:00
|
|
|
if (tc.constant_items.size()) {
|
2014-02-10 01:10:30 +00:00
|
|
|
file->store_line("\n; Constant Items:\n");
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-17 06:33:00 +00:00
|
|
|
for (Set<_TECategory::Item<int>>::Element *F = tc.constant_items.front(); F; F = F->next()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
file->store_line(E->key() + "." + F->get().name + " = default");
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
file->close();
|
|
|
|
memdelete(file);
|
|
|
|
}
|
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
void ThemeEditor::_theme_create_menu_cbk(int p_option) {
|
|
|
|
bool import = (p_option == POPUP_IMPORT_EDITOR_THEME);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Ref<Theme> base_theme;
|
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
if (p_option == POPUP_CREATE_EMPTY) {
|
2017-03-05 15:44:50 +00:00
|
|
|
base_theme = Theme::get_default();
|
2021-03-01 15:18:53 +00:00
|
|
|
} else {
|
|
|
|
base_theme = EditorNode::get_singleton()->get_theme_base()->get_theme();
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
{
|
|
|
|
List<StringName> types;
|
|
|
|
base_theme->get_type_list(&types);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
for (List<StringName>::Element *T = types.front(); T; T = T->next()) {
|
|
|
|
StringName type = T->get();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
List<StringName> icons;
|
|
|
|
base_theme->get_icon_list(type, &icons);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
for (List<StringName>::Element *E = icons.front(); E; E = E->next()) {
|
|
|
|
theme->set_icon(E->get(), type, import ? base_theme->get_icon(E->get(), type) : Ref<Texture2D>());
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
List<StringName> styleboxs;
|
|
|
|
base_theme->get_stylebox_list(type, &styleboxs);
|
2016-04-21 01:58:53 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
for (List<StringName>::Element *E = styleboxs.front(); E; E = E->next()) {
|
|
|
|
theme->set_stylebox(E->get(), type, import ? base_theme->get_stylebox(E->get(), type) : Ref<StyleBox>());
|
|
|
|
}
|
2016-04-21 01:58:53 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
List<StringName> fonts;
|
|
|
|
base_theme->get_font_list(type, &fonts);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
for (List<StringName>::Element *E = fonts.front(); E; E = E->next()) {
|
|
|
|
theme->set_font(E->get(), type, Ref<Font>());
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
List<StringName> font_sizes;
|
|
|
|
base_theme->get_font_size_list(type, &font_sizes);
|
2016-06-20 14:33:51 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
for (List<StringName>::Element *E = font_sizes.front(); E; E = E->next()) {
|
|
|
|
theme->set_font_size(E->get(), type, base_theme->get_font_size(E->get(), type));
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
List<StringName> colors;
|
|
|
|
base_theme->get_color_list(type, &colors);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
for (List<StringName>::Element *E = colors.front(); E; E = E->next()) {
|
|
|
|
theme->set_color(E->get(), type, import ? base_theme->get_color(E->get(), type) : Color());
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
List<StringName> constants;
|
|
|
|
base_theme->get_constant_list(type, &constants);
|
|
|
|
|
|
|
|
for (List<StringName>::Element *E = constants.front(); E; E = E->next()) {
|
|
|
|
theme->set_constant(E->get(), type, base_theme->get_constant(E->get(), type));
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-01 15:18:53 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
void ThemeEditor::_theme_edit_button_cbk() {
|
|
|
|
theme_edit_dialog->popup_centered(Size2(800, 640) * EDSCALE);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2014-02-15 05:01:39 +00:00
|
|
|
void ThemeEditor::_notification(int p_what) {
|
2019-08-13 18:09:25 +00:00
|
|
|
switch (p_what) {
|
|
|
|
case NOTIFICATION_PROCESS: {
|
|
|
|
time_left -= get_process_delta_time();
|
|
|
|
if (time_left < 0) {
|
|
|
|
time_left = 1.5;
|
|
|
|
_refresh_interval();
|
|
|
|
}
|
|
|
|
} break;
|
2014-02-15 05:01:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void ThemeEditor::_bind_methods() {
|
|
|
|
}
|
|
|
|
|
|
|
|
ThemeEditor::ThemeEditor() {
|
2019-02-09 17:38:35 +00:00
|
|
|
HBoxContainer *top_menu = memnew(HBoxContainer);
|
|
|
|
add_child(top_menu);
|
2014-02-15 05:01:39 +00:00
|
|
|
|
2019-02-09 17:38:35 +00:00
|
|
|
top_menu->add_child(memnew(Label(TTR("Preview:"))));
|
|
|
|
top_menu->add_spacer(false);
|
2014-02-15 05:01:39 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
theme_create_menu = memnew(MenuButton);
|
|
|
|
theme_create_menu->set_text(TTR("Create Theme..."));
|
|
|
|
theme_create_menu->set_tooltip(TTR("Create a new Theme."));
|
|
|
|
theme_create_menu->get_popup()->add_item(TTR("Empty Template"), POPUP_CREATE_EMPTY);
|
|
|
|
theme_create_menu->get_popup()->add_separator();
|
|
|
|
theme_create_menu->get_popup()->add_item(TTR("Empty Editor Template"), POPUP_CREATE_EDITOR_EMPTY);
|
|
|
|
theme_create_menu->get_popup()->add_item(TTR("From Current Editor Theme"), POPUP_IMPORT_EDITOR_THEME);
|
|
|
|
top_menu->add_child(theme_create_menu);
|
|
|
|
theme_create_menu->get_popup()->connect("id_pressed", callable_mp(this, &ThemeEditor::_theme_create_menu_cbk));
|
|
|
|
|
|
|
|
theme_edit_button = memnew(Button);
|
|
|
|
theme_edit_button->set_text(TTR("Edit Theme Items"));
|
|
|
|
theme_edit_button->set_tooltip(TTR("Customize Theme items."));
|
|
|
|
theme_edit_button->set_flat(true);
|
|
|
|
theme_edit_button->connect("pressed", callable_mp(this, &ThemeEditor::_theme_edit_button_cbk));
|
|
|
|
top_menu->add_child(theme_edit_button);
|
2014-02-15 05:01:39 +00:00
|
|
|
|
2019-08-13 18:09:25 +00:00
|
|
|
ScrollContainer *scroll = memnew(ScrollContainer);
|
2019-02-09 17:38:35 +00:00
|
|
|
add_child(scroll);
|
|
|
|
scroll->set_enable_v_scroll(true);
|
2020-08-25 23:48:46 +00:00
|
|
|
scroll->set_enable_h_scroll(true);
|
2019-02-09 17:38:35 +00:00
|
|
|
scroll->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
|
2019-08-13 18:09:25 +00:00
|
|
|
MarginContainer *root_container = memnew(MarginContainer);
|
|
|
|
scroll->add_child(root_container);
|
|
|
|
root_container->set_theme(Theme::get_default());
|
|
|
|
root_container->set_clip_contents(true);
|
|
|
|
root_container->set_custom_minimum_size(Size2(700, 0) * EDSCALE);
|
|
|
|
root_container->set_v_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
root_container->set_h_size_flags(SIZE_EXPAND_FILL);
|
2019-02-09 17:38:35 +00:00
|
|
|
|
|
|
|
//// Preview Controls ////
|
|
|
|
|
2019-08-13 18:09:25 +00:00
|
|
|
main_panel = memnew(Panel);
|
|
|
|
root_container->add_child(main_panel);
|
2019-02-09 17:38:35 +00:00
|
|
|
|
2019-08-13 18:09:25 +00:00
|
|
|
main_container = memnew(MarginContainer);
|
|
|
|
root_container->add_child(main_container);
|
2020-03-12 12:37:40 +00:00
|
|
|
main_container->add_theme_constant_override("margin_right", 4 * EDSCALE);
|
|
|
|
main_container->add_theme_constant_override("margin_top", 4 * EDSCALE);
|
|
|
|
main_container->add_theme_constant_override("margin_left", 4 * EDSCALE);
|
|
|
|
main_container->add_theme_constant_override("margin_bottom", 4 * EDSCALE);
|
2019-02-09 17:38:35 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
HBoxContainer *main_hb = memnew(HBoxContainer);
|
2019-08-13 18:09:25 +00:00
|
|
|
main_container->add_child(main_hb);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
VBoxContainer *first_vb = memnew(VBoxContainer);
|
2014-02-15 05:01:39 +00:00
|
|
|
main_hb->add_child(first_vb);
|
2019-02-09 17:38:35 +00:00
|
|
|
first_vb->set_h_size_flags(SIZE_EXPAND_FILL);
|
2020-03-12 12:37:40 +00:00
|
|
|
first_vb->add_theme_constant_override("separation", 10 * EDSCALE);
|
2014-02-15 05:01:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
first_vb->add_child(memnew(Label("Label")));
|
2014-02-15 05:01:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
first_vb->add_child(memnew(Button("Button")));
|
2019-02-09 17:38:35 +00:00
|
|
|
Button *bt = memnew(Button);
|
|
|
|
bt->set_text(TTR("Toggle Button"));
|
|
|
|
bt->set_toggle_mode(true);
|
|
|
|
bt->set_pressed(true);
|
|
|
|
first_vb->add_child(bt);
|
|
|
|
bt = memnew(Button);
|
|
|
|
bt->set_text(TTR("Disabled Button"));
|
|
|
|
bt->set_disabled(true);
|
|
|
|
first_vb->add_child(bt);
|
2020-06-19 18:49:04 +00:00
|
|
|
Button *tb = memnew(Button);
|
|
|
|
tb->set_flat(true);
|
|
|
|
tb->set_text("Button");
|
2017-03-05 15:44:50 +00:00
|
|
|
first_vb->add_child(tb);
|
2019-02-09 17:38:35 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
CheckButton *cb = memnew(CheckButton);
|
2014-02-15 05:01:39 +00:00
|
|
|
cb->set_text("CheckButton");
|
2017-03-05 15:44:50 +00:00
|
|
|
first_vb->add_child(cb);
|
|
|
|
CheckBox *cbx = memnew(CheckBox);
|
2015-10-19 20:46:13 +00:00
|
|
|
cbx->set_text("CheckBox");
|
2017-03-05 15:44:50 +00:00
|
|
|
first_vb->add_child(cbx);
|
2015-10-19 20:46:13 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
MenuButton *test_menu_button = memnew(MenuButton);
|
2014-02-15 05:01:39 +00:00
|
|
|
test_menu_button->set_text("MenuButton");
|
2016-05-04 01:25:37 +00:00
|
|
|
test_menu_button->get_popup()->add_item(TTR("Item"));
|
2019-02-09 17:38:35 +00:00
|
|
|
test_menu_button->get_popup()->add_item(TTR("Disabled Item"));
|
|
|
|
test_menu_button->get_popup()->set_item_disabled(1, true);
|
2014-02-10 01:10:30 +00:00
|
|
|
test_menu_button->get_popup()->add_separator();
|
2016-05-04 01:25:37 +00:00
|
|
|
test_menu_button->get_popup()->add_check_item(TTR("Check Item"));
|
|
|
|
test_menu_button->get_popup()->add_check_item(TTR("Checked Item"));
|
2019-08-09 19:26:43 +00:00
|
|
|
test_menu_button->get_popup()->set_item_checked(4, true);
|
2018-03-23 20:55:40 +00:00
|
|
|
test_menu_button->get_popup()->add_separator();
|
2018-04-25 18:12:46 +00:00
|
|
|
test_menu_button->get_popup()->add_radio_check_item(TTR("Radio Item"));
|
2018-03-23 20:55:40 +00:00
|
|
|
test_menu_button->get_popup()->add_radio_check_item(TTR("Checked Radio Item"));
|
2019-08-09 19:26:43 +00:00
|
|
|
test_menu_button->get_popup()->set_item_checked(7, true);
|
2019-02-09 17:38:35 +00:00
|
|
|
test_menu_button->get_popup()->add_separator(TTR("Named Sep."));
|
|
|
|
|
|
|
|
PopupMenu *test_submenu = memnew(PopupMenu);
|
|
|
|
test_menu_button->get_popup()->add_child(test_submenu);
|
|
|
|
test_submenu->set_name("submenu");
|
|
|
|
test_menu_button->get_popup()->add_submenu_item(TTR("Submenu"), "submenu");
|
2019-08-09 19:26:43 +00:00
|
|
|
test_submenu->add_item(TTR("Subitem 1"));
|
|
|
|
test_submenu->add_item(TTR("Subitem 2"));
|
2014-02-15 05:01:39 +00:00
|
|
|
first_vb->add_child(test_menu_button);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
OptionButton *test_option_button = memnew(OptionButton);
|
2014-02-10 01:10:30 +00:00
|
|
|
test_option_button->add_item("OptionButton");
|
|
|
|
test_option_button->add_separator();
|
2016-05-04 01:25:37 +00:00
|
|
|
test_option_button->add_item(TTR("Has"));
|
|
|
|
test_option_button->add_item(TTR("Many"));
|
|
|
|
test_option_button->add_item(TTR("Options"));
|
2014-02-15 05:01:39 +00:00
|
|
|
first_vb->add_child(test_option_button);
|
2019-02-09 17:38:35 +00:00
|
|
|
first_vb->add_child(memnew(ColorPickerButton));
|
2014-02-15 05:01:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
VBoxContainer *second_vb = memnew(VBoxContainer);
|
2014-02-15 05:01:39 +00:00
|
|
|
second_vb->set_h_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
main_hb->add_child(second_vb);
|
2020-03-12 12:37:40 +00:00
|
|
|
second_vb->add_theme_constant_override("separation", 10 * EDSCALE);
|
2017-03-05 15:44:50 +00:00
|
|
|
LineEdit *le = memnew(LineEdit);
|
2014-02-15 05:01:39 +00:00
|
|
|
le->set_text("LineEdit");
|
|
|
|
second_vb->add_child(le);
|
2019-02-09 17:38:35 +00:00
|
|
|
le = memnew(LineEdit);
|
|
|
|
le->set_text(TTR("Disabled LineEdit"));
|
|
|
|
le->set_editable(false);
|
|
|
|
second_vb->add_child(le);
|
2017-03-05 15:44:50 +00:00
|
|
|
TextEdit *te = memnew(TextEdit);
|
2014-02-15 05:01:39 +00:00
|
|
|
te->set_text("TextEdit");
|
2019-02-09 17:38:35 +00:00
|
|
|
te->set_custom_minimum_size(Size2(0, 100) * EDSCALE);
|
2014-02-15 05:01:39 +00:00
|
|
|
second_vb->add_child(te);
|
2019-02-09 17:38:35 +00:00
|
|
|
second_vb->add_child(memnew(SpinBox));
|
2014-02-15 05:01:39 +00:00
|
|
|
|
2019-02-09 17:38:35 +00:00
|
|
|
HBoxContainer *vhb = memnew(HBoxContainer);
|
|
|
|
second_vb->add_child(vhb);
|
|
|
|
vhb->set_custom_minimum_size(Size2(0, 100) * EDSCALE);
|
|
|
|
vhb->add_child(memnew(VSlider));
|
|
|
|
VScrollBar *vsb = memnew(VScrollBar);
|
|
|
|
vsb->set_page(25);
|
|
|
|
vhb->add_child(vsb);
|
|
|
|
vhb->add_child(memnew(VSeparator));
|
|
|
|
VBoxContainer *hvb = memnew(VBoxContainer);
|
|
|
|
vhb->add_child(hvb);
|
|
|
|
hvb->set_alignment(ALIGN_CENTER);
|
|
|
|
hvb->set_h_size_flags(SIZE_EXPAND_FILL);
|
|
|
|
hvb->add_child(memnew(HSlider));
|
|
|
|
HScrollBar *hsb = memnew(HScrollBar);
|
|
|
|
hsb->set_page(25);
|
|
|
|
hvb->add_child(hsb);
|
|
|
|
HSlider *hs = memnew(HSlider);
|
|
|
|
hs->set_editable(false);
|
|
|
|
hvb->add_child(hs);
|
|
|
|
hvb->add_child(memnew(HSeparator));
|
|
|
|
ProgressBar *pb = memnew(ProgressBar);
|
|
|
|
pb->set_value(50);
|
|
|
|
hvb->add_child(pb);
|
2014-02-15 05:01:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
VBoxContainer *third_vb = memnew(VBoxContainer);
|
2014-02-15 05:01:39 +00:00
|
|
|
third_vb->set_h_size_flags(SIZE_EXPAND_FILL);
|
2020-03-12 12:37:40 +00:00
|
|
|
third_vb->add_theme_constant_override("separation", 10 * EDSCALE);
|
2014-02-15 05:01:39 +00:00
|
|
|
main_hb->add_child(third_vb);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
TabContainer *tc = memnew(TabContainer);
|
2014-02-15 05:01:39 +00:00
|
|
|
third_vb->add_child(tc);
|
2019-02-09 17:38:35 +00:00
|
|
|
tc->set_custom_minimum_size(Size2(0, 135) * EDSCALE);
|
2017-03-05 15:44:50 +00:00
|
|
|
Control *tcc = memnew(Control);
|
2016-05-04 01:25:37 +00:00
|
|
|
tcc->set_name(TTR("Tab 1"));
|
2014-02-15 05:01:39 +00:00
|
|
|
tc->add_child(tcc);
|
2017-03-05 15:44:50 +00:00
|
|
|
tcc = memnew(Control);
|
2016-05-04 01:25:37 +00:00
|
|
|
tcc->set_name(TTR("Tab 2"));
|
2014-02-15 05:01:39 +00:00
|
|
|
tc->add_child(tcc);
|
2017-03-05 15:44:50 +00:00
|
|
|
tcc = memnew(Control);
|
2016-05-04 01:25:37 +00:00
|
|
|
tcc->set_name(TTR("Tab 3"));
|
2014-02-15 05:01:39 +00:00
|
|
|
tc->add_child(tcc);
|
2019-02-09 17:38:35 +00:00
|
|
|
tc->set_tab_disabled(2, true);
|
|
|
|
|
|
|
|
Tree *test_tree = memnew(Tree);
|
|
|
|
third_vb->add_child(test_tree);
|
|
|
|
test_tree->set_custom_minimum_size(Size2(0, 175) * EDSCALE);
|
2020-03-12 12:37:40 +00:00
|
|
|
test_tree->add_theme_constant_override("draw_relationship_lines", 1);
|
2019-02-09 17:38:35 +00:00
|
|
|
|
|
|
|
TreeItem *item = test_tree->create_item();
|
|
|
|
item->set_text(0, "Tree");
|
|
|
|
item = test_tree->create_item(test_tree->get_root());
|
|
|
|
item->set_text(0, "Item");
|
|
|
|
item = test_tree->create_item(test_tree->get_root());
|
|
|
|
item->set_editable(0, true);
|
|
|
|
item->set_text(0, TTR("Editable Item"));
|
|
|
|
TreeItem *sub_tree = test_tree->create_item(test_tree->get_root());
|
|
|
|
sub_tree->set_text(0, TTR("Subtree"));
|
|
|
|
item = test_tree->create_item(sub_tree);
|
|
|
|
item->set_cell_mode(0, TreeItem::CELL_MODE_CHECK);
|
|
|
|
item->set_editable(0, true);
|
|
|
|
item->set_text(0, "Check Item");
|
|
|
|
item = test_tree->create_item(sub_tree);
|
|
|
|
item->set_cell_mode(0, TreeItem::CELL_MODE_RANGE);
|
|
|
|
item->set_editable(0, true);
|
|
|
|
item->set_range_config(0, 0, 20, 0.1);
|
|
|
|
item->set_range(0, 2);
|
|
|
|
item = test_tree->create_item(sub_tree);
|
|
|
|
item->set_cell_mode(0, TreeItem::CELL_MODE_RANGE);
|
|
|
|
item->set_editable(0, true);
|
|
|
|
item->set_text(0, TTR("Has,Many,Options"));
|
|
|
|
item->set_range(0, 2);
|
2014-02-15 05:01:39 +00:00
|
|
|
|
2020-03-12 12:37:40 +00:00
|
|
|
main_hb->add_theme_constant_override("separation", 20 * EDSCALE);
|
2014-02-15 05:01:39 +00:00
|
|
|
|
2021-03-01 15:18:53 +00:00
|
|
|
theme_edit_dialog = memnew(ThemeItemEditorDialog);
|
|
|
|
theme_edit_dialog->hide();
|
|
|
|
add_child(theme_edit_dialog);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
file_dialog = memnew(EditorFileDialog);
|
2019-12-16 05:18:44 +00:00
|
|
|
file_dialog->add_filter("*.theme ; " + TTR("Theme File"));
|
2014-02-10 01:10:30 +00:00
|
|
|
add_child(file_dialog);
|
2020-02-21 17:28:45 +00:00
|
|
|
file_dialog->connect("file_selected", callable_mp(this, &ThemeEditor::_save_template_cbk));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ThemeEditorPlugin::edit(Object *p_node) {
|
2017-08-24 20:58:51 +00:00
|
|
|
if (Object::cast_to<Theme>(p_node)) {
|
|
|
|
theme_editor->edit(Object::cast_to<Theme>(p_node));
|
2014-02-15 05:01:39 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
theme_editor->edit(Ref<Theme>());
|
2014-02-15 05:01:39 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool ThemeEditorPlugin::handles(Object *p_node) const {
|
2017-01-03 02:03:46 +00:00
|
|
|
return p_node->is_class("Theme");
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void ThemeEditorPlugin::make_visible(bool p_visible) {
|
2014-02-15 05:01:39 +00:00
|
|
|
if (p_visible) {
|
|
|
|
theme_editor->set_process(true);
|
2016-01-17 23:03:57 +00:00
|
|
|
button->show();
|
2016-03-15 18:15:50 +00:00
|
|
|
editor->make_bottom_panel_item_visible(theme_editor);
|
2014-02-15 05:01:39 +00:00
|
|
|
} else {
|
|
|
|
theme_editor->set_process(false);
|
2020-05-14 14:41:43 +00:00
|
|
|
if (theme_editor->is_visible_in_tree()) {
|
2016-03-15 18:15:50 +00:00
|
|
|
editor->hide_bottom_panel();
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2019-05-21 16:14:45 +00:00
|
|
|
|
2016-01-17 23:03:57 +00:00
|
|
|
button->hide();
|
2014-02-15 05:01:39 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ThemeEditorPlugin::ThemeEditorPlugin(EditorNode *p_node) {
|
2017-03-05 15:44:50 +00:00
|
|
|
editor = p_node;
|
|
|
|
theme_editor = memnew(ThemeEditor);
|
2019-12-26 07:49:48 +00:00
|
|
|
theme_editor->set_custom_minimum_size(Size2(0, 200) * EDSCALE);
|
2016-01-17 23:03:57 +00:00
|
|
|
|
2017-12-23 14:40:15 +00:00
|
|
|
button = editor->add_bottom_panel_item(TTR("Theme"), theme_editor);
|
2016-01-17 23:03:57 +00:00
|
|
|
button->hide();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|