25#include <QTextToSpeech>
28#include "GlobalObject.h"
29#include "Notification.h"
32namespace Notifications {
164 QVector<QPointer<Notifications::Notification>> m_visualNotifications;
180 void onSpeakerStateChanged(QTextToSpeech::State state);
193 QVector<QPointer<Notifications::Notification>> m_voiceNotifications;
197 QTextToSpeech* m_speaker {
nullptr};
201 QFuture<void> m_speakerFuture;
206 QTimer m_speechBreakTimer;
216 void onMapAndDataUpdateSizeChanged();
220 void onTrafficReceiverRuntimeError();
224 void onTrafficReceiverSelfTestError();
228 QTimer mapsAndDataNotificationTimer;
static Q_INVOKABLE Notifications::NotificationManager * notificationManager()
Pointer to appplication-wide static notification manager instance.
GlobalObject(QObject *parent=nullptr)
Standard constructor.
This class manages notifications and presents them to the GUI.
Q_INVOKABLE void voiceTest()
Voice test.
void speakerChanged()
Notification signal.
void deferredInitialization() override
Non-constructor initialization.
Q_INVOKABLE void addTestNotification()
Issue test notification.
Notifications::Notification * currentVisualNotification
Most important notification to be shown in the GUI.
void waitForSpeechEngine()
Wait until speech engine is fully constructed.
void toastPosted(QString text)
Indicates that the GUI should show a toast.
void currentVisualNotificationChanged()
Notification signal.
NotificationManager(QObject *parent=nullptr)
Standard constructor.
QTextToSpeech * speaker
Pointer to QTextToSpeech.
~NotificationManager() override=default
Standard destructor.
Base class for all notifications.