Andreas Kling
52a250cb61
LibGUI: Make MenuBar a Core::Object
...
This makes it show up in Inspector with all the menus inside it. :^)
2020-04-21 16:19:18 +02:00
rhin123
cd84544706
Calendar: Implement add event action
2020-04-10 11:28:34 +02:00
rhin123
06604c3786
Calendar: Implement add event UI
2020-04-10 11:28:34 +02:00
rhin123
bdb6b2ced3
Calendar: Corrected spacing on small resizing
2020-04-09 08:38:35 +02:00
rhin123
e91cb83a23
Calendar: Make the application theme-aware
2020-04-08 10:34:20 +02:00
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
rhin123
073ac3a22f
Calendar: Add license header
2020-03-19 22:54:30 +01:00
rhin123
8bc412c80b
Calendar: Add a 16x16 app icon
2020-03-19 22:54:30 +01:00
rhin123
19e1cd9fb8
Calendar: Corrected spacing for widgets and rectangles
2020-03-19 22:54:30 +01:00
rhin123
6d26714ded
Calendar: Allow the widget to resize with the window
2020-03-19 09:55:14 +01:00
rhin123
5744049b74
Calendar: Make const arrays static as well
2020-03-19 09:55:14 +01:00
rhin123
dc680d57aa
Calendar: Don't assign next_month button variable to add_event button
2020-03-19 09:55:14 +01:00
rhin123
39c21f368a
Calendar: Implement basic GUI calendar application
2020-03-18 08:17:01 +01:00