Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
#ifndef nsFocusManager_h___
|
|
|
|
#define nsFocusManager_h___
|
|
|
|
|
2013-03-22 00:05:20 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsIDocument.h"
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
#include "nsIFocusManager.h"
|
|
|
|
#include "nsIObserver.h"
|
2011-11-27 11:51:52 +00:00
|
|
|
#include "nsIWidget.h"
|
2013-03-22 00:05:20 +00:00
|
|
|
#include "nsWeakReference.h"
|
2012-06-15 02:31:55 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
#define FOCUSMETHOD_MASK 0xF000
|
2010-04-21 14:53:42 +00:00
|
|
|
#define FOCUSMETHODANDRING_MASK 0xF0F000
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
#define FOCUSMANAGER_CONTRACTID "@mozilla.org/focus-manager;1"
|
|
|
|
|
2013-03-22 00:05:20 +00:00
|
|
|
class nsIContent;
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
class nsIDocShellTreeItem;
|
|
|
|
class nsPIDOMWindow;
|
2011-06-18 00:08:32 +00:00
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
struct nsDelayedBlurOrFocusEvent;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The focus manager keeps track of where the focus is, that is, the node
|
|
|
|
* which receives key events.
|
|
|
|
*/
|
|
|
|
|
2012-06-15 02:31:55 +00:00
|
|
|
class nsFocusManager MOZ_FINAL : public nsIFocusManager,
|
|
|
|
public nsIObserver,
|
|
|
|
public nsSupportsWeakReference
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
{
|
2011-11-27 11:51:52 +00:00
|
|
|
typedef mozilla::widget::InputContextAction InputContextAction;
|
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsFocusManager, nsIFocusManager)
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
NS_DECL_NSIFOCUSMANAGER
|
|
|
|
|
|
|
|
// called to initialize and stop the focus manager at startup and shutdown
|
|
|
|
static nsresult Init();
|
|
|
|
static void Shutdown();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the single focus manager.
|
|
|
|
*/
|
2009-08-14 02:09:49 +00:00
|
|
|
static nsFocusManager* GetFocusManager() { return sInstance; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A faster version of nsIFocusManager::GetFocusedElement, returning a
|
|
|
|
* raw nsIContent pointer (instead of having AddRef-ed nsIDOMElement
|
|
|
|
* pointer filled in to an out-parameter).
|
|
|
|
*/
|
|
|
|
nsIContent* GetFocusedContent() { return mFocusedContent; }
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
2012-05-22 09:25:44 +00:00
|
|
|
/**
|
|
|
|
* Return a focused window. Version of nsIFocusManager::GetFocusedWindow.
|
|
|
|
*/
|
|
|
|
nsPIDOMWindow* GetFocusedWindow() const { return mFocusedWindow; }
|
|
|
|
|
2012-05-22 23:48:35 +00:00
|
|
|
/**
|
|
|
|
* Return an active window. Version of nsIFocusManager::GetActiveWindow.
|
|
|
|
*/
|
|
|
|
nsPIDOMWindow* GetActiveWindow() const { return mActiveWindow; }
|
|
|
|
|
2010-04-27 09:58:58 +00:00
|
|
|
/**
|
|
|
|
* Called when content has been removed.
|
|
|
|
*/
|
|
|
|
nsresult ContentRemoved(nsIDocument* aDocument, nsIContent* aContent);
|
|
|
|
|
2010-11-06 05:04:11 +00:00
|
|
|
/**
|
|
|
|
* Called when mouse button down event handling is started and finished.
|
|
|
|
*/
|
|
|
|
void SetMouseButtonDownHandlingDocument(nsIDocument* aDocument)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!aDocument || !mMouseDownEventHandlingDocument,
|
|
|
|
"Some mouse button down events are nested?");
|
|
|
|
mMouseDownEventHandlingDocument = aDocument;
|
|
|
|
}
|
|
|
|
|
2013-05-22 03:28:43 +00:00
|
|
|
/**
|
|
|
|
* Update the caret with current mode (whether in caret browsing mode or not).
|
|
|
|
*/
|
|
|
|
void UpdateCaretForCaretBrowsingMode();
|
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
/**
|
|
|
|
* Returns the content node that would be focused if aWindow was in an
|
|
|
|
* active window. This will traverse down the frame hierarchy, starting at
|
|
|
|
* the given window aWindow. Sets aFocusedWindow to the window with the
|
|
|
|
* document containing aFocusedContent. If no element is focused,
|
|
|
|
* aFocusedWindow may be still be set -- this means that the document is
|
|
|
|
* focused but no element within it is focused.
|
|
|
|
*
|
|
|
|
* aWindow and aFocusedWindow must both be non-null.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
static nsIContent* GetFocusedDescendant(nsPIDOMWindow* aWindow, bool aDeep,
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
nsPIDOMWindow** aFocusedWindow);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the content node that focus will be redirected to if aContent was
|
|
|
|
* focused. This is used for the special case of certain XUL elements such
|
|
|
|
* as textboxes which redirect focus to an anonymous child.
|
|
|
|
*
|
|
|
|
* aContent must be non-null.
|
|
|
|
*
|
|
|
|
* XXXndeakin this should be removed eventually but I want to do that as
|
|
|
|
* followup work.
|
|
|
|
*/
|
|
|
|
static nsIContent* GetRedirectedFocus(nsIContent* aContent);
|
|
|
|
|
2011-04-20 12:47:40 +00:00
|
|
|
/**
|
2011-11-27 11:51:52 +00:00
|
|
|
* Returns an InputContextAction cause for aFlags.
|
2011-04-20 12:47:40 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
static InputContextAction::Cause GetFocusMoveActionCause(uint32_t aFlags);
|
2011-04-20 12:47:40 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool sMouseFocusesFormControl;
|
2010-08-09 16:15:47 +00:00
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
nsFocusManager();
|
|
|
|
~nsFocusManager();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensure that the widget associated with the currently focused window is
|
|
|
|
* focused at the widget level.
|
|
|
|
*/
|
|
|
|
void EnsureCurrentWidgetFocused();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Blur whatever is currently focused and focus aNewContent. aFlags is a
|
|
|
|
* bitmask of the flags defined in nsIFocusManager. If aFocusChanged is
|
|
|
|
* true, then the focus has actually shifted and the caret position will be
|
|
|
|
* updated to the new focus, aNewContent will be scrolled into view (unless
|
|
|
|
* a flag disables this) and the focus method for the window will be updated.
|
2010-11-15 21:12:50 +00:00
|
|
|
* If aAdjustWidget is false, don't change the widget focus state.
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
*
|
|
|
|
* All actual focus changes must use this method to do so. (as opposed
|
|
|
|
* to those that update the focus in an inactive window for instance).
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
void SetFocusInner(nsIContent* aNewContent, int32_t aFlags,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aFocusChanged, bool aAdjustWidget);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if aPossibleAncestor is the same as aWindow or an
|
|
|
|
* ancestor of aWindow.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsSameOrAncestor(nsPIDOMWindow* aPossibleAncestor,
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
nsPIDOMWindow* aWindow);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the window that is the lowest common ancestor of both aWindow1
|
|
|
|
* and aWindow2, or null if they share no common ancestor.
|
|
|
|
*/
|
|
|
|
already_AddRefed<nsPIDOMWindow> GetCommonAncestor(nsPIDOMWindow* aWindow1,
|
|
|
|
nsPIDOMWindow* aWindow2);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When aNewWindow is focused, adjust the ancestors of aNewWindow so that they
|
|
|
|
* also have their corresponding frames focused. Thus, one can start at
|
|
|
|
* the active top-level window and navigate down the currently focused
|
|
|
|
* elements for each frame in the tree to get to aNewWindow.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
void AdjustWindowFocus(nsPIDOMWindow* aNewWindow, bool aCheckPermission);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if aWindow is visible.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsWindowVisible(nsPIDOMWindow* aWindow);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
2010-04-21 13:13:08 +00:00
|
|
|
/**
|
|
|
|
* Returns true if aContent is a root element and not focusable.
|
|
|
|
* I.e., even if aContent is editable root element, this returns true when
|
|
|
|
* the document is in designMode.
|
|
|
|
*
|
|
|
|
* @param aContent must not be null and must be in a document.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsNonFocusableRoot(nsIContent* aContent);
|
2010-04-21 13:13:08 +00:00
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
/**
|
|
|
|
* Checks and returns aContent if it may be focused, another content node if
|
|
|
|
* the focus should be retargeted at another node, or null if the node
|
|
|
|
* cannot be focused. aFlags are the flags passed to SetFocus and similar
|
|
|
|
* methods.
|
|
|
|
*
|
|
|
|
* An element is focusable if it is in a document, the document isn't in
|
|
|
|
* print preview mode and the element has an nsIFrame where the
|
|
|
|
* CheckIfFocusable method returns true. For <area> elements, there is no
|
|
|
|
* frame, so only the IsFocusable method on the content node must be
|
|
|
|
* true.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
nsIContent* CheckIfFocusable(nsIContent* aContent, uint32_t aFlags);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
/**
|
2009-06-21 00:04:04 +00:00
|
|
|
* Blurs the currently focused element. Returns false if another element was
|
|
|
|
* focused as a result. This would mean that the caller should not proceed
|
|
|
|
* with a pending call to Focus. Normally, true would be returned.
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
*
|
|
|
|
* The currently focused element within aWindowToClear will be cleared.
|
|
|
|
* aWindowToClear may be null, which means that no window is cleared. This
|
|
|
|
* will be the case, for example, when lowering a window, as we want to fire
|
|
|
|
* a blur, but not actually change what element would be focused, so that
|
|
|
|
* the same element will be focused again when the window is raised.
|
|
|
|
*
|
|
|
|
* aAncestorWindowToFocus should be set to the common ancestor of the window
|
|
|
|
* that is being blurred and the window that is going to focused, when
|
|
|
|
* switching focus to a sibling window.
|
|
|
|
*
|
|
|
|
* aIsLeavingDocument should be set to true if the document/window is being
|
|
|
|
* blurred as well. Document/window blur events will be fired. It should be
|
|
|
|
* false if an element is the same document is about to be focused.
|
2010-11-15 21:12:50 +00:00
|
|
|
*
|
|
|
|
* If aAdjustWidget is false, don't change the widget focus state.
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool Blur(nsPIDOMWindow* aWindowToClear,
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
nsPIDOMWindow* aAncestorWindowToFocus,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIsLeavingDocument,
|
|
|
|
bool aAdjustWidget);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Focus an element in the active window and child frame.
|
|
|
|
*
|
|
|
|
* aWindow is the window containing the element aContent to focus.
|
|
|
|
*
|
|
|
|
* aFlags is the flags passed to the various focus methods in
|
|
|
|
* nsIFocusManager.
|
|
|
|
*
|
|
|
|
* aIsNewDocument should be true if a new document is being focused.
|
|
|
|
* Document/window focus events will be fired.
|
|
|
|
*
|
|
|
|
* aFocusChanged should be true if a new content node is being focused, so
|
|
|
|
* the focused content will be scrolled into view and the caret position
|
|
|
|
* will be updated. If false is passed, then a window is simply being
|
|
|
|
* refocused, for instance, due to a window being raised, or a tab is being
|
|
|
|
* switched to.
|
|
|
|
*
|
|
|
|
* If aFocusChanged is true, then the focus has moved to a new location.
|
|
|
|
* Otherwise, the focus is just being updated because the window was
|
|
|
|
* raised.
|
|
|
|
*
|
|
|
|
* aWindowRaised should be true if the window is being raised. In this case,
|
|
|
|
* command updaters will not be called.
|
2010-11-15 21:12:50 +00:00
|
|
|
*
|
|
|
|
* If aAdjustWidget is false, don't change the widget focus state.
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
*/
|
|
|
|
void Focus(nsPIDOMWindow* aWindow,
|
|
|
|
nsIContent* aContent,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aFlags,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIsNewDocument,
|
|
|
|
bool aFocusChanged,
|
|
|
|
bool aWindowRaised,
|
|
|
|
bool aAdjustWidget);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fires a focus or blur event at aTarget.
|
|
|
|
*
|
|
|
|
* aType should be either NS_FOCUS_CONTENT or NS_BLUR_CONTENT. For blur
|
|
|
|
* events, aFocusMethod should normally be non-zero.
|
2009-10-01 17:53:10 +00:00
|
|
|
*
|
|
|
|
* aWindowRaised should only be true if called from WindowRaised.
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
void SendFocusOrBlurEvent(uint32_t aType,
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
nsIPresShell* aPresShell,
|
|
|
|
nsIDocument* aDocument,
|
|
|
|
nsISupports* aTarget,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aFocusMethod,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aWindowRaised,
|
|
|
|
bool aIsRefocus = false);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Scrolls aContent into view unless the FLAG_NOSCROLL flag is set.
|
|
|
|
*/
|
|
|
|
void ScrollIntoView(nsIPresShell* aPresShell,
|
|
|
|
nsIContent* aContent,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aFlags);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Raises the top-level window aWindow at the widget level.
|
|
|
|
*/
|
|
|
|
void RaiseWindow(nsPIDOMWindow* aWindow);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the caret positon and visibility to match the focus.
|
|
|
|
*
|
|
|
|
* aMoveCaretToFocus should be true to move the caret to aContent.
|
|
|
|
*
|
|
|
|
* aUpdateVisibility should be true to update whether the caret is
|
|
|
|
* visible or not.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
void UpdateCaret(bool aMoveCaretToFocus,
|
|
|
|
bool aUpdateVisibility,
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
nsIContent* aContent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method to move the caret to the focused element aContent.
|
|
|
|
*/
|
|
|
|
void MoveCaretToFocus(nsIPresShell* aPresShell, nsIContent* aContent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the caret visible or not, depending on aVisible.
|
|
|
|
*/
|
|
|
|
nsresult SetCaretVisible(nsIPresShell* aPresShell,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aVisible,
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
nsIContent* aContent);
|
|
|
|
|
|
|
|
|
|
|
|
// the remaining functions are used for tab key and document-navigation
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the start and end points of the current selection for
|
|
|
|
* aDocument and stores them in aStartContent and aEndContent.
|
|
|
|
*/
|
|
|
|
nsresult GetSelectionLocation(nsIDocument* aDocument,
|
|
|
|
nsIPresShell* aPresShell,
|
|
|
|
nsIContent **aStartContent,
|
|
|
|
nsIContent **aEndContent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for MoveFocus which determines the next element
|
|
|
|
* to move the focus to and returns it in aNextContent.
|
|
|
|
*
|
|
|
|
* aWindow is the window to adjust the focus within, and aStart is
|
|
|
|
* the element to start navigation from. For tab key navigation,
|
|
|
|
* this should be the currently focused element.
|
|
|
|
*
|
2012-02-13 19:24:28 +00:00
|
|
|
* aType is the type passed to MoveFocus. If aNoParentTraversal is set,
|
|
|
|
* navigation is not done to parent documents and iteration returns to the
|
|
|
|
* beginning (or end) of the starting document.
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
*/
|
|
|
|
nsresult DetermineElementToMoveFocus(nsPIDOMWindow* aWindow,
|
|
|
|
nsIContent* aStart,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aType, bool aNoParentTraversal,
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
nsIContent** aNextContent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the next tabbable element within a document, using focusability
|
|
|
|
* and tabindex to determine the tab order. The element is returned in
|
|
|
|
* aResultContent.
|
|
|
|
*
|
|
|
|
* aRootContent is the root node -- nodes above this will not be examined.
|
|
|
|
* Typically this will be the root node of a document, but could also be
|
|
|
|
* a popup node.
|
|
|
|
*
|
|
|
|
* aOriginalStartContent is the content which was originally the starting
|
|
|
|
* node, in the case of recursive or looping calls.
|
|
|
|
*
|
|
|
|
* aStartContent is the starting point for this call of this method.
|
2009-11-20 12:09:33 +00:00
|
|
|
* If aStartContent doesn't have visual representation, the next content
|
|
|
|
* object, which does have a primary frame, will be used as a start.
|
|
|
|
* If that content object is focusable, the method may return it.
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
*
|
|
|
|
* aForward should be true for forward navigation or false for backward
|
|
|
|
* navigation.
|
|
|
|
*
|
|
|
|
* aCurrentTabIndex is the current tabindex.
|
|
|
|
*
|
|
|
|
* aIgnoreTabIndex to ignore the current tabindex and find the element
|
|
|
|
* irrespective or the tab index. This will be true when a selection is
|
|
|
|
* active, since we just want to focus the next element in tree order
|
|
|
|
* from where the selection is. Similarly, if the starting element isn't
|
|
|
|
* focusable, since it doesn't really have a defined tab index.
|
|
|
|
*/
|
|
|
|
nsresult GetNextTabbableContent(nsIPresShell* aPresShell,
|
|
|
|
nsIContent* aRootContent,
|
|
|
|
nsIContent* aOriginalStartContent,
|
|
|
|
nsIContent* aStartContent,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aForward,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aCurrentTabIndex,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIgnoreTabIndex,
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
nsIContent** aResultContent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the next tabbable image map area and returns it.
|
|
|
|
*
|
|
|
|
* aForward should be true for forward navigation or false for backward
|
|
|
|
* navigation.
|
|
|
|
*
|
|
|
|
* aCurrentTabIndex is the current tabindex.
|
|
|
|
*
|
|
|
|
* aImageContent is the image.
|
|
|
|
*
|
|
|
|
* aStartContent is the current image map area.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
nsIContent* GetNextTabbableMapArea(bool aForward,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aCurrentTabIndex,
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
nsIContent* aImageContent,
|
|
|
|
nsIContent* aStartContent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the next valid tabindex value after aCurrentTabIndex, if aForward
|
|
|
|
* is true, or the previous tabindex value if aForward is false. aParent is
|
|
|
|
* the node from which to start looking for tab indicies.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t GetNextTabIndex(nsIContent* aParent,
|
|
|
|
int32_t aCurrentTabIndex,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aForward);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves and returns the root node from aDocument to be focused. Will
|
|
|
|
* return null if the root node cannot be focused. There are several reasons
|
|
|
|
* for this:
|
|
|
|
*
|
|
|
|
* - if aIsForDocNavigation is true, and aWindow is in an <iframe>.
|
|
|
|
* - if aIsForDocNavigation is false, and aWindow is a chrome shell.
|
|
|
|
* - if aCheckVisibility is true and the aWindow is not visible.
|
|
|
|
* - if aDocument is a frameset document.
|
|
|
|
*/
|
|
|
|
nsIContent* GetRootForFocus(nsPIDOMWindow* aWindow,
|
|
|
|
nsIDocument* aDocument,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIsForDocNavigation,
|
|
|
|
bool aCheckVisibility);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the last docshell child of aItem and return it in aResult.
|
|
|
|
*/
|
|
|
|
void GetLastDocShell(nsIDocShellTreeItem* aItem,
|
|
|
|
nsIDocShellTreeItem** aResult);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the next docshell child of aItem and return it in aResult.
|
|
|
|
*/
|
|
|
|
void GetNextDocShell(nsIDocShellTreeItem* aItem,
|
|
|
|
nsIDocShellTreeItem** aResult);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the previous docshell child of aItem and return it in aResult.
|
|
|
|
*/
|
|
|
|
void GetPreviousDocShell(nsIDocShellTreeItem* aItem,
|
|
|
|
nsIDocShellTreeItem** aResult);
|
|
|
|
|
|
|
|
/**
|
2012-02-23 21:02:33 +00:00
|
|
|
* Determine the first panel with focusable content in document tab order
|
|
|
|
* from the given document. aForward indicates the direction to scan. If
|
|
|
|
* aCurrentPopup is set to a panel, the next or previous popup after
|
|
|
|
* aCurrentPopup after it is used. If aCurrentPopup is null, then the first
|
|
|
|
* or last popup is used. If a panel has no focusable content, it is skipped.
|
|
|
|
* Null is returned if no panel is open or no open panel contains a focusable
|
|
|
|
* element.
|
|
|
|
*/
|
|
|
|
nsIContent* GetNextTabbablePanel(nsIDocument* aDocument, nsIFrame* aCurrentPopup, bool aForward);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the tabbable next document from aStartContent or, if null, the
|
|
|
|
* currently focused frame if aForward is true, or the previously tabbable
|
|
|
|
* document if aForward is false. If this document is a chrome or frameset
|
|
|
|
* document, returns the first focusable element within this document,
|
|
|
|
* otherwise, returns the root node of the document.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Panels with focusable content are also placed in the cycling order, just
|
|
|
|
* after the document containing that panel.
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
*
|
|
|
|
* This method would be used for document navigation, which is typically
|
|
|
|
* invoked by pressing F6.
|
|
|
|
*/
|
2012-02-23 21:02:33 +00:00
|
|
|
nsIContent* GetNextTabbableDocument(nsIContent* aStartContent, bool aForward);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retreives a focusable element within the current selection of aWindow.
|
|
|
|
* Currently, this only detects links.
|
|
|
|
*
|
|
|
|
* This is used when MoveFocus is called with a type of MOVEFOCUS_CARET,
|
|
|
|
* which is used, for example, to focus links as the caret is moved over
|
|
|
|
* them.
|
|
|
|
*/
|
|
|
|
void GetFocusInSelection(nsPIDOMWindow* aWindow,
|
|
|
|
nsIContent* aStartSelection,
|
|
|
|
nsIContent* aEndSelection,
|
|
|
|
nsIContent** aFocusedContent);
|
|
|
|
|
2011-06-01 01:46:56 +00:00
|
|
|
private:
|
|
|
|
// Notify that the focus state of aContent has changed. Note that
|
|
|
|
// we need to pass in whether the window should show a focus ring
|
|
|
|
// before the SetFocusedNode call on it happened when losing focus
|
|
|
|
// and after the SetFocusedNode call when gaining focus, which is
|
|
|
|
// why that information needs to be an explicit argument instead of
|
|
|
|
// just passing in the window and asking it whether it should show
|
|
|
|
// focus rings: in the losing focus case that information could be
|
|
|
|
// wrong..
|
|
|
|
static void NotifyFocusStateChange(nsIContent* aContent,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aWindowShouldShowFocusRing,
|
|
|
|
bool aGettingFocus);
|
2011-06-01 01:46:56 +00:00
|
|
|
|
2013-03-24 10:32:44 +00:00
|
|
|
void SetFocusedWindowInternal(nsPIDOMWindow* aWindow);
|
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
// the currently active and front-most top-most window
|
|
|
|
nsCOMPtr<nsPIDOMWindow> mActiveWindow;
|
|
|
|
|
|
|
|
// the child or top-level window that is currently focused. This window will
|
|
|
|
// either be the same window as mActiveWindow or a descendant of it.
|
2013-03-24 10:32:44 +00:00
|
|
|
// Except during shutdown use SetFocusedWindowInternal to set mFocusedWindow!
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindow> mFocusedWindow;
|
|
|
|
|
|
|
|
// the currently focused content, which is always inside mFocusedWindow. This
|
|
|
|
// is a cached copy of the mFocusedWindow's current content. This may be null
|
|
|
|
// if no content is focused.
|
|
|
|
nsCOMPtr<nsIContent> mFocusedContent;
|
|
|
|
|
|
|
|
// these fields store a content node temporarily while it is being focused
|
|
|
|
// or blurred to ensure that a recursive call doesn't refire the same event.
|
|
|
|
// They will always be cleared afterwards.
|
|
|
|
nsCOMPtr<nsIContent> mFirstBlurEvent;
|
|
|
|
nsCOMPtr<nsIContent> mFirstFocusEvent;
|
|
|
|
|
|
|
|
// keep track of a window while it is being lowered
|
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindowBeingLowered;
|
|
|
|
|
|
|
|
// synchronized actions cannot be interrupted with events, so queue these up
|
|
|
|
// and fire them later.
|
|
|
|
nsTArray<nsDelayedBlurOrFocusEvent> mDelayedBlurFocusEvents;
|
|
|
|
|
2010-11-06 05:04:11 +00:00
|
|
|
// A document which is handling a mouse button down event.
|
|
|
|
// When a mouse down event process is finished, ESM sets focus to the target
|
|
|
|
// content. Therefore, while DOM event handlers are handling mouse down
|
|
|
|
// events, the handlers should be able to steal focus from any elements even
|
|
|
|
// if focus is in chrome content. So, if this isn't NULL and the caller
|
|
|
|
// can access the document node, the caller should succeed in moving focus.
|
|
|
|
nsCOMPtr<nsIDocument> mMouseDownEventHandlingDocument;
|
|
|
|
|
2012-01-13 12:42:18 +00:00
|
|
|
static bool sTestMode;
|
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
// the single focus manager
|
2009-08-14 02:09:49 +00:00
|
|
|
static nsFocusManager* sInstance;
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NS_NewFocusManager(nsIFocusManager** aResult);
|
|
|
|
|
|
|
|
#endif
|