From 7c8ad973dc7278f782aed31c6ee0927b2ef97833 Mon Sep 17 00:00:00 2001 From: melhar098_comcast Date: Mon, 4 May 2026 15:52:43 +0000 Subject: [PATCH] add changes to test doc workflow Signed-off-by: melhar098_comcast --- plugin/UserSettings.h | 6 ++++++ plugin/UserSettingsImplementation.h | 1 + 2 files changed, 7 insertions(+) diff --git a/plugin/UserSettings.h b/plugin/UserSettings.h index 3aeb6f8..65551cc 100755 --- a/plugin/UserSettings.h +++ b/plugin/UserSettings.h @@ -187,6 +187,12 @@ namespace Plugin { Exchange::JUserSettings::Event::OnContentPinChanged(_parent, contentPin); } + void OnScreenReaderSpeedChanged(const uint8_t speed) override + { + LOGINFO("ScreenReaderSpeedChanged: %d\n", speed); + Exchange::JUserSettings::Event::OnScreenReaderSpeedChanged(_parent, speed); + } + private: UserSettings& _parent; }; diff --git a/plugin/UserSettingsImplementation.h b/plugin/UserSettingsImplementation.h index 5331140..900694b 100755 --- a/plugin/UserSettingsImplementation.h +++ b/plugin/UserSettingsImplementation.h @@ -53,6 +53,7 @@ #define USERSETTINGS_VOICE_GUIDANCE_RATE_KEY "voiceGuidanceRate" #define USERSETTINGS_VOICE_GUIDANCE_HINTS_KEY "voiceGuidanceHints" #define USERSETTINGS_CONTENT_PIN_KEY "contentPin" +#define USERSETTINGS_SCREEN_READER_SPEED_KEY "screenReaderSpeed" namespace WPEFramework { namespace Plugin {