From: Jeremy Maitin-Shepard Date: Sat, 9 Feb 2013 23:20:58 +0000 (-0800) Subject: Unified focus state save/restore mechanism for both buffer switching and minibuffer X-Git-Tag: debian-1.0--pre-1+git160130-1~179 X-Git-Url: https://repo.or.cz/w/conkeror.git/commitdiff_plain/4b9c34acb26118a970ec57c24d80fd7748639ffb Unified focus state save/restore mechanism for both buffer switching and minibuffer This simplifies the code and makes it more robust to buffer switches while the minibuffer is open. This also reduces chance of bugs due to code duplication (one in isearch.js was fixed). This also incorporates a patch by Joren Van Onder : When opening a hyperlink with its target attribute set to "_blank" a new buffer is opened. When there is no content handler for the mimetype a content_handler_prompt is opened and the new (blank) buffer is killed. saved_focused_frame then references a destroyed object. A simple example of what used to trigger the bug (unless a content handler for midi files is available): link --- diff --git a/modules/buffer.js b/modules/buffer.js index 73719d2..23771e2 100644 --- a/modules/buffer.js +++ b/modules/buffer.js @@ -210,6 +210,11 @@ buffer.prototype = { saved_focused_frame: null, saved_focused_element: null, + clear_saved_focus: function () { + this.saved_focused_frame = null; + this.saved_focused_element = null; + }, + // get title () [must be defined by subclasses] // get name () [must be defined by subclasses] dead: false, /* This is set when the buffer is killed */ @@ -445,10 +450,58 @@ buffer_container.prototype = { select_buffer_hook.run(buffer); }, + // Ensure the focus state for the current buffer is updated + save_focus: function () { + // If minibuffer is active, the focus is already saved, so leave that focus state as is + if (this.window.minibuffer.active) + return; + + var b = this.current; + b.saved_focused_frame = b.focused_frame; + b.saved_focused_element = b.focused_element; + }, + + // Restore the focus state for the current buffer, unless the minibuffer is still active + restore_focus: function () { + /** + * This next focus call seems to be needed to avoid focus + * somehow getting lost (and the keypress handler therefore + * not getting called at all) when killing buffers. + */ + this.window.focus(); + + // If the minibuffer is active, keep the saved focus state but don't + // restore it until the minibuffer becomes inactive + if (this.window.minibuffer.active) + return; + + var b = this.current; + + b.browser.focus(); + + var saved_focused_element = b.saved_focused_element; + var saved_focused_frame = b.saved_focused_frame; + b.clear_saved_focus(); + + if (saved_focused_element) { + try { + if (saved_focused_element.focus) { + set_focus_no_scroll(this.window, saved_focused_element); + return; + } + } catch (e) { /* saved_focused_element may be dead */ } + } + + if (saved_focused_frame) { + try { + set_focus_no_scroll(this.window, saved_focused_frame); + } catch (e) { /* saved_focused_frame may be dead */ } + } + }, + + // Note: old_value is still the current buffer when this is called _switch_away_from: function (old_value) { - // Save focus state - old_value.saved_focused_frame = old_value.focused_frame; - old_value.saved_focused_element = old_value.focused_element; + this.save_focus(); if ('isActive' in old_value.browser.docShell) old_value.browser.docShell.isActive = false; @@ -463,22 +516,7 @@ buffer_container.prototype = { if ('isActive' in buffer.browser.docShell) buffer.browser.docShell.isActive = true; - /** - * This next focus call seems to be needed to avoid focus - * somehow getting lost (and the keypress handler therefore - * not getting called at all) when killing buffers. - */ - this.window.focus(); - - // Restore focus state - buffer.browser.focus(); - if (buffer.saved_focused_element) - set_focus_no_scroll(this.window, buffer.saved_focused_element); - else if (buffer.saved_focused_frame) - set_focus_no_scroll(this.window, buffer.saved_focused_frame); - - buffer.saved_focused_element = null; - buffer.saved_focused_frame = null; + this.restore_focus(); buffer.set_input_mode(); diff --git a/modules/isearch.js b/modules/isearch.js index 3c11cb1..bd9fa06 100644 --- a/modules/isearch.js +++ b/modules/isearch.js @@ -338,8 +338,7 @@ function isearch_done (window, keep_selection) { s.sel_ctrl.setDisplaySelection(Ci.nsISelectionController.SELECTION_NORMAL); // Prevent focus from being reverted - window.minibuffer.saved_focused_element = null; - window.minibuffer.saved_focused_window = null; + s.buffer.clear_saved_focus(); s.done = true; diff --git a/modules/minibuffer.js b/modules/minibuffer.js index 0f3946d..617232a 100644 --- a/modules/minibuffer.js +++ b/modules/minibuffer.js @@ -346,22 +346,13 @@ minibuffer.prototype = { _restore_state: function () { var s = this.current_state; if (s) { - if (!this.active) { - this.saved_focused_frame = this.window.document.commandDispatcher.focusedWindow; - this.saved_focused_element = this.window.document.commandDispatcher.focusedElement; - } + this.window.buffers.save_focus(); s.load(); this.active = true; } else { if (this.active) { this.active = false; - this.window.buffers.current.browser.focus(); - if (this.saved_focused_element && this.saved_focused_element.focus) - set_focus_no_scroll(this.window, this.saved_focused_element); - else if (this.saved_focused_frame) - set_focus_no_scroll(this.window, this.saved_focused_frame); - this.saved_focused_element = null; - this.saved_focused_frame = null; + this.window.buffers.restore_focus(); this._show(this.current_message || this.default_message); } }