2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* style_box_editor_plugin.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* 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
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "style_box_editor_plugin.h"
|
2019-12-24 08:17:23 +01:00
|
|
|
|
|
|
|
#include "editor/editor_scale.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-05-23 23:17:12 +02:00
|
|
|
bool StyleBoxPreview::grid_preview_enabled = true;
|
|
|
|
|
|
|
|
void StyleBoxPreview::_grid_preview_toggled(bool p_active) {
|
|
|
|
grid_preview_enabled = p_active;
|
2022-08-13 23:21:24 +02:00
|
|
|
preview->queue_redraw();
|
2022-05-23 23:17:12 +02:00
|
|
|
}
|
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
bool EditorInspectorPluginStyleBox::can_handle(Object *p_object) {
|
2020-04-02 01:20:12 +02:00
|
|
|
return Object::cast_to<StyleBox>(p_object) != nullptr;
|
2018-05-17 23:02:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void EditorInspectorPluginStyleBox::parse_begin(Object *p_object) {
|
|
|
|
Ref<StyleBox> sb = Ref<StyleBox>(Object::cast_to<StyleBox>(p_object));
|
|
|
|
|
|
|
|
StyleBoxPreview *preview = memnew(StyleBoxPreview);
|
|
|
|
preview->edit(sb);
|
|
|
|
add_custom_control(preview);
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
void StyleBoxPreview::edit(const Ref<StyleBox> &p_stylebox) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (stylebox.is_valid()) {
|
2020-02-21 18:28:45 +01:00
|
|
|
stylebox->disconnect("changed", callable_mp(this, &StyleBoxPreview::_sb_changed));
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
stylebox = p_stylebox;
|
2014-02-10 02:10:30 +01:00
|
|
|
if (p_stylebox.is_valid()) {
|
2022-02-08 10:14:58 +01:00
|
|
|
preview->add_theme_style_override("panel", stylebox);
|
2020-02-21 18:28:45 +01:00
|
|
|
stylebox->connect("changed", callable_mp(this, &StyleBoxPreview::_sb_changed));
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2022-05-23 23:17:12 +02:00
|
|
|
Ref<StyleBoxTexture> sbt = p_stylebox;
|
|
|
|
grid_preview->set_visible(sbt.is_valid());
|
2018-05-17 23:02:16 +02:00
|
|
|
_sb_changed();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
void StyleBoxPreview::_sb_changed() {
|
2022-08-13 23:21:24 +02:00
|
|
|
preview->queue_redraw();
|
2019-10-24 23:20:52 +02:00
|
|
|
}
|
|
|
|
|
2022-05-23 23:17:12 +02:00
|
|
|
void StyleBoxPreview::_notification(int p_what) {
|
|
|
|
switch (p_what) {
|
2022-08-29 11:04:31 +02:00
|
|
|
case NOTIFICATION_ENTER_TREE:
|
2022-05-23 23:17:12 +02:00
|
|
|
case NOTIFICATION_THEME_CHANGED: {
|
2022-08-29 11:04:31 +02:00
|
|
|
if (!is_inside_tree()) {
|
|
|
|
// TODO: This is a workaround because `NOTIFICATION_THEME_CHANGED`
|
|
|
|
// is getting called for some reason when the `TexturePreview` is
|
|
|
|
// getting destroyed, which causes `get_theme_font()` to return `nullptr`.
|
|
|
|
// See https://github.com/godotengine/godot/issues/50743.
|
|
|
|
break;
|
|
|
|
}
|
2022-05-23 23:17:12 +02:00
|
|
|
grid_preview->set_normal_texture(get_theme_icon(SNAME("StyleBoxGridInvisible"), SNAME("EditorIcons")));
|
|
|
|
grid_preview->set_pressed_texture(get_theme_icon(SNAME("StyleBoxGridVisible"), SNAME("EditorIcons")));
|
|
|
|
grid_preview->set_hover_texture(get_theme_icon(SNAME("StyleBoxGridVisible"), SNAME("EditorIcons")));
|
|
|
|
checkerboard->set_texture(get_theme_icon(SNAME("Checkerboard"), SNAME("EditorIcons")));
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-24 23:20:52 +02:00
|
|
|
void StyleBoxPreview::_redraw() {
|
2018-05-17 23:02:16 +02:00
|
|
|
if (stylebox.is_valid()) {
|
2022-05-23 23:17:12 +02:00
|
|
|
Ref<Texture2D> grid_texture_disabled = get_theme_icon(SNAME("StyleBoxGridInvisible"), SNAME("EditorIcons"));
|
2019-11-24 16:26:30 +01:00
|
|
|
Rect2 preview_rect = preview->get_rect();
|
2022-05-23 23:17:12 +02:00
|
|
|
preview_rect.position += grid_texture_disabled->get_size();
|
|
|
|
preview_rect.size -= grid_texture_disabled->get_size() * 2;
|
2019-11-24 16:26:30 +01:00
|
|
|
|
|
|
|
// Re-adjust preview panel to fit all drawn content
|
|
|
|
Rect2 draw_rect = stylebox->get_draw_rect(preview_rect);
|
|
|
|
preview_rect.size -= draw_rect.size - preview_rect.size;
|
|
|
|
preview_rect.position -= draw_rect.position - preview_rect.position;
|
|
|
|
|
|
|
|
preview->draw_style_box(stylebox, preview_rect);
|
2022-05-23 23:17:12 +02:00
|
|
|
|
|
|
|
Ref<StyleBoxTexture> sbt = stylebox;
|
|
|
|
if (sbt.is_valid() && grid_preview->is_pressed()) {
|
|
|
|
for (int i = 0; i < 2; i++) {
|
|
|
|
Color c = i == 1 ? Color(1, 1, 1, 0.8) : Color(0, 0, 0, 0.4);
|
|
|
|
int x = draw_rect.position.x + sbt->get_margin(SIDE_LEFT) + (1 - i);
|
|
|
|
preview->draw_line(Point2(x, 0), Point2(x, preview->get_size().height), c);
|
|
|
|
int x2 = draw_rect.position.x + draw_rect.size.width - sbt->get_margin(SIDE_RIGHT) + (1 - i);
|
|
|
|
preview->draw_line(Point2(x2, 0), Point2(x2, preview->get_size().height), c);
|
|
|
|
int y = draw_rect.position.y + sbt->get_margin(SIDE_TOP) + (1 - i);
|
|
|
|
preview->draw_line(Point2(0, y), Point2(preview->get_size().width, y), c);
|
|
|
|
int y2 = draw_rect.position.y + draw_rect.size.height - sbt->get_margin(SIDE_BOTTOM) + (1 - i);
|
|
|
|
preview->draw_line(Point2(0, y2), Point2(preview->get_size().width, y2), c);
|
|
|
|
}
|
|
|
|
}
|
2018-05-17 23:02:16 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
void StyleBoxPreview::_bind_methods() {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
StyleBoxPreview::StyleBoxPreview() {
|
2022-05-23 23:17:12 +02:00
|
|
|
checkerboard = memnew(TextureRect);
|
|
|
|
checkerboard->set_stretch_mode(TextureRect::STRETCH_TILE);
|
|
|
|
checkerboard->set_texture_repeat(CanvasItem::TEXTURE_REPEAT_ENABLED);
|
|
|
|
checkerboard->set_custom_minimum_size(Size2(0.0, 150.0) * EDSCALE);
|
|
|
|
|
2019-10-24 23:20:52 +02:00
|
|
|
preview = memnew(Control);
|
2019-11-24 16:26:30 +01:00
|
|
|
preview->set_clip_contents(true);
|
2020-02-21 18:28:45 +01:00
|
|
|
preview->connect("draw", callable_mp(this, &StyleBoxPreview::_redraw));
|
2022-05-23 23:17:12 +02:00
|
|
|
checkerboard->add_child(preview);
|
2022-03-19 01:02:57 +01:00
|
|
|
preview->set_anchors_and_offsets_preset(PRESET_FULL_RECT);
|
2022-05-23 23:17:12 +02:00
|
|
|
|
|
|
|
add_margin_child(TTR("Preview:"), checkerboard);
|
|
|
|
grid_preview = memnew(TextureButton);
|
|
|
|
preview->add_child(grid_preview);
|
|
|
|
grid_preview->set_toggle_mode(true);
|
|
|
|
grid_preview->connect("toggled", callable_mp(this, &StyleBoxPreview::_grid_preview_toggled));
|
|
|
|
grid_preview->set_pressed(grid_preview_enabled);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2022-01-27 10:36:51 +01:00
|
|
|
StyleBoxEditorPlugin::StyleBoxEditorPlugin() {
|
2018-05-17 23:02:16 +02:00
|
|
|
Ref<EditorInspectorPluginStyleBox> inspector_plugin;
|
2021-06-18 00:03:09 +02:00
|
|
|
inspector_plugin.instantiate();
|
2018-05-17 23:02:16 +02:00
|
|
|
add_inspector_plugin(inspector_plugin);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|