1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 10:18:15 +09:00

LibGUI: Move AbstractTableView::keydown_event() down to TableView

We can't really share this stuff with TreeView anyway, since tables
and trees have very different spatial relationships between indexes.
This commit is contained in:
Andreas Kling 2020-05-21 13:40:52 +02:00
parent 9d9a31384e
commit 80f43ffc27
Notes: sideshowbarker 2024-07-19 06:17:30 +09:00
4 changed files with 44 additions and 43 deletions

View file

@ -38,6 +38,7 @@ public:
protected:
TableView();
virtual void keydown_event(KeyEvent&) override;
virtual void paint_event(PaintEvent&) override;
};