1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 05:17:34 +00:00

LibGUI: Add optional placeholder to TextEditor

This lets you show some disabled text when no text is entered, and the
editor is not focused.
This commit is contained in:
Peter Elliott 2020-09-20 12:20:24 -07:00 committed by Andreas Kling
parent 5b6ccbb918
commit fa96e57c15
4 changed files with 19 additions and 1 deletions

View file

@ -675,6 +675,11 @@ void TextDocument::remove(const TextRange& unnormalized_range)
notify_did_change();
}
bool TextDocument::is_empty() const
{
return line_count() == 1 && line(0).is_empty();
}
TextRange TextDocument::range_for_entire_line(size_t line_index) const
{
if (line_index >= line_count())