2020-08-14 07:46:37 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
2021-04-09 19:16:21 +00:00
|
|
|
enum class Apps {
|
2021-04-18 17:28:14 +00:00
|
|
|
None,
|
|
|
|
Launcher,
|
|
|
|
Clock,
|
|
|
|
SysInfo,
|
|
|
|
FirmwareUpdate,
|
|
|
|
FirmwareValidation,
|
|
|
|
NotificationsPreview,
|
|
|
|
Notifications,
|
2021-05-20 18:43:54 +00:00
|
|
|
Timer,
|
2021-09-10 22:40:13 +00:00
|
|
|
Alarm,
|
2021-04-18 17:28:14 +00:00
|
|
|
FlashLight,
|
|
|
|
BatteryInfo,
|
|
|
|
Music,
|
|
|
|
Paint,
|
|
|
|
Paddle,
|
|
|
|
Twos,
|
|
|
|
HeartRate,
|
|
|
|
Navigation,
|
|
|
|
StopWatch,
|
2021-06-12 13:06:58 +00:00
|
|
|
Metronome,
|
2021-04-18 17:28:14 +00:00
|
|
|
Motion,
|
2021-04-26 20:29:48 +00:00
|
|
|
Steps,
|
2021-11-30 22:45:28 +00:00
|
|
|
Weather,
|
2021-10-30 18:02:39 +00:00
|
|
|
PassKey,
|
2021-04-18 17:28:14 +00:00
|
|
|
QuickSettings,
|
|
|
|
Settings,
|
|
|
|
SettingWatchFace,
|
|
|
|
SettingTimeFormat,
|
|
|
|
SettingDisplay,
|
2021-04-26 20:29:48 +00:00
|
|
|
SettingWakeUp,
|
2021-06-24 17:15:23 +00:00
|
|
|
SettingSteps,
|
2021-07-09 12:15:50 +00:00
|
|
|
SettingSetDate,
|
2021-10-10 14:48:45 +00:00
|
|
|
SettingSetTime,
|
2021-11-07 10:50:33 +00:00
|
|
|
SettingChimes,
|
2021-09-27 02:52:02 +00:00
|
|
|
SettingShakeThreshold,
|
2021-12-24 02:30:14 +00:00
|
|
|
SettingAirplaneMode,
|
2021-09-27 02:52:02 +00:00
|
|
|
Error
|
2021-04-04 02:08:51 +00:00
|
|
|
};
|
2020-08-14 07:46:37 +00:00
|
|
|
}
|
2020-12-03 14:33:45 +00:00
|
|
|
}
|