[gnome-shell/gnome-3-12] a11y: initialize atspi on demand
- From: Alejandro Piñeiro Iglesias <apinheiro src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gnome-3-12] a11y: initialize atspi on demand
- Date: Fri, 20 Jun 2014 12:32:26 +0000 (UTC)
commit e021ca2135ff8b0897ee5f8d014f7ff16cd9243e
Author: Alejandro Piñeiro <apinheiro igalia com>
Date: Thu May 29 14:12:16 2014 +0200
a11y: initialize atspi on demand
Only call atspi.init if needed. This is also more
coherent with the listener registration, that is
only done when needed.
https://bugzilla.gnome.org/show_bug.cgi?id=730118
js/ui/focusCaretTracker.js | 18 +++++++++++++-----
1 files changed, 13 insertions(+), 5 deletions(-)
---
diff --git a/js/ui/focusCaretTracker.js b/js/ui/focusCaretTracker.js
index beaf2de..265fcce 100644
--- a/js/ui/focusCaretTracker.js
+++ b/js/ui/focusCaretTracker.js
@@ -32,11 +32,9 @@ const FocusCaretTracker = new Lang.Class({
Name: 'FocusCaretTracker',
_init: function() {
- Atspi.init();
- Atspi.set_timeout(250, 250);
-
this._atspiListener = Atspi.EventListener.new(Lang.bind(this, this._onChanged));
+ this._atspiInited = false;
this._focusListenerRegistered = false;
this._caretListenerRegistered = false;
},
@@ -48,12 +46,20 @@ const FocusCaretTracker = new Lang.Class({
this.emit('caret-moved', event);
},
+ _initAtspi: function() {
+ if (!this._atspiInited) {
+ Atspi.init();
+ Atspi.set_timeout(250, 250);
+ this._atspiInited = true;
+ }
+ },
+
registerFocusListener: function() {
if (this._focusListenerRegistered)
return;
- // Ignore the return value, we get an exception if they fail
- // And they should never fail
+ this._initAtspi();
+
this._atspiListener.register(STATECHANGED + ':focused');
this._atspiListener.register(STATECHANGED + ':selected');
this._focusListenerRegistered = true;
@@ -63,6 +69,8 @@ const FocusCaretTracker = new Lang.Class({
if (this._caretListenerRegistered)
return;
+ this._initAtspi();
+
this._atspiListener.register(CARETMOVED);
this._caretListenerRegistered = true;
},
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]