InfiniTime/src/displayapp/screens/Alarm.h

59 lines
1.9 KiB
C
Raw Normal View History

2021-09-13 20:05:35 +00:00
/* Copyright (C) 2021 mruss77, Florian
This file is part of InfiniTime.
2021-09-13 20:05:35 +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
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
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
#include "displayapp/screens/Screen.h"
2021-09-10 22:40:13 +00:00
#include "systemtask/SystemTask.h"
#include "displayapp/LittleVgl.h"
2021-09-10 22:40:13 +00:00
#include "components/alarm/AlarmController.h"
namespace Pinetime {
namespace Applications {
namespace Screens {
class Alarm : public Screen {
public:
Alarm(DisplayApp* app, Controllers::AlarmController& alarmController);
~Alarm() override;
void SetAlerting();
void OnButtonEvent(lv_obj_t* obj, lv_event_t event);
bool OnButtonPushed() override;
2021-09-10 22:40:13 +00:00
private:
bool running;
2021-09-16 19:38:31 +00:00
uint8_t alarmHours;
uint8_t alarmMinutes;
Controllers::AlarmController& alarmController;
2021-09-10 22:40:13 +00:00
lv_obj_t *time, *btnEnable, *txtEnable, *btnMinutesUp, *btnMinutesDown, *btnHoursUp, *btnHoursDown, *txtMinUp, *txtMinDown,
2021-11-09 09:38:19 +00:00
*txtHrUp, *txtHrDown, *btnRecur, *txtRecur, *btnInfo, *txtInfo;
lv_obj_t* txtMessage = nullptr;
lv_obj_t* btnMessage = nullptr;
2021-09-10 22:40:13 +00:00
enum class EnableButtonState { On, Off, Alerting };
void SetEnableButtonState();
void SetRecurButtonState();
void SetAlarm();
void ShowInfo();
2021-09-29 16:15:23 +00:00
void HideInfo();
void ToggleRecurrence();
2021-09-16 19:38:31 +00:00
void UpdateAlarmTime();
};
};
2021-09-10 22:40:13 +00:00
};
2021-09-16 19:38:31 +00:00
}