summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordobey <dobey>2006-09-05 21:00:48 +0000
committerdobey <dobey>2006-09-05 21:00:48 +0000
commitf116280da51f94b90e26a415b73b57854b687be9 (patch)
treed3a2abdd83005cb5e22f08cce154e8491706b6e1
parentab8c1f661658881b2b9c2a4690b4c6a0fa1a4f72 (diff)
2006-09-05 Rodney Dawes <dobey@novell.com>
* scripts/gnome-font-properties.py: Peek at the font details dialog * scripts/gnome-keyboard-properties.py: Peek at the layout dialog * scripts/gnome-theme-manager.py: Peek at the theme details dialog
-rw-r--r--ChangeLog8
-rwxr-xr-xscripts/gnome-font-properties.py3
-rwxr-xr-xscripts/gnome-keyboard-properties.py3
-rwxr-xr-xscripts/gnome-theme-manager.py6
4 files changed, 20 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 62109b3..c9f97e8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-09-05 Rodney Dawes <dobey@novell.com>
+
+ * scripts/gnome-font-properties.py: Peek at the font details dialog
+
+ * scripts/gnome-keyboard-properties.py: Peek at the layout dialog
+
+ * scripts/gnome-theme-manager.py: Peek at the theme details dialog
+
2006-09-01 Rodney Dawes <dobey@novell.com>
* scripts/gnome-background-properties.py: Use Finish button on HEAD
diff --git a/scripts/gnome-font-properties.py b/scripts/gnome-font-properties.py
index fae0925..043f327 100755
--- a/scripts/gnome-font-properties.py
+++ b/scripts/gnome-font-properties.py
@@ -14,6 +14,9 @@ guiexist (window_title)
a11y_scan_window (window_title)
+click (window_title, 'btnDetails')
+a11y_scan_dialog ('dlgFontRenderingDetails', 'btnClose')
+
click (window_title, 'btnClose')
a11y_test_shutdown ()
diff --git a/scripts/gnome-keyboard-properties.py b/scripts/gnome-keyboard-properties.py
index 36a278a..d09fb7a 100755
--- a/scripts/gnome-keyboard-properties.py
+++ b/scripts/gnome-keyboard-properties.py
@@ -14,6 +14,9 @@ guiexist (window_title)
a11y_scan_window (window_title)
+click (window_title, 'btnAdd')
+a11y_scan_dialog ('dlgChooseALayout', 'btnCancel')
+
click (window_title, 'btnClose')
a11y_test_shutdown ()
diff --git a/scripts/gnome-theme-manager.py b/scripts/gnome-theme-manager.py
index aa1fe8a..bc689e0 100755
--- a/scripts/gnome-theme-manager.py
+++ b/scripts/gnome-theme-manager.py
@@ -14,6 +14,12 @@ guiexist (window_title)
a11y_scan_window (window_title)
+click (window_title, 'btnInstallTheme')
+a11y_scan_dialog ('dlgThemeInstallation', 'btnCancel')
+
+click (window_title, 'btnThemeDetails')
+a11y_scan_dialog ('dlgThemeDetails', 'btnClose')
+
click (window_title, 'btnClose')
a11y_test_shutdown ()