InfiniTime/src/displayapp/screens/Alarm.h

68 lines
2.3 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"
2022-07-22 05:33:15 +00:00
#include "displayapp/widgets/Counter.h"
2021-09-10 22:40:13 +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,
2022-07-22 05:33:15 +00:00
Controllers::Settings::ClockType clockType,
2022-01-18 17:08:03 +00:00
System::SystemTask& systemTask);
~Alarm() override;
void SetAlerting();
void OnButtonEvent(lv_obj_t* obj, lv_event_t event);
bool OnButtonPushed() override;
2022-01-18 17:08:03 +00:00
bool OnTouchEvent(TouchEvents event) override;
2022-07-22 05:33:15 +00:00
void OnValueChanged();
2022-01-18 17:08:03 +00:00
void StopAlerting();
2021-09-10 22:40:13 +00:00
private:
Controllers::AlarmController& alarmController;
2022-01-18 17:08:03 +00:00
System::SystemTask& systemTask;
2021-09-10 22:40:13 +00:00
lv_obj_t *btnStop, *txtStop, *btnRecur, *txtRecur, *btnInfo, *enableSwitch;
lv_obj_t* lblampm = nullptr;
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
enum class EnableButtonState { On, Off, Alerting };
2022-07-22 05:33:15 +00:00
void DisableAlarm();
void SetRecurButtonState();
void SetSwitchState(lv_anim_enable_t anim);
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();
2022-07-22 05:33:15 +00:00
Widgets::Counter hourCounter = Widgets::Counter(0, 23, jetbrains_mono_76);
Widgets::Counter minuteCounter = Widgets::Counter(0, 59, jetbrains_mono_76);
};
};
2021-09-10 22:40:13 +00:00
};
2021-09-16 19:38:31 +00:00
}