diff options
| author | jacqueline <me@jacqueline.id.au> | 2024-01-05 10:38:35 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2024-01-05 10:38:35 +1100 |
| commit | 34cae4e6e4bb00b3453bcdab084368a949c908a4 (patch) | |
| tree | 024caadd70ea35ab2c73cc782f3a37c93a90702f /src/ui/include/ui_events.hpp | |
| parent | 938ba62f57ed2c002bae4aec236eeaeb200e4cba (diff) | |
| download | tangara-fw-34cae4e6e4bb00b3453bcdab084368a949c908a4.tar.gz | |
add an alerts module for lua, and implement a volume indicator with it
Diffstat (limited to 'src/ui/include/ui_events.hpp')
| -rw-r--r-- | src/ui/include/ui_events.hpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ui/include/ui_events.hpp b/src/ui/include/ui_events.hpp index 111f37a8..59be7606 100644 --- a/src/ui/include/ui_events.hpp +++ b/src/ui/include/ui_events.hpp @@ -24,9 +24,9 @@ struct OnStorageChange : tinyfsm::Event { struct OnSystemError : tinyfsm::Event {}; - struct OnLuaError : tinyfsm::Event { - std::string message; - }; +struct OnLuaError : tinyfsm::Event { + std::string message; +}; namespace internal { @@ -54,6 +54,8 @@ struct OnboardingNavigate : tinyfsm::Event { struct ModalConfirmPressed : tinyfsm::Event {}; struct ModalCancelPressed : tinyfsm::Event {}; +struct DismissAlerts : tinyfsm::Event {}; + } // namespace internal } // namespace ui |
