1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

Calendar: Implement add event UI

This commit is contained in:
rhin123 2020-04-09 17:05:01 -05:00 committed by Andreas Kling
parent 4f48fcdb94
commit 06604c3786
6 changed files with 145 additions and 20 deletions

View file

@ -31,8 +31,10 @@
const String name_of_month(int month);
class Calendar final {
class Calendar final : public RefCounted<Calendar> {
public:
static const String name_of_month(int month);
Calendar(Core::DateTime date_time);
~Calendar();
@ -41,6 +43,7 @@ public:
int selected_year() const { return m_selected_year; }
int selected_month() const { return m_selected_month; }
bool is_today(Core::DateTime date_time) const;
void add_event(Core::DateTime date_time);
private:
Core::DateTime m_date_time;