Shows ColorRect in Color constants autocompletion
This commit is contained in:
parent
32be9299ba
commit
4c65dc975c
3 changed files with 29 additions and 1 deletions
|
@ -255,6 +255,7 @@ struct ScriptCodeCompletionOption {
|
|||
String insert_text;
|
||||
Color font_color;
|
||||
RES icon;
|
||||
Variant default_value;
|
||||
|
||||
ScriptCodeCompletionOption() {}
|
||||
|
||||
|
|
|
@ -792,6 +792,9 @@ static void _find_identifiers_in_class(const GDScriptParser::ClassNode *p_class,
|
|||
continue;
|
||||
}
|
||||
option = ScriptCodeCompletionOption(member.constant->identifier->name, ScriptCodeCompletionOption::KIND_CONSTANT);
|
||||
if (member.constant->initializer) {
|
||||
option.default_value = member.constant->initializer->reduced_value;
|
||||
}
|
||||
break;
|
||||
case GDScriptParser::ClassNode::Member::CLASS:
|
||||
if (p_only_functions) {
|
||||
|
@ -2404,6 +2407,11 @@ Error GDScriptLanguage::complete_code(const String &p_code, const String &p_path
|
|||
Variant::get_constants_for_type(completion_context.builtin_type, &constants);
|
||||
for (const List<StringName>::Element *E = constants.front(); E != nullptr; E = E->next()) {
|
||||
ScriptCodeCompletionOption option(E->get(), ScriptCodeCompletionOption::KIND_CONSTANT);
|
||||
bool valid = false;
|
||||
Variant default_value = Variant::get_constant_value(completion_context.builtin_type, E->get(), &valid);
|
||||
if (valid) {
|
||||
option.default_value = default_value;
|
||||
}
|
||||
options.insert(option.display, option);
|
||||
}
|
||||
} break;
|
||||
|
|
|
@ -1367,6 +1367,10 @@ void TextEdit::_notification(int p_what) {
|
|||
int scrollw = get_theme_constant("completion_scroll_width");
|
||||
Color scrollc = get_theme_color("completion_scroll_color");
|
||||
|
||||
#ifdef TOOLS_ENABLED
|
||||
scrollw *= EDSCALE;
|
||||
#endif
|
||||
|
||||
const int completion_options_size = completion_options.size();
|
||||
int lines = MIN(completion_options_size, maxlines);
|
||||
int w = 0;
|
||||
|
@ -1389,6 +1393,17 @@ void TextEdit::_notification(int p_what) {
|
|||
Size2 icon_area_size(get_row_height(), get_row_height());
|
||||
w += icon_area_size.width + icon_hsep;
|
||||
|
||||
int line_from = CLAMP(completion_index - lines / 2, 0, completion_options_size - lines);
|
||||
|
||||
for (int i = 0; i < lines; i++) {
|
||||
int l = line_from + i;
|
||||
ERR_CONTINUE(l < 0 || l >= completion_options_size);
|
||||
if (completion_options[l].default_value.get_type() == Variant::COLOR) {
|
||||
w += icon_area_size.width;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
int th = h + csb->get_minimum_size().y;
|
||||
|
||||
if (cursor_pos.y + get_row_height() + th > get_size().height) {
|
||||
|
@ -1415,7 +1430,6 @@ void TextEdit::_notification(int p_what) {
|
|||
if (cache.completion_background_color.a > 0.01) {
|
||||
RenderingServer::get_singleton()->canvas_item_add_rect(ci, Rect2(completion_rect.position, completion_rect.size + Size2(scrollw, 0)), cache.completion_background_color);
|
||||
}
|
||||
int line_from = CLAMP(completion_index - lines / 2, 0, completion_options_size - lines);
|
||||
RenderingServer::get_singleton()->canvas_item_add_rect(ci, Rect2(Point2(completion_rect.position.x, completion_rect.position.y + (completion_index - line_from) * get_row_height()), Size2(completion_rect.size.width, get_row_height())), cache.completion_selected_color);
|
||||
draw_rect(Rect2(completion_rect.position + Vector2(icon_area_size.x + icon_hsep, 0), Size2(MIN(nofs, completion_rect.size.width - (icon_area_size.x + icon_hsep)), completion_rect.size.height)), cache.completion_existing_color);
|
||||
|
||||
|
@ -1437,6 +1451,11 @@ void TextEdit::_notification(int p_what) {
|
|||
}
|
||||
|
||||
title_pos.x = icon_area.position.x + icon_area.size.width + icon_hsep;
|
||||
|
||||
if (completion_options[l].default_value.get_type() == Variant::COLOR) {
|
||||
draw_rect(Rect2(Point2(completion_rect.position.x + completion_rect.size.width - icon_area_size.x, icon_area.position.y), icon_area_size), (Color)completion_options[l].default_value);
|
||||
}
|
||||
|
||||
draw_string(cache.font, title_pos, completion_options[l].display, completion_options[l].font_color, completion_rect.size.width - (icon_area_size.x + icon_hsep));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue