1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:57:35 +00:00

GWindow: Add SerenityKeys minimum functionality

This commit is contained in:
faissaloo 2019-06-03 16:02:49 +01:00
parent 9ac95d1867
commit 72264661fd
6 changed files with 109 additions and 4 deletions

View file

@ -26,6 +26,7 @@ public:
virtual void click() = 0;
virtual const char* class_name() const override { return "GAbstractButton"; }
virtual bool accepts_focus() const override { return true; }
virtual bool accepts_keyboard_select() const { return true; }
protected:
explicit GAbstractButton(GWidget* parent);