1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:47:44 +00:00

LibGUI: Add a GFrame class that can be inherited by framey widgets.

This will gather the code for painting sunken/raised frames etc in a single
place and make it easier add a bit of pleasant shading to UI's. :^)
This commit is contained in:
Andreas Kling 2019-03-28 15:30:29 +01:00
parent b6c5bd3d28
commit cb296ffede
7 changed files with 110 additions and 12 deletions

View file

@ -52,6 +52,7 @@ LIBGUI_OBJS = \
GItemView.o \
GIcon.o \
GElapsedTimer.o \
GFrame.o \
GWindow.o
OBJS = $(SHAREDGRAPHICS_OBJS) $(LIBGUI_OBJS)