mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
InputTextMultiline(): vertical scrolling wip, selection rendering fix (#200)
This commit is contained in:
parent
417a7bc29b
commit
f75b8c72cf
63
imgui.cpp
63
imgui.cpp
@ -1190,7 +1190,7 @@ struct ImGuiTextEditState
|
|||||||
size_t CurLenA, CurLenW; // we need to maintain our buffer length in both UTF-8 and wchar format.
|
size_t CurLenA, CurLenW; // we need to maintain our buffer length in both UTF-8 and wchar format.
|
||||||
size_t BufSizeA; // end-user buffer size
|
size_t BufSizeA; // end-user buffer size
|
||||||
ImVec2 Size; // widget width/height
|
ImVec2 Size; // widget width/height
|
||||||
float ScrollX;
|
ImVec2 Scroll;
|
||||||
STB_TexteditState StbState;
|
STB_TexteditState StbState;
|
||||||
float CursorAnim;
|
float CursorAnim;
|
||||||
ImVec2 InputCursorScreenPos; // Cursor position in screen space to be used by IME callback.
|
ImVec2 InputCursorScreenPos; // Cursor position in screen space to be used by IME callback.
|
||||||
@ -1207,7 +1207,6 @@ struct ImGuiTextEditState
|
|||||||
|
|
||||||
void OnKeyPressed(int key);
|
void OnKeyPressed(int key);
|
||||||
void UpdateScrollOffset();
|
void UpdateScrollOffset();
|
||||||
ImVec2 CalcDisplayOffsetFromCharIdx(int i) const;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Data saved in imgui.ini file
|
// Data saved in imgui.ini file
|
||||||
@ -6668,34 +6667,39 @@ void ImGuiTextEditState::OnKeyPressed(int key)
|
|||||||
void ImGuiTextEditState::UpdateScrollOffset()
|
void ImGuiTextEditState::UpdateScrollOffset()
|
||||||
{
|
{
|
||||||
// Scroll in chunks of quarter width
|
// Scroll in chunks of quarter width
|
||||||
const float scroll_x_increment = Size.x * 0.25f;
|
|
||||||
ImVec2 cursor_offset;
|
ImVec2 cursor_offset;
|
||||||
const ImWchar* text = Text.begin();
|
const ImWchar* text = Text.begin();
|
||||||
CalcTextSizeW(Font, FontSize, FLT_MAX, text, text+StbState.cursor, NULL, &cursor_offset);
|
CalcTextSizeW(Font, FontSize, FLT_MAX, text, text+StbState.cursor, NULL, &cursor_offset);
|
||||||
|
|
||||||
// If widget became bigger than text (because of a resize), reset horizontal scrolling
|
// If widget became bigger than text (because of a resize), reset horizontal scrolling
|
||||||
if (ScrollX > 0.0f)
|
// FIXME-OPT
|
||||||
|
if (Scroll.x > 0.0f || Scroll.y > 0.0f)
|
||||||
{
|
{
|
||||||
const float text_width = CalcTextSizeW(Font, FontSize, FLT_MAX, text, NULL, NULL).x;
|
ImVec2 text_size = CalcTextSizeW(Font, FontSize, FLT_MAX, text, NULL, NULL);
|
||||||
if (text_width < Size.x)
|
bool ret = false;
|
||||||
{
|
if (text_size.x < Size.x) { Scroll.x = 0.0f; ret = true; }
|
||||||
ScrollX = 0.0f;
|
if (text_size.y < Size.y) { Scroll.y = 0.0f; ret = true; }
|
||||||
|
if (ret)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (cursor_offset.x < ScrollX)
|
const ImVec2 scroll_increment(Size.x * 0.25f, FontSize);
|
||||||
ScrollX = ImMax(0.0f, cursor_offset.x - scroll_x_increment);
|
if (cursor_offset.x < Scroll.x)
|
||||||
else if (cursor_offset.x - Size.x >= ScrollX)
|
Scroll.x = ImMax(0.0f, cursor_offset.x - scroll_increment.x);
|
||||||
ScrollX = cursor_offset.x - Size.x + scroll_x_increment;
|
else if (cursor_offset.x - Size.x >= Scroll.x)
|
||||||
}
|
Scroll.x = cursor_offset.x - Size.x + scroll_increment.x;
|
||||||
|
|
||||||
ImVec2 ImGuiTextEditState::CalcDisplayOffsetFromCharIdx(int i) const
|
//float height_aligned = FontSize * (float)(int)(0.5f + Size.y / FontSize);
|
||||||
{
|
if (cursor_offset.y - Scroll.y <= 0.0f)
|
||||||
ImVec2 offset;
|
Scroll.y = ImMax(0.0f, cursor_offset.y - FontSize * 2.0f);
|
||||||
CalcTextSizeW(Font, FontSize, FLT_MAX, Text.begin(), Text.begin()+i, NULL, &offset);
|
else if (cursor_offset.y - Scroll.y > Size.y + 1)
|
||||||
offset.x -= ScrollX;
|
Scroll.y = cursor_offset.y - Size.y + FontSize * 1.0f;
|
||||||
return offset;
|
/*
|
||||||
|
if (cursor_offset.y <= Scroll.y)
|
||||||
|
Scroll.y = ImMax(0.0f, cursor_offset.y - FontSize * 2.0f);
|
||||||
|
else if (cursor_offset.y - height_aligned >= Scroll.y)
|
||||||
|
Scroll.y = cursor_offset.y - height_aligned + FontSize * 2.0f;
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
// Public API to manipulate UTF-8 text
|
// Public API to manipulate UTF-8 text
|
||||||
@ -6861,7 +6865,7 @@ static bool InputTextEx(const char* label, char* buf, size_t buf_size, const ImV
|
|||||||
if (edit_state.Id != id)
|
if (edit_state.Id != id)
|
||||||
{
|
{
|
||||||
edit_state.Id = id;
|
edit_state.Id = id;
|
||||||
edit_state.ScrollX = 0.0f;
|
edit_state.Scroll = ImVec2(0.f, 0.f);
|
||||||
stb_textedit_initialize_state(&edit_state.StbState, !is_multiline);
|
stb_textedit_initialize_state(&edit_state.StbState, !is_multiline);
|
||||||
if (!is_multiline && focus_requested_by_code)
|
if (!is_multiline && focus_requested_by_code)
|
||||||
select_all = true;
|
select_all = true;
|
||||||
@ -6918,12 +6922,12 @@ static bool InputTextEx(const char* label, char* buf, size_t buf_size, const ImV
|
|||||||
}
|
}
|
||||||
else if (io.MouseClicked[0] && !edit_state.SelectedAllMouseLock)
|
else if (io.MouseClicked[0] && !edit_state.SelectedAllMouseLock)
|
||||||
{
|
{
|
||||||
stb_textedit_click(&edit_state, &edit_state.StbState, mx + edit_state.ScrollX, my);
|
stb_textedit_click(&edit_state, &edit_state.StbState, mx + edit_state.Scroll.x, my + edit_state.Scroll.y);
|
||||||
edit_state.CursorAnimReset();
|
edit_state.CursorAnimReset();
|
||||||
}
|
}
|
||||||
else if (io.MouseDown[0] && !edit_state.SelectedAllMouseLock)
|
else if (io.MouseDown[0] && !edit_state.SelectedAllMouseLock)
|
||||||
{
|
{
|
||||||
stb_textedit_drag(&edit_state, &edit_state.StbState, mx + edit_state.ScrollX, my);
|
stb_textedit_drag(&edit_state, &edit_state.StbState, mx + edit_state.Scroll.x, my + edit_state.Scroll.y);
|
||||||
edit_state.CursorAnimReset();
|
edit_state.CursorAnimReset();
|
||||||
}
|
}
|
||||||
if (edit_state.SelectedAllMouseLock && !io.MouseDown[0])
|
if (edit_state.SelectedAllMouseLock && !io.MouseDown[0])
|
||||||
@ -7124,8 +7128,8 @@ static bool InputTextEx(const char* label, char* buf, size_t buf_size, const ImV
|
|||||||
const float font_offy_dn = 2.0f;
|
const float font_offy_dn = 2.0f;
|
||||||
const ImVec2 render_pos = frame_bb.Min + style.FramePadding;
|
const ImVec2 render_pos = frame_bb.Min + style.FramePadding;
|
||||||
|
|
||||||
//const float render_scroll_x = (g.ActiveId == id) ? edit_state.ScrollX : 0.0f;
|
//const ImVec2 render_scroll = (g.ActiveId == id) ? edit_state.Scroll : ImVec2(0.f, 0.f);
|
||||||
const float render_scroll_x = (edit_state.Id == id) ? edit_state.ScrollX : 0.0f;
|
const ImVec2 render_scroll = (edit_state.Id == id) ? edit_state.Scroll : ImVec2(0.f, 0.f);
|
||||||
const ImVec4 clip_rect(frame_bb.Min.x, frame_bb.Min.y, frame_bb.Min.x + size.x + style.FramePadding.x*2.0f, frame_bb.Min.y + size.y + style.FramePadding.y*2.0f);
|
const ImVec4 clip_rect(frame_bb.Min.x, frame_bb.Min.y, frame_bb.Min.x + size.x + style.FramePadding.x*2.0f, frame_bb.Min.y + size.y + style.FramePadding.y*2.0f);
|
||||||
|
|
||||||
if (g.ActiveId == id)
|
if (g.ActiveId == id)
|
||||||
@ -7144,7 +7148,8 @@ static bool InputTextEx(const char* label, char* buf, size_t buf_size, const ImV
|
|||||||
for (const ImWchar* p = text_selected_begin; p < text_selected_end; )
|
for (const ImWchar* p = text_selected_begin; p < text_selected_end; )
|
||||||
{
|
{
|
||||||
ImVec2 rect_size = CalcTextSizeW(edit_state.Font, edit_state.FontSize, FLT_MAX, p, text_selected_end, &p, NULL, true);
|
ImVec2 rect_size = CalcTextSizeW(edit_state.Font, edit_state.FontSize, FLT_MAX, p, text_selected_end, &p, NULL, true);
|
||||||
ImRect rect(render_pos + rect_pos + ImVec2(-edit_state.ScrollX, (p == text_selected_begin) ? -font_offy_up : -g.FontSize), render_pos + rect_pos + ImVec2(rect_size.x - edit_state.ScrollX, (p == text_selected_end) ? +font_offy_dn : 0.0f));
|
if (rect_size.x <= 0.0f) rect_size.x = 2.0f; // So we can see selected empty lines
|
||||||
|
ImRect rect(render_pos - render_scroll + rect_pos + ImVec2(0.0f, (p == text_selected_begin) ? -font_offy_up : -g.FontSize), render_pos - render_scroll + rect_pos + ImVec2(rect_size.x, (p == text_selected_end) ? +font_offy_dn : 0.0f));
|
||||||
rect.Clip(clip_rect);
|
rect.Clip(clip_rect);
|
||||||
if (rect.Overlaps(clip_rect))
|
if (rect.Overlaps(clip_rect))
|
||||||
window->DrawList->AddRectFilled(rect.Min, rect.Max, font_color);
|
window->DrawList->AddRectFilled(rect.Min, rect.Max, font_color);
|
||||||
@ -7154,7 +7159,7 @@ static bool InputTextEx(const char* label, char* buf, size_t buf_size, const ImV
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
window->DrawList->AddText(g.Font, g.FontSize, render_pos - ImVec2(render_scroll_x, 0.0f), window->Color(ImGuiCol_Text), buf, NULL, 0.0f, &clip_rect);
|
window->DrawList->AddText(g.Font, g.FontSize, render_pos - render_scroll, window->Color(ImGuiCol_Text), buf, NULL, 0.0f, &clip_rect);
|
||||||
|
|
||||||
// Log as text
|
// Log as text
|
||||||
if (GImGui->LogEnabled)
|
if (GImGui->LogEnabled)
|
||||||
@ -7162,7 +7167,9 @@ static bool InputTextEx(const char* label, char* buf, size_t buf_size, const ImV
|
|||||||
|
|
||||||
if (g.ActiveId == id)
|
if (g.ActiveId == id)
|
||||||
{
|
{
|
||||||
const ImVec2 cursor_pos = render_pos + edit_state.CalcDisplayOffsetFromCharIdx(edit_state.StbState.cursor);
|
ImVec2 cursor_pos;
|
||||||
|
CalcTextSizeW(edit_state.Font, edit_state.FontSize, FLT_MAX, edit_state.Text.begin(), edit_state.Text.begin() + edit_state.StbState.cursor, NULL, &cursor_pos);
|
||||||
|
cursor_pos += render_pos - edit_state.Scroll;
|
||||||
|
|
||||||
// Draw blinking cursor
|
// Draw blinking cursor
|
||||||
if (g.InputTextState.CursorIsVisible())
|
if (g.InputTextState.CursorIsVisible())
|
||||||
|
Loading…
Reference in New Issue
Block a user