LibGUI: Flesh out focus implementation and more GTextBox work.

This commit is contained in:
Andreas Kling
2019-01-26 11:24:16 +01:00
parent d72575d196
commit de2423de5f
10 changed files with 54 additions and 27 deletions

View File

@@ -19,6 +19,7 @@ private:
virtual void mousedown_event(GMouseEvent&) override;
virtual const char* class_name() const override { return "GCheckBox"; }
virtual bool accepts_focus() const override { return true; }
String m_caption;
bool m_checked { false };