mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:58:12 +00:00

The user can now save, load, and view calendars. A calendar is made up of an array of events which are saved in a JSON file. In the future we should implement the iCalendar standard instead of using a custom format.
16 lines
291 B
Text
16 lines
291 B
Text
@GUI::Widget {
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
|
|
@GUI::ToolbarContainer {
|
|
name: "toolbar_container"
|
|
|
|
@GUI::Toolbar {
|
|
name: "toolbar"
|
|
}
|
|
}
|
|
|
|
@::Calendar::EventCalendar {
|
|
name: "calendar"
|
|
}
|
|
}
|