1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00
serenity/Applications/Piano
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
..
AudioEngine.cpp Piano: New timing system and zoomable piano roll 2020-02-27 10:21:13 +01:00
AudioEngine.h Piano: New timing system and zoomable piano roll 2020-02-27 10:21:13 +01:00
KeysWidget.cpp LibGUI: Make GUI::Frame have the 2px sunken container look by default 2020-02-23 11:10:52 +01:00
KeysWidget.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
KnobsWidget.cpp Applications: Remove G prefixes from comments 2020-03-19 22:52:44 +01:00
KnobsWidget.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
main.cpp LibGUI: Add MenuBar::add_menu(name) 2020-04-04 12:58:05 +02:00
MainWidget.cpp LibGUI: Use set_layout<LayoutType>() in lots of client code 2020-03-04 13:49:48 +01:00
MainWidget.h LibGUI: Add forwarding header 2020-02-16 09:41:56 +01:00
Makefile Piano: Add sampler 2020-02-10 14:04:27 +01:00
Music.h Piano: New timing system and zoomable piano roll 2020-02-27 10:21:13 +01:00
RollWidget.cpp Piano: New timing system and zoomable piano roll 2020-02-27 10:21:13 +01:00
RollWidget.h Piano: New timing system and zoomable piano roll 2020-02-27 10:21:13 +01:00
SamplerWidget.cpp LibGUI: Use set_layout<LayoutType>() in lots of client code 2020-03-04 13:49:48 +01:00
SamplerWidget.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
WaveWidget.cpp LibGUI: Make GUI::Frame have the 2px sunken container look by default 2020-02-23 11:10:52 +01:00
WaveWidget.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00