LibGUI: Implement keyboard and mouse wheel events for SpinBox

This commit is contained in:
Tibor Nagy 2020-02-24 10:20:25 +01:00 committed by Andreas Kling
commit 5f913c67d9
Notes: sideshowbarker 2024-07-19 09:07:52 +09:00
4 changed files with 34 additions and 5 deletions

View file

@ -49,6 +49,8 @@ public:
protected:
SpinBox();
virtual void keydown_event(KeyEvent&) override;
virtual void mousewheel_event(MouseEvent&) override;
virtual void resize_event(ResizeEvent&) override;
private: