ladybird/Applications/Browser
Andreas Kling 26eeaef0a8 LibGUI: Add MenuBar::add_menu(name)
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-04-04 12:58:05 +02:00
..
BookmarksBarWidget.cpp Browser: Let the user add/remove bookmarks to the bookmarks bar 2020-03-27 14:12:18 +01:00
BookmarksBarWidget.h Browser: Let the user add/remove bookmarks to the bookmarks bar 2020-03-27 14:12:18 +01:00
History.h AK: Make Vector use size_t for its size and capacity 2020-02-25 14:52:35 +01:00
InspectorWidget.cpp Browser: Fix unintentional Web::Element copy 2020-03-18 17:13:22 +01:00
InspectorWidget.h LibWeb: Rename directory LibHTML => LibWeb 2020-03-07 10:32:51 +01:00
main.cpp LibGUI: Add MenuBar::add_menu(name) 2020-04-04 12:58:05 +02:00
Makefile Browser: Add bookmarks bar 2020-03-27 14:12:18 +01:00