96165a8541
In my PR updating clang-format, I forgot to also format the headers.
31 lines
623 B
C++
31 lines
623 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
namespace Display {
|
|
enum class Messages : uint8_t {
|
|
GoToSleep,
|
|
GoToRunning,
|
|
UpdateDateTime,
|
|
UpdateBleConnection,
|
|
TouchEvent,
|
|
ButtonPushed,
|
|
ButtonLongPressed,
|
|
ButtonLongerPressed,
|
|
ButtonDoubleClicked,
|
|
NewNotification,
|
|
TimerDone,
|
|
BleFirmwareUpdateStarted,
|
|
UpdateTimeOut,
|
|
DimScreen,
|
|
RestoreBrightness,
|
|
ShowPairingKey,
|
|
AlarmTriggered,
|
|
Clock,
|
|
BleRadioEnableToggle
|
|
};
|
|
}
|
|
}
|
|
}
|