1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00
ladybird/DevTools/ProfileViewer
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
..
main.cpp LibGUI: Add MenuBar::add_menu(name) 2020-04-04 12:58:05 +02:00
Makefile LibGfx: Rename from LibDraw :^) 2020-02-06 12:04:00 +01:00
Profile.cpp AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*) 2020-03-08 13:06:51 +01:00
Profile.h AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*) 2020-03-08 13:06:51 +01:00
ProfileModel.cpp ProfileViewer: Add mode that shows percentages instead of sample counts 2020-03-02 23:05:04 +01:00
ProfileModel.h LibGUI: Move Icon and FontDatabase into the GUI namespace 2020-03-07 01:33:53 +01:00
ProfileTimelineWidget.cpp ProfileViewer: Rename Profile::Sample => Profile::Event 2020-03-02 23:05:04 +01:00
ProfileTimelineWidget.h LibGUI: Remove parent parameter to GUI::Widget constructor 2020-02-23 12:27:53 +01:00