2021-09-13 20:05:35 +00:00
|
|
|
/* Copyright (C) 2021 mruss77, Florian
|
|
|
|
|
2021-09-13 19:26:28 +00:00
|
|
|
This file is part of InfiniTime.
|
2021-09-13 20:05:35 +00:00
|
|
|
|
2021-09-13 19:26:28 +00:00
|
|
|
InfiniTime is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2021-09-13 20:05:35 +00:00
|
|
|
|
2021-09-13 19:26:28 +00:00
|
|
|
InfiniTime is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2021-09-13 20:05:35 +00:00
|
|
|
|
2021-09-13 19:26:28 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-09-10 22:40:13 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-10-13 20:08:35 +00:00
|
|
|
#include "displayapp/screens/Screen.h"
|
2021-09-10 22:40:13 +00:00
|
|
|
#include "systemtask/SystemTask.h"
|
2021-10-13 20:08:35 +00:00
|
|
|
#include "displayapp/LittleVgl.h"
|
2021-09-10 22:40:13 +00:00
|
|
|
#include "components/alarm/AlarmController.h"
|
|
|
|
|
2021-09-13 19:26:28 +00:00
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
class Alarm : public Screen {
|
|
|
|
public:
|
2022-01-18 17:08:03 +00:00
|
|
|
Alarm(DisplayApp* app,
|
|
|
|
Controllers::AlarmController& alarmController,
|
|
|
|
Pinetime::Controllers::Settings& settingsController,
|
|
|
|
System::SystemTask& systemTask);
|
2021-09-13 19:26:28 +00:00
|
|
|
~Alarm() override;
|
|
|
|
void SetAlerting();
|
|
|
|
void OnButtonEvent(lv_obj_t* obj, lv_event_t event);
|
2021-09-28 19:50:09 +00:00
|
|
|
bool OnButtonPushed() override;
|
2022-01-18 17:08:03 +00:00
|
|
|
bool OnTouchEvent(TouchEvents event) override;
|
|
|
|
void StopAlerting();
|
2021-09-10 22:40:13 +00:00
|
|
|
|
2021-09-13 19:26:28 +00:00
|
|
|
private:
|
2021-09-16 19:38:31 +00:00
|
|
|
uint8_t alarmHours;
|
|
|
|
uint8_t alarmMinutes;
|
2021-09-13 19:26:28 +00:00
|
|
|
Controllers::AlarmController& alarmController;
|
2022-01-16 14:40:23 +00:00
|
|
|
Controllers::Settings& settingsController;
|
2022-01-18 17:08:03 +00:00
|
|
|
System::SystemTask& systemTask;
|
2021-09-10 22:40:13 +00:00
|
|
|
|
2022-05-09 15:16:08 +00:00
|
|
|
lv_obj_t *time, *lblampm, *btnStop, *txtStop, *btnMinutesUp, *btnMinutesDown, *btnHoursUp, *btnHoursDown, *txtMinUp, *txtMinDown,
|
|
|
|
*txtHrUp, *txtHrDown, *btnRecur, *txtRecur, *btnInfo, *txtInfo, *enableSwitch;
|
2021-11-09 09:38:19 +00:00
|
|
|
lv_obj_t* txtMessage = nullptr;
|
|
|
|
lv_obj_t* btnMessage = nullptr;
|
2022-01-18 17:08:03 +00:00
|
|
|
lv_task_t* taskStopAlarm = nullptr;
|
2021-09-10 22:40:13 +00:00
|
|
|
|
2021-09-13 19:26:28 +00:00
|
|
|
enum class EnableButtonState { On, Off, Alerting };
|
|
|
|
void SetRecurButtonState();
|
2022-02-02 11:57:30 +00:00
|
|
|
void SetSwitchState(lv_anim_enable_t anim);
|
2021-09-13 19:26:28 +00:00
|
|
|
void SetAlarm();
|
|
|
|
void ShowInfo();
|
2021-09-29 16:15:23 +00:00
|
|
|
void HideInfo();
|
2021-09-13 19:26:28 +00:00
|
|
|
void ToggleRecurrence();
|
2021-09-16 19:38:31 +00:00
|
|
|
void UpdateAlarmTime();
|
2021-09-13 19:26:28 +00:00
|
|
|
};
|
|
|
|
};
|
2021-09-10 22:40:13 +00:00
|
|
|
};
|
2021-09-16 19:38:31 +00:00
|
|
|
}
|