mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:07:35 +00:00
LibGUI: Use widget override cursors in GUI::TextEditor
This commit is contained in:
parent
e2050ea0ce
commit
7a2faecc15
1 changed files with 6 additions and 7 deletions
|
@ -54,6 +54,7 @@ TextEditor::TextEditor(Type type)
|
||||||
: m_type(type)
|
: m_type(type)
|
||||||
{
|
{
|
||||||
set_accepts_emoji_input(true);
|
set_accepts_emoji_input(true);
|
||||||
|
set_override_cursor(Gfx::StandardCursor::IBeam);
|
||||||
set_background_role(ColorRole::Base);
|
set_background_role(ColorRole::Base);
|
||||||
set_foreground_role(ColorRole::BaseText);
|
set_foreground_role(ColorRole::BaseText);
|
||||||
set_document(TextDocument::create());
|
set_document(TextDocument::create());
|
||||||
|
@ -1341,18 +1342,11 @@ void TextEditor::undefer_reflow()
|
||||||
|
|
||||||
void TextEditor::enter_event(Core::Event&)
|
void TextEditor::enter_event(Core::Event&)
|
||||||
{
|
{
|
||||||
ASSERT(window());
|
|
||||||
if (!is_displayonly())
|
|
||||||
window()->set_cursor(Gfx::StandardCursor::IBeam);
|
|
||||||
|
|
||||||
m_automatic_selection_scroll_timer->stop();
|
m_automatic_selection_scroll_timer->stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
void TextEditor::leave_event(Core::Event&)
|
void TextEditor::leave_event(Core::Event&)
|
||||||
{
|
{
|
||||||
ASSERT(window());
|
|
||||||
window()->set_cursor(Gfx::StandardCursor::None);
|
|
||||||
|
|
||||||
if (m_in_drag_select)
|
if (m_in_drag_select)
|
||||||
m_automatic_selection_scroll_timer->start();
|
m_automatic_selection_scroll_timer->start();
|
||||||
}
|
}
|
||||||
|
@ -1398,6 +1392,11 @@ void TextEditor::set_mode(const Mode mode)
|
||||||
default:
|
default:
|
||||||
ASSERT_NOT_REACHED();
|
ASSERT_NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!is_displayonly())
|
||||||
|
set_override_cursor(Gfx::StandardCursor::IBeam);
|
||||||
|
else
|
||||||
|
set_override_cursor(Gfx::StandardCursor::None);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TextEditor::set_has_open_button(bool has_button)
|
void TextEditor::set_has_open_button(bool has_button)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue