commit/wintenApps: josephsl: NVDA now announces various info such as Windows Update progress in Settings app

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Mon, 18 Jan 2016 17:40:15 -0000

1 new commit in wintenApps:

https://bitbucket.org/nvdaaddonteam/wintenapps/commits/b6384d3161eb/
Changeset:   b6384d3161eb
Branch:      master
User:        josephsl
Date:        2016-01-18 17:39:13+00:00
Summary:     NVDA now announces various info such as Windows Update progress in 
Settings app

Affected #:  2 files

diff --git a/addon/appModules/systemsettings.py 
b/addon/appModules/systemsettings.py
new file mode 100755
index 0000000..995650f
--- /dev/null
+++ b/addon/appModules/systemsettings.py
@@ -0,0 +1,15 @@
+# Windows 10 Settings appModuleHandler
+# Part of Windows 10 App Essentials
+# Copyright 2016 Joseph Lee, released under GPL
+
+# Several hacks related to Settings app.
+
+import appModuleHandler
+import ui
+
+class AppModule(appModuleHandler.AppModule):
+
+       def event_nameChange(self, obj, nextHandler):
+               # For now, all name change events will result in items being 
announced.
+               ui.message(obj.name)
+               nextHandler()

diff --git a/readme.md b/readme.md
index 20afea8..e4e9619 100755
--- a/readme.md
+++ b/readme.md
@@ -11,6 +11,7 @@ The following app modules or support modules for some apps 
are included (see eac
 * Alarms and Clock.
 * Calculator (modern).
 * Insider Hub (Windows Insiders only).
+* Settings (system settings, Windows+I).
 * Twitter.
 * TeamViewer Touch.
 * Miscellaneous modules for controls such as Start Menu tiles.
@@ -29,6 +30,10 @@ The following app modules or support modules for some apps 
are included (see eac
 * Labels for radio buttons are announced.
 * TeamViewer Touch: Lables for buttons are announced.
 
+## Settings
+
+* Certain information such as Windows Update progress is now reported 
automatically.
+
 ## Twitter
 
 * Button labels are now announced.

Repository URL: https://bitbucket.org/nvdaaddonteam/wintenapps/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts:

  • » commit/wintenApps: josephsl: NVDA now announces various info such as Windows Update progress in Settings app - commits-noreply