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

LibGUI: Add a GToolBar class that can be populated with GActions.

The same action can be added to both a menu and a toolbar.
Use this to put a toolbar into FileManager. This is pretty neat. :^)
This commit is contained in:
Andreas Kling 2019-02-20 02:39:46 +01:00
parent 4804609b7e
commit b704d3d295
24 changed files with 196 additions and 44 deletions

View file

@ -27,6 +27,7 @@ LIBGUI_OBJS = \
GApplication.o \
GAction.o \
GFontDatabase.o \
GToolBar.o \
GWindow.o
OBJS = $(SHAREDGRAPHICS_OBJS) $(LIBGUI_OBJS)