blob: 595ff18119847d15403c3f2e9744980d23b286bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/*
* Copyright 2024 jacqueline <me@jacqueline.id.au>
*
* SPDX-License-Identifier: GPL-3.0-only
*/
#pragma once
#include <optional>
#include <string>
#include <variant>
namespace tts {
/*
* 'Simple' TTS events are events that do not have any extra event-specific
* details.
*/
enum class SimpleEvent {
/*
* Indicates that the screen's content has substantially changed. e.g. a new
* screen has been pushed.
*/
kContextChanged,
};
/*
* Event indicating that the currently selected LVGL object has changed.
*/
struct SelectionChanged {
struct Selection {
std::optional<std::string> description;
bool is_interactive;
};
std::optional<Selection> new_selection;
};
/*
Event emitted when a user enables or disables the 'Spoken Interface' (TTS)
setting on the device. This is used to convey the new state to the
tts::Provider, but will not stop the current sample from being played.
*/
struct TtsEnabledChanged {
bool tts_enabled;
};
using Event = std::variant<SimpleEvent, SelectionChanged, TtsEnabledChanged>;
} // namespace tts
|