summaryrefslogtreecommitdiff
path: root/Applications/Calendar
AgeCommit message (Collapse)Author
2020-04-10Calendar: Implement add event actionrhin123
2020-04-10Calendar: Implement add event UIrhin123
2020-04-09Calendar: Corrected spacing on small resizingrhin123
2020-04-08Calendar: Make the application theme-awarerhin123
2020-04-04LibGUI: 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-03-19Calendar: Add license headerrhin123
2020-03-19Calendar: Add a 16x16 app iconrhin123
2020-03-19Calendar: Corrected spacing for widgets and rectanglesrhin123
2020-03-19Calendar: Allow the widget to resize with the windowrhin123
2020-03-19Calendar: Make const arrays static as wellrhin123
2020-03-19Calendar: Don't assign next_month button variable to add_event buttonrhin123
2020-03-18Calendar: Implement basic GUI calendar applicationrhin123