Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-21 | LibGUI: Make MenuBar a Core::Object | Andreas Kling | |
This makes it show up in Inspector with all the menus inside it. :^) | |||
2020-04-04 | LibGUI: Add MenuBar::add_menu(name) | Andreas Kling | |
This allows us to construct menus in a more natural way: auto& file_menu = menubar->add_menu("File"); file_menu.add_action(...); Instead of the old way: auto file_menu = GUI::Menu::construct(); file_menu->add_action(...); menubar->add_menu(file_menu); | |||
2020-02-16 | LibGUI: Add forwarding header | Andreas Kling | |
This patch adds <LibGUI/Forward.h> and uses it a bunch. It also dragged various header dependency reduction changes into it. | |||
2020-02-15 | LibGUI: Reduce menu-related header dependencies | Andreas Kling | |
2020-02-06 | LibGUI: Remove leading G from filenames | Andreas Kling | |