You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 19:41:11 +00:00
Rename hint_tooltip to tooltip_text & setget
`hint_tooltip` -> `tooltip_text` `set_tooltip` -> `set_tooltip_text` `_get_tooltip` -> `get_tooltip_text` Updates documentation, too.
This commit is contained in:
@@ -536,7 +536,7 @@ void ColorPicker::_add_preset_button(int p_size, const Color &p_color) {
|
||||
btn_preset->set_preset_color(p_color);
|
||||
btn_preset->set_custom_minimum_size(Size2(p_size, p_size));
|
||||
btn_preset->connect("gui_input", callable_mp(this, &ColorPicker::_preset_input).bind(p_color));
|
||||
btn_preset->set_tooltip(vformat(RTR("Color: #%s\nLMB: Apply color\nRMB: Remove preset"), p_color.to_html(p_color.a < 1)));
|
||||
btn_preset->set_tooltip_text(vformat(RTR("Color: #%s\nLMB: Apply color\nRMB: Remove preset"), p_color.to_html(p_color.a < 1)));
|
||||
preset_container->add_child(btn_preset);
|
||||
}
|
||||
|
||||
@@ -1236,7 +1236,7 @@ ColorPicker::ColorPicker() :
|
||||
btn_pick->set_flat(true);
|
||||
hb_smpl->add_child(btn_pick);
|
||||
btn_pick->set_toggle_mode(true);
|
||||
btn_pick->set_tooltip(RTR("Pick a color from the editor window."));
|
||||
btn_pick->set_tooltip_text(RTR("Pick a color from the editor window."));
|
||||
btn_pick->connect("pressed", callable_mp(this, &ColorPicker::_screen_pick_pressed));
|
||||
|
||||
VBoxContainer *vbl = memnew(VBoxContainer);
|
||||
@@ -1276,7 +1276,7 @@ ColorPicker::ColorPicker() :
|
||||
text_type = memnew(Button);
|
||||
hhb->add_child(text_type);
|
||||
text_type->set_text("#");
|
||||
text_type->set_tooltip(RTR("Switch between hexadecimal and code values."));
|
||||
text_type->set_tooltip_text(RTR("Switch between hexadecimal and code values."));
|
||||
if (Engine::get_singleton()->is_editor_hint()) {
|
||||
text_type->connect("pressed", callable_mp(this, &ColorPicker::_text_type_toggled));
|
||||
} else {
|
||||
@@ -1337,7 +1337,7 @@ ColorPicker::ColorPicker() :
|
||||
|
||||
btn_add_preset = memnew(Button);
|
||||
btn_add_preset->set_icon_alignment(HORIZONTAL_ALIGNMENT_CENTER);
|
||||
btn_add_preset->set_tooltip(RTR("Add current color as a preset."));
|
||||
btn_add_preset->set_tooltip_text(RTR("Add current color as a preset."));
|
||||
btn_add_preset->connect("pressed", callable_mp(this, &ColorPicker::_add_preset_pressed));
|
||||
preset_container->add_child(btn_add_preset);
|
||||
}
|
||||
|
||||
@@ -3062,12 +3062,12 @@ bool Control::is_auto_translating() const {
|
||||
|
||||
// Extra properties.
|
||||
|
||||
void Control::set_tooltip(const String &p_tooltip) {
|
||||
data.tooltip = p_tooltip;
|
||||
void Control::set_tooltip_text(const String &p_hint) {
|
||||
data.tooltip = p_hint;
|
||||
update_configuration_warnings();
|
||||
}
|
||||
|
||||
String Control::_get_tooltip() const {
|
||||
String Control::get_tooltip_text() const {
|
||||
return data.tooltip;
|
||||
}
|
||||
|
||||
@@ -3383,9 +3383,9 @@ void Control::_bind_methods() {
|
||||
ClassDB::bind_method(D_METHOD("set_v_grow_direction", "direction"), &Control::set_v_grow_direction);
|
||||
ClassDB::bind_method(D_METHOD("get_v_grow_direction"), &Control::get_v_grow_direction);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("set_tooltip", "tooltip"), &Control::set_tooltip);
|
||||
ClassDB::bind_method(D_METHOD("set_tooltip_text", "hint"), &Control::set_tooltip_text);
|
||||
ClassDB::bind_method(D_METHOD("get_tooltip_text"), &Control::get_tooltip_text);
|
||||
ClassDB::bind_method(D_METHOD("get_tooltip", "at_position"), &Control::get_tooltip, DEFVAL(Point2()));
|
||||
ClassDB::bind_method(D_METHOD("_get_tooltip"), &Control::_get_tooltip);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("set_default_cursor_shape", "shape"), &Control::set_default_cursor_shape);
|
||||
ClassDB::bind_method(D_METHOD("get_default_cursor_shape"), &Control::get_default_cursor_shape);
|
||||
@@ -3475,8 +3475,8 @@ void Control::_bind_methods() {
|
||||
ADD_GROUP("Auto Translate", "");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "auto_translate"), "set_auto_translate", "is_auto_translating");
|
||||
|
||||
ADD_GROUP("Hint", "hint_");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::STRING, "hint_tooltip", PROPERTY_HINT_MULTILINE_TEXT), "set_tooltip", "_get_tooltip");
|
||||
ADD_GROUP("Tooltip", "tooltip_");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::STRING, "tooltip_text", PROPERTY_HINT_MULTILINE_TEXT), "set_tooltip_text", "get_tooltip_text");
|
||||
|
||||
ADD_GROUP("Focus", "focus_");
|
||||
ADD_PROPERTYI(PropertyInfo(Variant::NODE_PATH, "focus_neighbor_left", PROPERTY_HINT_NODE_PATH_VALID_TYPES, "Control"), "set_focus_neighbor", "get_focus_neighbor", SIDE_LEFT);
|
||||
|
||||
@@ -312,7 +312,7 @@ private:
|
||||
|
||||
// Extra properties.
|
||||
|
||||
String _get_tooltip() const;
|
||||
String get_tooltip_text() const;
|
||||
|
||||
protected:
|
||||
// Dynamic properties.
|
||||
@@ -604,7 +604,7 @@ public:
|
||||
|
||||
// Extra properties.
|
||||
|
||||
void set_tooltip(const String &p_tooltip);
|
||||
void set_tooltip_text(const String &text);
|
||||
virtual String get_tooltip(const Point2 &p_pos) const;
|
||||
virtual Control *make_custom_tooltip(const String &p_text) const;
|
||||
|
||||
|
||||
@@ -1015,13 +1015,13 @@ FileDialog::FileDialog() {
|
||||
|
||||
dir_prev = memnew(Button);
|
||||
dir_prev->set_flat(true);
|
||||
dir_prev->set_tooltip(RTR("Go to previous folder."));
|
||||
dir_prev->set_tooltip_text(RTR("Go to previous folder."));
|
||||
dir_next = memnew(Button);
|
||||
dir_next->set_flat(true);
|
||||
dir_next->set_tooltip(RTR("Go to next folder."));
|
||||
dir_next->set_tooltip_text(RTR("Go to next folder."));
|
||||
dir_up = memnew(Button);
|
||||
dir_up->set_flat(true);
|
||||
dir_up->set_tooltip(RTR("Go to parent folder."));
|
||||
dir_up->set_tooltip_text(RTR("Go to parent folder."));
|
||||
hbc->add_child(dir_prev);
|
||||
hbc->add_child(dir_next);
|
||||
hbc->add_child(dir_up);
|
||||
@@ -1045,7 +1045,7 @@ FileDialog::FileDialog() {
|
||||
|
||||
refresh = memnew(Button);
|
||||
refresh->set_flat(true);
|
||||
refresh->set_tooltip(RTR("Refresh files."));
|
||||
refresh->set_tooltip_text(RTR("Refresh files."));
|
||||
refresh->connect("pressed", callable_mp(this, &FileDialog::update_file_list));
|
||||
hbc->add_child(refresh);
|
||||
|
||||
@@ -1053,7 +1053,7 @@ FileDialog::FileDialog() {
|
||||
show_hidden->set_flat(true);
|
||||
show_hidden->set_toggle_mode(true);
|
||||
show_hidden->set_pressed(is_showing_hidden_files());
|
||||
show_hidden->set_tooltip(RTR("Toggle the visibility of hidden files."));
|
||||
show_hidden->set_tooltip_text(RTR("Toggle the visibility of hidden files."));
|
||||
show_hidden->connect("toggled", callable_mp(this, &FileDialog::set_show_hidden_files));
|
||||
hbc->add_child(show_hidden);
|
||||
|
||||
|
||||
@@ -2464,28 +2464,28 @@ GraphEdit::GraphEdit() {
|
||||
zoom_minus = memnew(Button);
|
||||
zoom_minus->set_flat(true);
|
||||
zoom_hb->add_child(zoom_minus);
|
||||
zoom_minus->set_tooltip(RTR("Zoom Out"));
|
||||
zoom_minus->set_tooltip_text(RTR("Zoom Out"));
|
||||
zoom_minus->connect("pressed", callable_mp(this, &GraphEdit::_zoom_minus));
|
||||
zoom_minus->set_focus_mode(FOCUS_NONE);
|
||||
|
||||
zoom_reset = memnew(Button);
|
||||
zoom_reset->set_flat(true);
|
||||
zoom_hb->add_child(zoom_reset);
|
||||
zoom_reset->set_tooltip(RTR("Zoom Reset"));
|
||||
zoom_reset->set_tooltip_text(RTR("Zoom Reset"));
|
||||
zoom_reset->connect("pressed", callable_mp(this, &GraphEdit::_zoom_reset));
|
||||
zoom_reset->set_focus_mode(FOCUS_NONE);
|
||||
|
||||
zoom_plus = memnew(Button);
|
||||
zoom_plus->set_flat(true);
|
||||
zoom_hb->add_child(zoom_plus);
|
||||
zoom_plus->set_tooltip(RTR("Zoom In"));
|
||||
zoom_plus->set_tooltip_text(RTR("Zoom In"));
|
||||
zoom_plus->connect("pressed", callable_mp(this, &GraphEdit::_zoom_plus));
|
||||
zoom_plus->set_focus_mode(FOCUS_NONE);
|
||||
|
||||
snap_button = memnew(Button);
|
||||
snap_button->set_flat(true);
|
||||
snap_button->set_toggle_mode(true);
|
||||
snap_button->set_tooltip(RTR("Enable snap and show grid."));
|
||||
snap_button->set_tooltip_text(RTR("Enable snap and show grid."));
|
||||
snap_button->connect("pressed", callable_mp(this, &GraphEdit::_snap_toggled));
|
||||
snap_button->set_pressed(true);
|
||||
snap_button->set_focus_mode(FOCUS_NONE);
|
||||
@@ -2502,7 +2502,7 @@ GraphEdit::GraphEdit() {
|
||||
minimap_button = memnew(Button);
|
||||
minimap_button->set_flat(true);
|
||||
minimap_button->set_toggle_mode(true);
|
||||
minimap_button->set_tooltip(RTR("Enable grid minimap."));
|
||||
minimap_button->set_tooltip_text(RTR("Enable grid minimap."));
|
||||
minimap_button->connect("pressed", callable_mp(this, &GraphEdit::_minimap_toggled));
|
||||
minimap_button->set_pressed(true);
|
||||
minimap_button->set_focus_mode(FOCUS_NONE);
|
||||
@@ -2511,7 +2511,7 @@ GraphEdit::GraphEdit() {
|
||||
layout_button = memnew(Button);
|
||||
layout_button->set_flat(true);
|
||||
zoom_hb->add_child(layout_button);
|
||||
layout_button->set_tooltip(RTR("Arrange nodes."));
|
||||
layout_button->set_tooltip_text(RTR("Arrange nodes."));
|
||||
layout_button->connect("pressed", callable_mp(this, &GraphEdit::arrange_nodes));
|
||||
layout_button->set_focus_mode(FOCUS_NONE);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user