a7f8b59bfb
Replace separate SettingSetDate and SettingSetTime with a combined screenlist. Add DotIndicators. Similar to PageIndicator, but for use when separating screens instead of pages of a list. Co-authored-by: Riku Isokoski <riksu9000@gmail.com>
45 lines
752 B
C++
45 lines
752 B
C++
#pragma once
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
enum class Apps {
|
|
None,
|
|
Launcher,
|
|
Clock,
|
|
SysInfo,
|
|
FirmwareUpdate,
|
|
FirmwareValidation,
|
|
NotificationsPreview,
|
|
Notifications,
|
|
Timer,
|
|
Alarm,
|
|
FlashLight,
|
|
BatteryInfo,
|
|
Music,
|
|
Paint,
|
|
Paddle,
|
|
Twos,
|
|
HeartRate,
|
|
Navigation,
|
|
StopWatch,
|
|
Metronome,
|
|
Motion,
|
|
Steps,
|
|
Weather,
|
|
PassKey,
|
|
QuickSettings,
|
|
Settings,
|
|
SettingWatchFace,
|
|
SettingTimeFormat,
|
|
SettingDisplay,
|
|
SettingWakeUp,
|
|
SettingSteps,
|
|
SettingSetDateTime,
|
|
SettingChimes,
|
|
SettingShakeThreshold,
|
|
SettingBluetooth,
|
|
Error
|
|
};
|
|
}
|
|
}
|