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