1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 01:15:07 +00:00

VisualBuilder: Tweak grid size and add an (empty) toolbox window.

This commit is contained in:
Andreas Kling 2019-04-11 04:01:17 +02:00
parent c6ffb3e2b8
commit c71ece77fa
5 changed files with 30 additions and 7 deletions

View file

@ -71,6 +71,9 @@ public:
bool is_single_line() const { return m_type == SingleLine; }
bool is_multi_line() const { return m_type == MultiLine; }
bool is_ruler_visible() const { return m_ruler_visible; }
void set_ruler_visible(bool b) { m_ruler_visible = b; }
Function<void()> on_cursor_change;
void set_text(const String&);