You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 17:36:07 +00:00
Fix item translation and icon in the Anchors Preset dropdown
- Some items were not translated. - Item icons did not react to light/dark theme switch.
This commit is contained in:
@@ -31,13 +31,17 @@
|
|||||||
#include "control_editor_plugin.h"
|
#include "control_editor_plugin.h"
|
||||||
|
|
||||||
#include "editor/editor_node.h"
|
#include "editor/editor_node.h"
|
||||||
#include "editor/editor_string_names.h"
|
|
||||||
#include "editor/editor_undo_redo_manager.h"
|
#include "editor/editor_undo_redo_manager.h"
|
||||||
#include "editor/plugins/canvas_item_editor_plugin.h"
|
#include "editor/plugins/canvas_item_editor_plugin.h"
|
||||||
#include "editor/themes/editor_scale.h"
|
#include "editor/themes/editor_scale.h"
|
||||||
|
#include "scene/gui/button.h"
|
||||||
|
#include "scene/gui/check_box.h"
|
||||||
#include "scene/gui/check_button.h"
|
#include "scene/gui/check_button.h"
|
||||||
#include "scene/gui/grid_container.h"
|
#include "scene/gui/grid_container.h"
|
||||||
|
#include "scene/gui/option_button.h"
|
||||||
|
#include "scene/gui/panel_container.h"
|
||||||
#include "scene/gui/separator.h"
|
#include "scene/gui/separator.h"
|
||||||
|
#include "scene/gui/texture_rect.h"
|
||||||
|
|
||||||
// Inspector controls.
|
// Inspector controls.
|
||||||
|
|
||||||
@@ -160,6 +164,41 @@ void EditorPropertyAnchorsPreset::_set_read_only(bool p_read_only) {
|
|||||||
options->set_disabled(p_read_only);
|
options->set_disabled(p_read_only);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void EditorPropertyAnchorsPreset::_notification(int p_what) {
|
||||||
|
switch (p_what) {
|
||||||
|
case NOTIFICATION_THEME_CHANGED: {
|
||||||
|
for (int i = 0; i < options->get_item_count(); i++) {
|
||||||
|
if (options->is_item_separator(i)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
int64_t preset = options->get_item_metadata(i);
|
||||||
|
if (preset < 0 || PRESET_FULL_RECT < preset) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
static const StringName icon_names[] = {
|
||||||
|
StringName("ControlAlignTopLeft", true),
|
||||||
|
StringName("ControlAlignTopRight", true),
|
||||||
|
StringName("ControlAlignBottomLeft", true),
|
||||||
|
StringName("ControlAlignBottomRight", true),
|
||||||
|
StringName("ControlAlignCenterLeft", true),
|
||||||
|
StringName("ControlAlignCenterTop", true),
|
||||||
|
StringName("ControlAlignCenterRight", true),
|
||||||
|
StringName("ControlAlignCenterBottom", true),
|
||||||
|
StringName("ControlAlignCenter", true),
|
||||||
|
StringName("ControlAlignLeftWide", true),
|
||||||
|
StringName("ControlAlignTopWide", true),
|
||||||
|
StringName("ControlAlignRightWide", true),
|
||||||
|
StringName("ControlAlignBottomWide", true),
|
||||||
|
StringName("ControlAlignVCenterWide", true),
|
||||||
|
StringName("ControlAlignHCenterWide", true),
|
||||||
|
StringName("ControlAlignFullRect", true),
|
||||||
|
};
|
||||||
|
options->set_item_icon(i, get_editor_theme_icon(icon_names[preset]));
|
||||||
|
}
|
||||||
|
} break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void EditorPropertyAnchorsPreset::_option_selected(int p_which) {
|
void EditorPropertyAnchorsPreset::_option_selected(int p_which) {
|
||||||
int64_t val = options->get_item_metadata(p_which);
|
int64_t val = options->get_item_metadata(p_which);
|
||||||
emit_changed(get_edited_property(), val);
|
emit_changed(get_edited_property(), val);
|
||||||
@@ -180,30 +219,22 @@ void EditorPropertyAnchorsPreset::update_property() {
|
|||||||
void EditorPropertyAnchorsPreset::setup(const Vector<String> &p_options) {
|
void EditorPropertyAnchorsPreset::setup(const Vector<String> &p_options) {
|
||||||
options->clear();
|
options->clear();
|
||||||
|
|
||||||
Vector<String> split_after;
|
const Vector<int> split_after = {
|
||||||
split_after.append("Custom");
|
-1,
|
||||||
split_after.append("PresetFullRect");
|
PRESET_FULL_RECT,
|
||||||
split_after.append("PresetBottomLeft");
|
PRESET_BOTTOM_LEFT,
|
||||||
split_after.append("PresetCenter");
|
PRESET_CENTER,
|
||||||
|
};
|
||||||
|
|
||||||
for (int i = 0, j = 0; i < p_options.size(); i++, j++) {
|
for (int i = 0; i < p_options.size(); i++) {
|
||||||
Vector<String> text_split = p_options[i].split(":");
|
Vector<String> text_split = p_options[i].split(":");
|
||||||
int64_t current_val = text_split[1].to_int();
|
int64_t current_val = text_split[1].to_int();
|
||||||
|
|
||||||
const String &option_name = text_split[0];
|
const String &option_name = text_split[0];
|
||||||
if (option_name.begins_with("Preset")) {
|
|
||||||
String preset_name = option_name.trim_prefix("Preset");
|
|
||||||
String humanized_name = preset_name.capitalize();
|
|
||||||
String icon_name = "ControlAlign" + preset_name;
|
|
||||||
options->add_icon_item(EditorNode::get_singleton()->get_editor_theme()->get_icon(icon_name, EditorStringName(EditorIcons)), humanized_name);
|
|
||||||
} else {
|
|
||||||
options->add_item(option_name);
|
options->add_item(option_name);
|
||||||
}
|
options->set_item_metadata(-1, current_val);
|
||||||
|
if (split_after.has(current_val)) {
|
||||||
options->set_item_metadata(j, current_val);
|
|
||||||
if (split_after.has(option_name)) {
|
|
||||||
options->add_separator();
|
options->add_separator();
|
||||||
j++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -613,33 +644,33 @@ AnchorPresetPicker::AnchorPresetPicker() {
|
|||||||
top_row->add_theme_constant_override("separation", grid_separation);
|
top_row->add_theme_constant_override("separation", grid_separation);
|
||||||
main_vb->add_child(top_row);
|
main_vb->add_child(top_row);
|
||||||
|
|
||||||
_add_row_button(top_row, PRESET_TOP_LEFT, TTR("Top Left"));
|
_add_row_button(top_row, PRESET_TOP_LEFT, TTRC("Top Left"));
|
||||||
_add_row_button(top_row, PRESET_CENTER_TOP, TTR("Center Top"));
|
_add_row_button(top_row, PRESET_CENTER_TOP, TTRC("Center Top"));
|
||||||
_add_row_button(top_row, PRESET_TOP_RIGHT, TTR("Top Right"));
|
_add_row_button(top_row, PRESET_TOP_RIGHT, TTRC("Top Right"));
|
||||||
_add_separator(top_row, memnew(VSeparator));
|
_add_separator(top_row, memnew(VSeparator));
|
||||||
_add_row_button(top_row, PRESET_TOP_WIDE, TTR("Top Wide"));
|
_add_row_button(top_row, PRESET_TOP_WIDE, TTRC("Top Wide"));
|
||||||
|
|
||||||
HBoxContainer *mid_row = memnew(HBoxContainer);
|
HBoxContainer *mid_row = memnew(HBoxContainer);
|
||||||
mid_row->set_alignment(BoxContainer::ALIGNMENT_CENTER);
|
mid_row->set_alignment(BoxContainer::ALIGNMENT_CENTER);
|
||||||
mid_row->add_theme_constant_override("separation", grid_separation);
|
mid_row->add_theme_constant_override("separation", grid_separation);
|
||||||
main_vb->add_child(mid_row);
|
main_vb->add_child(mid_row);
|
||||||
|
|
||||||
_add_row_button(mid_row, PRESET_CENTER_LEFT, TTR("Center Left"));
|
_add_row_button(mid_row, PRESET_CENTER_LEFT, TTRC("Center Left"));
|
||||||
_add_row_button(mid_row, PRESET_CENTER, TTR("Center"));
|
_add_row_button(mid_row, PRESET_CENTER, TTRC("Center"));
|
||||||
_add_row_button(mid_row, PRESET_CENTER_RIGHT, TTR("Center Right"));
|
_add_row_button(mid_row, PRESET_CENTER_RIGHT, TTRC("Center Right"));
|
||||||
_add_separator(mid_row, memnew(VSeparator));
|
_add_separator(mid_row, memnew(VSeparator));
|
||||||
_add_row_button(mid_row, PRESET_HCENTER_WIDE, TTR("HCenter Wide"));
|
_add_row_button(mid_row, PRESET_HCENTER_WIDE, TTRC("HCenter Wide"));
|
||||||
|
|
||||||
HBoxContainer *bot_row = memnew(HBoxContainer);
|
HBoxContainer *bot_row = memnew(HBoxContainer);
|
||||||
bot_row->set_alignment(BoxContainer::ALIGNMENT_CENTER);
|
bot_row->set_alignment(BoxContainer::ALIGNMENT_CENTER);
|
||||||
bot_row->add_theme_constant_override("separation", grid_separation);
|
bot_row->add_theme_constant_override("separation", grid_separation);
|
||||||
main_vb->add_child(bot_row);
|
main_vb->add_child(bot_row);
|
||||||
|
|
||||||
_add_row_button(bot_row, PRESET_BOTTOM_LEFT, TTR("Bottom Left"));
|
_add_row_button(bot_row, PRESET_BOTTOM_LEFT, TTRC("Bottom Left"));
|
||||||
_add_row_button(bot_row, PRESET_CENTER_BOTTOM, TTR("Center Bottom"));
|
_add_row_button(bot_row, PRESET_CENTER_BOTTOM, TTRC("Center Bottom"));
|
||||||
_add_row_button(bot_row, PRESET_BOTTOM_RIGHT, TTR("Bottom Right"));
|
_add_row_button(bot_row, PRESET_BOTTOM_RIGHT, TTRC("Bottom Right"));
|
||||||
_add_separator(bot_row, memnew(VSeparator));
|
_add_separator(bot_row, memnew(VSeparator));
|
||||||
_add_row_button(bot_row, PRESET_BOTTOM_WIDE, TTR("Bottom Wide"));
|
_add_row_button(bot_row, PRESET_BOTTOM_WIDE, TTRC("Bottom Wide"));
|
||||||
|
|
||||||
_add_separator(main_vb, memnew(HSeparator));
|
_add_separator(main_vb, memnew(HSeparator));
|
||||||
|
|
||||||
@@ -648,11 +679,11 @@ AnchorPresetPicker::AnchorPresetPicker() {
|
|||||||
extra_row->add_theme_constant_override("separation", grid_separation);
|
extra_row->add_theme_constant_override("separation", grid_separation);
|
||||||
main_vb->add_child(extra_row);
|
main_vb->add_child(extra_row);
|
||||||
|
|
||||||
_add_row_button(extra_row, PRESET_LEFT_WIDE, TTR("Left Wide"));
|
_add_row_button(extra_row, PRESET_LEFT_WIDE, TTRC("Left Wide"));
|
||||||
_add_row_button(extra_row, PRESET_VCENTER_WIDE, TTR("VCenter Wide"));
|
_add_row_button(extra_row, PRESET_VCENTER_WIDE, TTRC("VCenter Wide"));
|
||||||
_add_row_button(extra_row, PRESET_RIGHT_WIDE, TTR("Right Wide"));
|
_add_row_button(extra_row, PRESET_RIGHT_WIDE, TTRC("Right Wide"));
|
||||||
_add_separator(extra_row, memnew(VSeparator));
|
_add_separator(extra_row, memnew(VSeparator));
|
||||||
_add_row_button(extra_row, PRESET_FULL_RECT, TTR("Full Rect"));
|
_add_row_button(extra_row, PRESET_FULL_RECT, TTRC("Full Rect"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void SizeFlagPresetPicker::_preset_button_pressed(const int p_preset) {
|
void SizeFlagPresetPicker::_preset_button_pressed(const int p_preset) {
|
||||||
|
|||||||
@@ -33,20 +33,17 @@
|
|||||||
#include "editor/editor_inspector.h"
|
#include "editor/editor_inspector.h"
|
||||||
#include "editor/plugins/editor_plugin.h"
|
#include "editor/plugins/editor_plugin.h"
|
||||||
#include "scene/gui/box_container.h"
|
#include "scene/gui/box_container.h"
|
||||||
#include "scene/gui/button.h"
|
|
||||||
#include "scene/gui/check_box.h"
|
|
||||||
#include "scene/gui/control.h"
|
|
||||||
#include "scene/gui/label.h"
|
|
||||||
#include "scene/gui/margin_container.h"
|
#include "scene/gui/margin_container.h"
|
||||||
#include "scene/gui/option_button.h"
|
|
||||||
#include "scene/gui/panel_container.h"
|
|
||||||
#include "scene/gui/popup.h"
|
|
||||||
#include "scene/gui/separator.h"
|
|
||||||
#include "scene/gui/texture_rect.h"
|
|
||||||
|
|
||||||
|
class CheckBox;
|
||||||
class CheckButton;
|
class CheckButton;
|
||||||
class EditorSelection;
|
class EditorSelection;
|
||||||
class GridContainer;
|
class GridContainer;
|
||||||
|
class Label;
|
||||||
|
class OptionButton;
|
||||||
|
class PanelContainer;
|
||||||
|
class Separator;
|
||||||
|
class TextureRect;
|
||||||
|
|
||||||
// Inspector controls.
|
// Inspector controls.
|
||||||
class ControlPositioningWarning : public MarginContainer {
|
class ControlPositioningWarning : public MarginContainer {
|
||||||
@@ -84,6 +81,7 @@ class EditorPropertyAnchorsPreset : public EditorProperty {
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void _set_read_only(bool p_read_only) override;
|
virtual void _set_read_only(bool p_read_only) override;
|
||||||
|
void _notification(int p_what);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void setup(const Vector<String> &p_options);
|
void setup(const Vector<String> &p_options);
|
||||||
|
|||||||
@@ -33,11 +33,9 @@
|
|||||||
#include "container.h"
|
#include "container.h"
|
||||||
#include "core/config/project_settings.h"
|
#include "core/config/project_settings.h"
|
||||||
#include "core/input/input_map.h"
|
#include "core/input/input_map.h"
|
||||||
#include "core/math/geometry_2d.h"
|
|
||||||
#include "core/os/os.h"
|
#include "core/os/os.h"
|
||||||
|
#include "core/string/string_builder.h"
|
||||||
#include "core/string/translation_server.h"
|
#include "core/string/translation_server.h"
|
||||||
#include "scene/gui/label.h"
|
|
||||||
#include "scene/gui/panel.h"
|
|
||||||
#include "scene/gui/scroll_container.h"
|
#include "scene/gui/scroll_container.h"
|
||||||
#include "scene/main/canvas_layer.h"
|
#include "scene/main/canvas_layer.h"
|
||||||
#include "scene/main/window.h"
|
#include "scene/main/window.h"
|
||||||
@@ -3992,10 +3990,37 @@ void Control::_bind_methods() {
|
|||||||
ADD_PROPERTY(PropertyInfo(Variant::INT, "layout_mode", PROPERTY_HINT_ENUM, "Position,Anchors,Container,Uncontrolled", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_INTERNAL), "_set_layout_mode", "_get_layout_mode");
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "layout_mode", PROPERTY_HINT_ENUM, "Position,Anchors,Container,Uncontrolled", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_INTERNAL), "_set_layout_mode", "_get_layout_mode");
|
||||||
ADD_PROPERTY_DEFAULT("layout_mode", LayoutMode::LAYOUT_MODE_POSITION);
|
ADD_PROPERTY_DEFAULT("layout_mode", LayoutMode::LAYOUT_MODE_POSITION);
|
||||||
|
|
||||||
const String anchors_presets_options = "Custom:-1,PresetFullRect:15,"
|
constexpr struct {
|
||||||
"PresetTopLeft:0,PresetTopRight:1,PresetBottomRight:3,PresetBottomLeft:2,"
|
const char *name;
|
||||||
"PresetCenterLeft:4,PresetCenterTop:5,PresetCenterRight:6,PresetCenterBottom:7,PresetCenter:8,"
|
LayoutPreset value;
|
||||||
"PresetLeftWide:9,PresetTopWide:10,PresetRightWide:11,PresetBottomWide:12,PresetVCenterWide:13,PresetHCenterWide:14";
|
} anchors_presets[] = {
|
||||||
|
{ TTRC("Full Rect"), PRESET_FULL_RECT },
|
||||||
|
{ TTRC("Top Left"), PRESET_TOP_LEFT },
|
||||||
|
{ TTRC("Top Right"), PRESET_TOP_RIGHT },
|
||||||
|
{ TTRC("Bottom Right"), PRESET_BOTTOM_RIGHT },
|
||||||
|
{ TTRC("Bottom Left"), PRESET_BOTTOM_LEFT },
|
||||||
|
{ TTRC("Center Left"), PRESET_CENTER_LEFT },
|
||||||
|
{ TTRC("Center Top"), PRESET_CENTER_TOP },
|
||||||
|
{ TTRC("Center Right"), PRESET_CENTER_RIGHT },
|
||||||
|
{ TTRC("Center Bottom"), PRESET_CENTER_BOTTOM },
|
||||||
|
{ TTRC("Center"), PRESET_CENTER },
|
||||||
|
{ TTRC("Left Wide"), PRESET_LEFT_WIDE },
|
||||||
|
{ TTRC("Top Wide"), PRESET_TOP_WIDE },
|
||||||
|
{ TTRC("Right Wide"), PRESET_RIGHT_WIDE },
|
||||||
|
{ TTRC("Bottom Wide"), PRESET_BOTTOM_WIDE },
|
||||||
|
{ TTRC("VCenter Wide"), PRESET_VCENTER_WIDE },
|
||||||
|
{ TTRC("HCenter Wide"), PRESET_HCENTER_WIDE },
|
||||||
|
};
|
||||||
|
StringBuilder builder;
|
||||||
|
builder.append(TTRC("Custom"));
|
||||||
|
builder.append(":-1");
|
||||||
|
for (size_t i = 0; i < std::size(anchors_presets); i++) {
|
||||||
|
builder.append(",");
|
||||||
|
builder.append(anchors_presets[i].name);
|
||||||
|
builder.append(":");
|
||||||
|
builder.append(itos(anchors_presets[i].value));
|
||||||
|
}
|
||||||
|
const String anchors_presets_options = builder.as_string();
|
||||||
|
|
||||||
ADD_PROPERTY(PropertyInfo(Variant::INT, "anchors_preset", PROPERTY_HINT_ENUM, anchors_presets_options, PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_INTERNAL), "_set_anchors_layout_preset", "_get_anchors_layout_preset");
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "anchors_preset", PROPERTY_HINT_ENUM, anchors_presets_options, PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_INTERNAL), "_set_anchors_layout_preset", "_get_anchors_layout_preset");
|
||||||
ADD_PROPERTY_DEFAULT("anchors_preset", -1);
|
ADD_PROPERTY_DEFAULT("anchors_preset", -1);
|
||||||
|
|||||||
Reference in New Issue
Block a user