13e3463276
* built timer app * Style improvements * making sure buttons stay hidden when the app is reopened and reappear after the timer runs out * more sensible calculations of time deltas. eliminated that mysterious scaling factor * changing the timer icon
35 lines
579 B
C++
35 lines
579 B
C++
#pragma once
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
enum class Apps {
|
|
None,
|
|
Launcher,
|
|
Clock,
|
|
SysInfo,
|
|
FirmwareUpdate,
|
|
FirmwareValidation,
|
|
NotificationsPreview,
|
|
Notifications,
|
|
Timer,
|
|
FlashLight,
|
|
BatteryInfo,
|
|
Music,
|
|
Paint,
|
|
Paddle,
|
|
Twos,
|
|
HeartRate,
|
|
Navigation,
|
|
StopWatch,
|
|
Motion,
|
|
Steps,
|
|
QuickSettings,
|
|
Settings,
|
|
SettingWatchFace,
|
|
SettingTimeFormat,
|
|
SettingDisplay,
|
|
SettingWakeUp,
|
|
SettingSteps
|
|
};
|
|
}
|
|
}
|