1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

LibGUI: Factor out scrolling logic from GTableView into a GScrollableWidget.

This then becomes the base class for GTableView. I'd like to share as much
code as possible with GTextEditor and any other scrollable widgets.
This commit is contained in:
Andreas Kling 2019-03-16 16:03:31 +01:00
parent dd5ca1940a
commit 6fbabac460
5 changed files with 168 additions and 93 deletions

View file

@ -37,6 +37,7 @@ LIBGUI_OBJS = \
GSortingProxyTableModel.o \
GStackWidget.o \
GEvent.o \
GScrollableWidget.o \
GWindow.o
OBJS = $(SHAREDGRAPHICS_OBJS) $(LIBGUI_OBJS)