diff options
| author | Martin Chuckeles | 2016-03-04 11:05:42 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2016-03-05 12:58:01 +0100 |
| commit | 848c7378fd52166992797dd0d27b9c5a5ba14f22 (patch) | |
| tree | 7f73772f2e78955e755df95cd32b63522627cae9 /scene/gui/text_edit.cpp | |
| parent | 4b2fcabb7436b0b37f46688ca3235f720dc42a98 (diff) | |
| download | godot-848c7378fd52166992797dd0d27b9c5a5ba14f22.tar.gz godot-848c7378fd52166992797dd0d27b9c5a5ba14f22.tar.zst godot-848c7378fd52166992797dd0d27b9c5a5ba14f22.zip | |
Add editor settings for call hint placement
Added settings: text_editor/put_callhint_tooltip_below_current_line
and text_editor/callhint_tooltip_offset
(cherry picked from commit 47206b409d6802ac9ccbaedaa0daedc30b739e2f)
Diffstat (limited to 'scene/gui/text_edit.cpp')
| -rw-r--r-- | scene/gui/text_edit.cpp | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index db0c7b3ac..5d7436517 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -847,7 +847,7 @@ void TextEdit::_notification(int p_what) { } } - + bool completion_below = false; if (completion_active) { // code completion box Ref<StyleBox> csb = get_stylebox("completion"); @@ -878,11 +878,12 @@ void TextEdit::_notification(int p_what) { } int th = h + csb->get_minimum_size().y; + if (cursor_pos.y+get_row_height()+th > get_size().height) { completion_rect.pos.y=cursor_pos.y-th; } else { completion_rect.pos.y=cursor_pos.y+get_row_height()+csb->get_offset().y; - + completion_below = true; } if (cursor_pos.x-nofs+w+scrollw > get_size().width) { @@ -930,8 +931,24 @@ void TextEdit::_notification(int p_what) { completion_line_ofs=line_from; } + + // check to see if the hint should be drawn + bool show_hint = false; + if (completion_hint!="") { + if (completion_active) { + if (completion_below && !callhint_below) { + show_hint = true; + } + else if (!completion_below && callhint_below) { + show_hint = true; + } + } + else { + show_hint = true; + } + } - if (completion_hint!="" && !completion_active) { + if (show_hint) { Ref<StyleBox> sb = get_stylebox("panel","TooltipPanel"); Ref<Font> font = cache.font; @@ -967,7 +984,15 @@ void TextEdit::_notification(int p_what) { } - Point2 hint_ofs = Vector2(completion_hint_offset,cursor_pos.y+minsize.y); + Point2 hint_ofs = Vector2(completion_hint_offset,cursor_pos.y) + callhint_offset; + + if (callhint_below) { + hint_ofs.y += get_row_height() + sb->get_offset().y; + } + else { + hint_ofs.y -= minsize.y + sb->get_offset().y; + } + draw_style_box(sb,Rect2(hint_ofs,minsize)); spacing=0; |
