mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-18 20:14:12 -04:00
26 lines
719 B
C++
26 lines
719 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <module-db/Interface/EventsRecord.hpp>
|
|
#include "OptionWindow.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
class CalendarEventsOptions : public OptionWindow
|
|
{
|
|
std::shared_ptr<EventsRecord> eventRecord;
|
|
std::string goBackWindowName;
|
|
|
|
public:
|
|
CalendarEventsOptions(app::Application *app);
|
|
~CalendarEventsOptions() override = default;
|
|
auto handleSwitchData(SwitchData *data) -> bool override;
|
|
|
|
private:
|
|
auto eventsOptionsList() -> std::list<gui::Option>;
|
|
auto eventDelete() -> bool;
|
|
};
|
|
}; // namespace gui
|