mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:22:46 +00:00 
			
		
		
		
	 1b5b1e4153
			
		
	
	
		1b5b1e4153
		
	
	
	
	
		
			
			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.
		
			
				
	
	
		
			76 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2019-2020, Ryan Grieb <ryan.m.grieb@gmail.com>
 | |
|  * Copyright (c) 2022-2023, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "EventManager.h"
 | |
| #include <LibGUI/Calendar.h>
 | |
| #include <LibGUI/Dialog.h>
 | |
| #include <LibGUI/Model.h>
 | |
| #include <LibGUI/Window.h>
 | |
| 
 | |
| namespace Calendar {
 | |
| 
 | |
| class AddEventDialog final : public GUI::Dialog {
 | |
|     C_OBJECT(AddEventDialog)
 | |
| public:
 | |
|     virtual ~AddEventDialog() override = default;
 | |
| 
 | |
|     static void show(Core::DateTime date_time, EventManager& event_manager, Window* parent_window = nullptr)
 | |
|     {
 | |
|         auto dialog = AddEventDialog::construct(date_time, event_manager, parent_window);
 | |
|         dialog->exec();
 | |
|     }
 | |
| 
 | |
| private:
 | |
|     AddEventDialog(Core::DateTime date_time, EventManager& event_manager, Window* parent_window = nullptr);
 | |
| 
 | |
|     ErrorOr<void> add_event_to_calendar();
 | |
| 
 | |
|     class MonthListModel final : public GUI::Model {
 | |
|     public:
 | |
|         enum Column {
 | |
|             Month,
 | |
|             __Count,
 | |
|         };
 | |
| 
 | |
|         static NonnullRefPtr<MonthListModel> create() { return adopt_ref(*new MonthListModel); }
 | |
|         virtual ~MonthListModel() override = default;
 | |
| 
 | |
|         virtual int row_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override;
 | |
|         virtual int column_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override { return Column::__Count; }
 | |
|         virtual ErrorOr<String> column_name(int) const override;
 | |
|         virtual GUI::Variant data(const GUI::ModelIndex&, GUI::ModelRole) const override;
 | |
| 
 | |
|     private:
 | |
|         MonthListModel() = default;
 | |
|     };
 | |
| 
 | |
|     class MeridiemListModel final : public GUI::Model {
 | |
|     public:
 | |
|         enum Column {
 | |
|             Meridiem,
 | |
|             __Count,
 | |
|         };
 | |
| 
 | |
|         static NonnullRefPtr<MeridiemListModel> create() { return adopt_ref(*new MeridiemListModel); }
 | |
|         virtual ~MeridiemListModel() override = default;
 | |
| 
 | |
|         virtual int row_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override;
 | |
|         virtual int column_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override { return Column::__Count; }
 | |
|         virtual ErrorOr<String> column_name(int) const override;
 | |
|         virtual GUI::Variant data(const GUI::ModelIndex&, GUI::ModelRole) const override;
 | |
| 
 | |
|     private:
 | |
|         MeridiemListModel() = default;
 | |
|     };
 | |
| 
 | |
|     Core::DateTime m_date_time;
 | |
|     EventManager& m_event_manager;
 | |
| };
 | |
| 
 | |
| }
 |