1998-06-23 21:53:02 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1998-06-23 21:53:02 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1998-06-23 21:53:02 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-06-23 21:53:02 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:40:37 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-06-23 21:53:02 +00:00
|
|
|
*/
|
1999-02-12 17:45:58 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1998-06-23 21:53:02 +00:00
|
|
|
#include "nsIEventStateManager.h"
|
|
|
|
#include "nsEventStateManager.h"
|
1998-08-07 04:45:03 +00:00
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsIDocument.h"
|
1998-11-18 05:25:26 +00:00
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "nsIStyleContext.h"
|
|
|
|
#include "nsIPresContext.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsDOMEvent.h"
|
|
|
|
#include "nsHTMLAtoms.h"
|
|
|
|
#include "nsIDOMHTMLAnchorElement.h"
|
|
|
|
#include "nsIDOMHTMLInputElement.h"
|
|
|
|
#include "nsIDOMHTMLSelectElement.h"
|
|
|
|
#include "nsIDOMHTMLTextAreaElement.h"
|
1999-03-02 19:19:24 +00:00
|
|
|
#include "nsIDOMHTMLAreaElement.h"
|
|
|
|
#include "nsIDOMHTMLButtonElement.h"
|
|
|
|
#include "nsIDOMHTMLObjectElement.h"
|
|
|
|
#include "nsINameSpaceManager.h" // for kNameSpaceID_HTML
|
|
|
|
#include "nsIWebShell.h"
|
2000-02-11 01:56:01 +00:00
|
|
|
#include "nsIBaseWindow.h"
|
1999-03-02 19:19:24 +00:00
|
|
|
#include "nsIFocusableContent.h"
|
1999-04-30 19:38:39 +00:00
|
|
|
#include "nsIScrollableView.h"
|
1999-05-07 21:12:59 +00:00
|
|
|
#include "nsIDOMSelection.h"
|
|
|
|
#include "nsIFrameSelection.h"
|
1999-08-19 19:48:45 +00:00
|
|
|
#include "nsIDeviceContext.h"
|
1999-11-13 05:16:33 +00:00
|
|
|
#include "nsIScriptGlobalObject.h"
|
1999-11-21 01:46:41 +00:00
|
|
|
#include "nsISelfScrollingFrame.h"
|
1999-12-08 04:54:29 +00:00
|
|
|
#include "nsIPrivateDOMEvent.h"
|
1999-12-18 04:02:28 +00:00
|
|
|
#include "nsIGfxTextControlFrame.h"
|
2000-02-11 23:41:13 +00:00
|
|
|
#include "nsIDOMWindow.h"
|
1999-12-18 04:02:28 +00:00
|
|
|
#include "nsPIDOMWindow.h"
|
1999-08-19 19:48:45 +00:00
|
|
|
|
2000-01-06 06:22:00 +00:00
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIPref.h"
|
|
|
|
#include "prefapi.h"
|
|
|
|
#include "nsISessionHistory.h"
|
|
|
|
|
2000-01-13 11:43:54 +00:00
|
|
|
#include "nsXULAtoms.h"
|
2000-02-11 23:41:13 +00:00
|
|
|
#include "nsIDOMXULDocument.h"
|
|
|
|
#include "nsIDOMXULCommandDispatcher.h"
|
2000-01-13 11:43:54 +00:00
|
|
|
|
2000-02-05 00:58:29 +00:00
|
|
|
#undef DEBUG_scroll // define to see ugly mousewheel messages
|
|
|
|
#undef GFXSCROLL_IS_PRIMARY // define this when the code is enabled to make
|
|
|
|
// nsGfxScrollFrame the primary document frame
|
|
|
|
|
|
|
|
#ifdef GFXSCROLL_IS_PRIMARY
|
|
|
|
#include "nsIScrollableFrame.h"
|
|
|
|
#endif
|
1998-06-23 21:53:02 +00:00
|
|
|
|
1999-12-11 00:02:08 +00:00
|
|
|
//we will use key binding by default now. this wil lbreak viewer for now
|
|
|
|
#define NON_KEYBINDING 0
|
|
|
|
|
1999-12-02 20:55:17 +00:00
|
|
|
nsIFrame * gCurrentlyFocusedTargetFrame = 0;
|
|
|
|
nsIContent * gCurrentlyFocusedContent = 0; // Weak because it mirrors the strong mCurrentFocus
|
|
|
|
|
1999-12-08 20:18:16 +00:00
|
|
|
nsIContent * gLastFocusedContent = 0; // Strong reference
|
1999-12-01 09:09:46 +00:00
|
|
|
nsIDocument * gLastFocusedDocument = 0; // Strong reference
|
1999-12-08 20:18:16 +00:00
|
|
|
nsIPresContext* gLastFocusedPresContext = 0; // Weak reference
|
1999-12-01 09:09:46 +00:00
|
|
|
|
|
|
|
PRUint32 nsEventStateManager::mInstanceCount = 0;
|
|
|
|
|
2000-01-06 06:22:00 +00:00
|
|
|
// For caching mousewheel prefs
|
|
|
|
struct IntPrefPair
|
|
|
|
{
|
|
|
|
char* name;
|
|
|
|
PRInt32 value;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BoolPrefPair
|
|
|
|
{
|
|
|
|
char* name;
|
|
|
|
PRBool value;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
MOUSE_SCROLL_N_LINES,
|
|
|
|
MOUSE_SCROLL_PAGE,
|
|
|
|
MOUSE_SCROLL_HISTORY
|
|
|
|
};
|
|
|
|
|
|
|
|
static IntPrefPair mwIntPrefValues[] =
|
|
|
|
{
|
|
|
|
{ "mousewheel.withnokey.action", MOUSE_SCROLL_N_LINES },
|
|
|
|
{ "mousewheel.withnokey.numlines", 3 },
|
|
|
|
{ "mousewheel.withcontrolkey.action", MOUSE_SCROLL_N_LINES },
|
|
|
|
{ "mousewheel.withcontrolkey.numlines", 3 },
|
|
|
|
{ "mousewheel.withshiftkey.action", MOUSE_SCROLL_N_LINES },
|
|
|
|
{ "mousewheel.withshiftkey.numlines", 3 },
|
|
|
|
{ "mousewheel.withaltkey.action", MOUSE_SCROLL_N_LINES },
|
|
|
|
{ "mousewheel.withaltkey.numlines", 3 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static BoolPrefPair mwBoolPrefValues[] =
|
|
|
|
{
|
|
|
|
{ "mousewheel.withnokey.sysnumlines", PR_FALSE },
|
|
|
|
{ "mousewheel.withcontrolkey.sysnumlines", PR_FALSE },
|
|
|
|
{ "mousewheel.withshiftkey.sysnumlines", PR_FALSE },
|
|
|
|
{ "mousewheel.withaltkey.sysnumlines", PR_FALSE }
|
|
|
|
};
|
|
|
|
|
|
|
|
static PRUint32 numIntPrefValues =
|
|
|
|
(sizeof(mwIntPrefValues) / sizeof(mwIntPrefValues[0]));
|
|
|
|
|
|
|
|
static PRUint32 numBoolPrefValues =
|
|
|
|
(sizeof(mwBoolPrefValues) / sizeof(mwBoolPrefValues[0]));
|
|
|
|
|
|
|
|
static PRInt32 getCachedIntPref (const char* aPrefName)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(nsnull != aPrefName, "aPrefName = null");
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < numIntPrefValues; i++)
|
|
|
|
{
|
|
|
|
if (nsAutoString(mwIntPrefValues[i].name) == aPrefName)
|
|
|
|
{
|
|
|
|
return mwIntPrefValues[i].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hopefully we never reach this code
|
|
|
|
NS_ASSERTION(PR_FALSE,
|
|
|
|
"Attempt to get a cached pref that is not in the cache.");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRBool getCachedBoolPref(const char* aPrefName)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(nsnull != aPrefName, "aPrefName = null");
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < numBoolPrefValues; i++)
|
|
|
|
{
|
|
|
|
if (nsAutoString(mwBoolPrefValues[i].name) == aPrefName)
|
|
|
|
{
|
|
|
|
return mwBoolPrefValues[i].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hopefully we never reach this code
|
|
|
|
NS_ASSERTION(PR_FALSE,
|
|
|
|
"Attempt to get a cached pref that is not in the cache.");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setCachedIntPref (const char* aPrefName, PRInt32 aValue)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(nsnull != aPrefName, "aPrefName = null");
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < numIntPrefValues; i++)
|
|
|
|
{
|
|
|
|
if (nsAutoString(mwIntPrefValues[i].name) == aPrefName)
|
|
|
|
{
|
|
|
|
mwIntPrefValues[i].value = aValue;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(PR_FALSE,
|
|
|
|
"Attempt to set a cached pref that is not in the cache.");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setCachedBoolPref (const char* aPrefName, PRBool aValue)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(nsnull != aPrefName, "aPrefName = null");
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < numBoolPrefValues; i++)
|
|
|
|
{
|
|
|
|
if (nsAutoString(mwBoolPrefValues[i].name) == aPrefName)
|
|
|
|
{
|
|
|
|
mwBoolPrefValues[i].value = aValue;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(PR_FALSE,
|
|
|
|
"Attempt to set a cached pref that is not in the cache.");
|
|
|
|
}
|
|
|
|
|
|
|
|
static NS_DEFINE_CID(kPrefCID, NS_PREF_CID);
|
|
|
|
|
|
|
|
int mwIntPrefChangedCallback(const char* name, void * closure)
|
|
|
|
{
|
|
|
|
nsIPref* prefs = nsnull;
|
|
|
|
nsresult rv = nsServiceManager::GetService(kPrefCID, NS_GET_IID(nsIPref),
|
2000-02-05 00:58:29 +00:00
|
|
|
(nsISupports**) &prefs);
|
2000-01-06 06:22:00 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv),"Could not get prefs service.");
|
|
|
|
NS_ASSERTION(nsnull != prefs,"Prefs service is null.");
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
{
|
|
|
|
PRInt32 value;
|
|
|
|
prefs->GetIntPref(name, &value);
|
|
|
|
setCachedIntPref(name, value);
|
|
|
|
NS_RELEASE(prefs);
|
|
|
|
}
|
|
|
|
|
|
|
|
return PREF_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
int mwBoolPrefChangedCallback(const char* name, void * closure)
|
|
|
|
{
|
|
|
|
nsIPref* prefs = nsnull;
|
|
|
|
nsresult rv = nsServiceManager::GetService(kPrefCID, NS_GET_IID(nsIPref),
|
2000-02-05 00:58:29 +00:00
|
|
|
(nsISupports**) &prefs);
|
2000-01-06 06:22:00 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv),"Could not get prefs service.");
|
|
|
|
NS_ASSERTION(nsnull != prefs,"Prefs service is null.");
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
{
|
|
|
|
PRBool value;
|
|
|
|
prefs->GetBoolPref(name, &value);
|
|
|
|
setCachedBoolPref(name, value);
|
|
|
|
NS_RELEASE(prefs);
|
|
|
|
}
|
|
|
|
|
|
|
|
return PREF_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 getIntPref(nsIPref* aPrefs, const char* aPrefName)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(nsnull != aPrefName,"aPrefName = null.");
|
|
|
|
NS_ASSERTION(nsnull != aPrefs,"aPrefs = null.");
|
|
|
|
|
|
|
|
PRInt32 value = 0;
|
|
|
|
if (aPrefs)
|
|
|
|
{
|
|
|
|
aPrefs->GetIntPref(aPrefName, &value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool getBoolPref(nsIPref* aPrefs, const char* aPrefName)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(nsnull != aPrefName, "aPrefName = null.");
|
|
|
|
NS_ASSERTION(nsnull != aPrefs, "aPrefs = null.");
|
|
|
|
|
|
|
|
PRBool value = PR_FALSE;
|
|
|
|
if (aPrefs)
|
|
|
|
{
|
|
|
|
aPrefs->GetBoolPref(aPrefName, &value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mwRegisterPrefCallbacks()
|
|
|
|
{
|
|
|
|
static PRBool once = PR_TRUE;
|
|
|
|
|
|
|
|
if (once) {
|
|
|
|
once = PR_FALSE;
|
|
|
|
nsIPref* prefs = nsnull;
|
2000-02-05 00:58:29 +00:00
|
|
|
nsresult rv = nsServiceManager::GetService(kPrefCID, NS_GET_IID(nsIPref),
|
|
|
|
(nsISupports**) &prefs);
|
2000-01-06 06:22:00 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv),"Could not get prefs service.");
|
|
|
|
NS_ASSERTION(nsnull != prefs,"Prefs services is null.");
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
{
|
|
|
|
PRUint32 i;
|
|
|
|
|
|
|
|
for (i = 0; i < numIntPrefValues; i++)
|
|
|
|
{
|
|
|
|
mwIntPrefValues[i].value = getIntPref(prefs, mwIntPrefValues[i].name);
|
|
|
|
prefs->RegisterCallback(mwIntPrefValues[i].name,
|
|
|
|
mwIntPrefChangedCallback, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < numBoolPrefValues; i++)
|
|
|
|
{
|
|
|
|
mwBoolPrefValues[i].value = getBoolPref(prefs,
|
|
|
|
mwBoolPrefValues[i].name);
|
|
|
|
prefs->RegisterCallback(mwBoolPrefValues[i].name,
|
|
|
|
mwBoolPrefChangedCallback, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_RELEASE(prefs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-19 19:48:45 +00:00
|
|
|
nsEventStateManager::nsEventStateManager()
|
|
|
|
: mGestureDownPoint(0,0)
|
|
|
|
{
|
1998-11-18 05:25:26 +00:00
|
|
|
mLastMouseOverFrame = nsnull;
|
1999-05-04 14:44:51 +00:00
|
|
|
mLastDragOverFrame = nsnull;
|
1998-11-18 05:25:26 +00:00
|
|
|
mCurrentTarget = nsnull;
|
1999-06-15 03:14:28 +00:00
|
|
|
mCurrentTargetContent = nsnull;
|
1999-11-03 07:11:45 +00:00
|
|
|
mCurrentRelatedContent = nsnull;
|
1999-03-28 22:22:54 +00:00
|
|
|
mLastLeftMouseDownContent = nsnull;
|
|
|
|
mLastMiddleMouseDownContent = nsnull;
|
|
|
|
mLastRightMouseDownContent = nsnull;
|
1998-11-24 07:46:58 +00:00
|
|
|
|
1999-12-18 04:02:28 +00:00
|
|
|
mConsumeFocusEvents = PR_FALSE;
|
|
|
|
|
1999-08-19 19:48:45 +00:00
|
|
|
// init d&d gesture state machine variables
|
|
|
|
mIsTrackingDragGesture = PR_FALSE;
|
|
|
|
mGestureDownFrame = nsnull;
|
|
|
|
|
1999-09-22 02:29:33 +00:00
|
|
|
mLClickCount = 0;
|
|
|
|
mMClickCount = 0;
|
|
|
|
mRClickCount = 0;
|
1999-03-28 22:22:54 +00:00
|
|
|
mActiveContent = nsnull;
|
|
|
|
mHoverContent = nsnull;
|
1999-05-04 14:44:51 +00:00
|
|
|
mDragOverContent = nsnull;
|
1998-11-18 05:25:26 +00:00
|
|
|
mCurrentFocus = nsnull;
|
|
|
|
mDocument = nsnull;
|
|
|
|
mPresContext = nsnull;
|
1999-03-02 19:19:24 +00:00
|
|
|
mCurrentTabIndex = 0;
|
1999-09-20 22:18:57 +00:00
|
|
|
mLastWindowToHaveFocus = nsnull;
|
2000-02-11 05:20:44 +00:00
|
|
|
mFirstBlurEvent = nsnull;
|
|
|
|
mFirstFocusEvent = nsnull;
|
1998-06-25 14:51:48 +00:00
|
|
|
NS_INIT_REFCNT();
|
1999-12-01 09:09:46 +00:00
|
|
|
|
|
|
|
++mInstanceCount;
|
2000-01-06 06:22:00 +00:00
|
|
|
mwRegisterPrefCallbacks();
|
1998-06-23 21:53:02 +00:00
|
|
|
}
|
|
|
|
|
1999-09-16 14:54:59 +00:00
|
|
|
nsEventStateManager::~nsEventStateManager()
|
|
|
|
{
|
1999-06-15 03:14:28 +00:00
|
|
|
NS_IF_RELEASE(mCurrentTargetContent);
|
1999-11-03 07:11:45 +00:00
|
|
|
NS_IF_RELEASE(mCurrentRelatedContent);
|
1999-09-16 14:54:59 +00:00
|
|
|
|
|
|
|
NS_IF_RELEASE(mLastLeftMouseDownContent);
|
|
|
|
NS_IF_RELEASE(mLastMiddleMouseDownContent);
|
|
|
|
NS_IF_RELEASE(mLastRightMouseDownContent);
|
|
|
|
|
1999-03-28 22:22:54 +00:00
|
|
|
NS_IF_RELEASE(mActiveContent);
|
|
|
|
NS_IF_RELEASE(mHoverContent);
|
1999-05-04 14:44:51 +00:00
|
|
|
NS_IF_RELEASE(mDragOverContent);
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_IF_RELEASE(mCurrentFocus);
|
1999-09-16 14:54:59 +00:00
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_IF_RELEASE(mDocument);
|
1999-09-20 22:18:57 +00:00
|
|
|
|
|
|
|
NS_IF_RELEASE(mLastWindowToHaveFocus);
|
2000-02-11 05:20:44 +00:00
|
|
|
NS_IF_RELEASE(mFirstBlurEvent);
|
|
|
|
NS_IF_RELEASE(mFirstFocusEvent);
|
1999-12-01 09:09:46 +00:00
|
|
|
|
|
|
|
--mInstanceCount;
|
|
|
|
if(mInstanceCount == 0) {
|
|
|
|
NS_IF_RELEASE(gLastFocusedContent);
|
|
|
|
NS_IF_RELEASE(gLastFocusedDocument);
|
|
|
|
}
|
1998-06-23 21:53:02 +00:00
|
|
|
}
|
|
|
|
|
1999-11-23 07:05:53 +00:00
|
|
|
NS_IMPL_ISUPPORTS1(nsEventStateManager, nsIEventStateManager)
|
1998-06-23 21:53:02 +00:00
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStateManager::PreHandleEvent(nsIPresContext* aPresContext,
|
1998-11-18 05:25:26 +00:00
|
|
|
nsGUIEvent *aEvent,
|
|
|
|
nsIFrame* aTargetFrame,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aStatus,
|
1999-06-15 03:14:28 +00:00
|
|
|
nsIView* aView)
|
1998-06-23 21:53:02 +00:00
|
|
|
{
|
1999-11-24 06:03:41 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aStatus);
|
|
|
|
NS_ENSURE_ARG(aPresContext);
|
1999-09-30 11:40:42 +00:00
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
mCurrentTarget = aTargetFrame;
|
1999-06-15 03:14:28 +00:00
|
|
|
NS_IF_RELEASE(mCurrentTargetContent);
|
1998-11-19 00:43:36 +00:00
|
|
|
|
|
|
|
nsFrameState state;
|
1999-09-02 07:22:47 +00:00
|
|
|
|
|
|
|
NS_ASSERTION(mCurrentTarget, "mCurrentTarget is null. this should not happen. see bug #13007");
|
|
|
|
if (!mCurrentTarget) return NS_ERROR_NULL_POINTER;
|
|
|
|
|
1999-02-10 04:17:06 +00:00
|
|
|
mCurrentTarget->GetFrameState(&state);
|
1998-11-19 00:43:36 +00:00
|
|
|
state |= NS_FRAME_EXTERNAL_REFERENCE;
|
|
|
|
mCurrentTarget->SetFrameState(state);
|
|
|
|
|
1999-11-24 06:03:41 +00:00
|
|
|
*aStatus = nsEventStatus_eIgnore;
|
1998-11-18 05:25:26 +00:00
|
|
|
|
1999-09-02 07:22:47 +00:00
|
|
|
NS_ASSERTION(aEvent, "aEvent is null. this should never happen");
|
|
|
|
if (!aEvent) return NS_ERROR_NULL_POINTER;
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
switch (aEvent->message) {
|
1999-08-19 19:48:45 +00:00
|
|
|
case NS_MOUSE_LEFT_BUTTON_DOWN:
|
|
|
|
BeginTrackingDragGesture ( aEvent, aTargetFrame );
|
1999-09-22 02:29:33 +00:00
|
|
|
mLClickCount = ((nsMouseEvent*)aEvent)->clickCount;
|
|
|
|
SetClickCount(aPresContext, (nsMouseEvent*)aEvent, aStatus);
|
|
|
|
break;
|
|
|
|
case NS_MOUSE_MIDDLE_BUTTON_DOWN:
|
|
|
|
mMClickCount = ((nsMouseEvent*)aEvent)->clickCount;
|
|
|
|
SetClickCount(aPresContext, (nsMouseEvent*)aEvent, aStatus);
|
|
|
|
break;
|
|
|
|
case NS_MOUSE_RIGHT_BUTTON_DOWN:
|
|
|
|
mRClickCount = ((nsMouseEvent*)aEvent)->clickCount;
|
|
|
|
SetClickCount(aPresContext, (nsMouseEvent*)aEvent, aStatus);
|
1999-08-19 19:48:45 +00:00
|
|
|
break;
|
|
|
|
case NS_MOUSE_LEFT_BUTTON_UP:
|
|
|
|
StopTrackingDragGesture();
|
1999-09-22 02:29:33 +00:00
|
|
|
case NS_MOUSE_MIDDLE_BUTTON_UP:
|
|
|
|
case NS_MOUSE_RIGHT_BUTTON_UP:
|
|
|
|
SetClickCount(aPresContext, (nsMouseEvent*)aEvent, aStatus);
|
1999-08-19 19:48:45 +00:00
|
|
|
break;
|
1998-11-18 05:25:26 +00:00
|
|
|
case NS_MOUSE_MOVE:
|
1999-08-19 19:48:45 +00:00
|
|
|
GenerateDragGesture(aPresContext, aEvent);
|
2000-02-11 01:24:59 +00:00
|
|
|
UpdateCursor(aPresContext, aEvent, aTargetFrame, aStatus);
|
1998-12-02 02:14:58 +00:00
|
|
|
GenerateMouseEnterExit(aPresContext, aEvent);
|
1998-11-18 05:25:26 +00:00
|
|
|
break;
|
|
|
|
case NS_MOUSE_EXIT:
|
1999-03-28 22:22:54 +00:00
|
|
|
GenerateMouseEnterExit(aPresContext, aEvent);
|
1998-11-18 05:25:26 +00:00
|
|
|
break;
|
1999-06-22 14:20:14 +00:00
|
|
|
case NS_DRAGDROP_OVER:
|
|
|
|
GenerateDragDropEnterExit(aPresContext, aEvent);
|
|
|
|
break;
|
1998-11-18 05:25:26 +00:00
|
|
|
case NS_GOTFOCUS:
|
1999-11-13 05:16:33 +00:00
|
|
|
{
|
2000-02-11 23:41:13 +00:00
|
|
|
printf("Got focus.\n");
|
|
|
|
|
1999-12-18 04:02:28 +00:00
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
aPresContext->GetShell(getter_AddRefs(presShell));
|
|
|
|
|
|
|
|
if (!mDocument) {
|
1999-12-08 20:55:45 +00:00
|
|
|
if (presShell) {
|
|
|
|
presShell->GetDocument(&mDocument);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
if (gLastFocusedDocument == mDocument)
|
1999-12-18 04:02:28 +00:00
|
|
|
break;
|
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
//fire focus
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsEvent focusevent;
|
|
|
|
focusevent.eventStructType = NS_EVENT;
|
|
|
|
focusevent.message = NS_FOCUS_CONTENT;
|
1999-11-13 05:16:33 +00:00
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
if (mDocument) {
|
|
|
|
// fire focus on window, not document
|
|
|
|
nsCOMPtr<nsIScriptGlobalObject> globalObject;
|
|
|
|
mDocument->GetScriptGlobalObject(getter_AddRefs(globalObject));
|
|
|
|
if (globalObject) {
|
|
|
|
nsIContent* currentFocus = mCurrentFocus;
|
|
|
|
mCurrentFocus = nsnull;
|
|
|
|
mDocument->HandleDOMEvent(aPresContext, &focusevent, nsnull, NS_EVENT_FLAG_INIT, &status);
|
|
|
|
globalObject->HandleDOMEvent(aPresContext, &focusevent, nsnull, NS_EVENT_FLAG_INIT, &status);
|
|
|
|
mCurrentFocus = currentFocus;
|
|
|
|
}
|
|
|
|
|
1999-12-18 04:02:28 +00:00
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
NS_IF_RELEASE(gLastFocusedDocument);
|
|
|
|
gLastFocusedDocument = mDocument;
|
|
|
|
gLastFocusedPresContext = aPresContext;
|
|
|
|
NS_IF_ADDREF(gLastFocusedDocument);
|
1999-11-13 05:16:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NS_LOSTFOCUS:
|
|
|
|
{
|
2000-02-11 23:41:13 +00:00
|
|
|
printf("Lost focus.\n");
|
|
|
|
|
1999-11-13 05:16:33 +00:00
|
|
|
// Hold the blur, wait for the focus so we can query the style of the focus
|
|
|
|
// target as to what to do with the event. If appropriate we fire the blur
|
|
|
|
// at that time.
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NS_ACTIVATE:
|
1999-07-27 20:55:03 +00:00
|
|
|
{
|
2000-02-11 23:41:13 +00:00
|
|
|
// If we have a command dispatcher, and if it has a focused window and a
|
|
|
|
// focused element in its focus memory, then restore the focus to those
|
|
|
|
// objects.
|
1999-07-27 20:55:03 +00:00
|
|
|
if (!mDocument) {
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
1999-11-24 06:03:41 +00:00
|
|
|
aPresContext->GetShell(getter_AddRefs(presShell));
|
1999-07-27 20:55:03 +00:00
|
|
|
if (presShell) {
|
|
|
|
presShell->GetDocument(&mDocument);
|
|
|
|
}
|
1999-06-15 03:14:28 +00:00
|
|
|
}
|
1999-07-27 20:55:03 +00:00
|
|
|
|
2000-02-11 23:41:13 +00:00
|
|
|
nsCOMPtr<nsIDOMXULCommandDispatcher> commandDispatcher;
|
|
|
|
nsCOMPtr<nsIDOMElement> focusedElement;
|
|
|
|
nsCOMPtr<nsIDOMWindow> focusedWindow;
|
|
|
|
nsCOMPtr<nsIDOMXULDocument> xulDoc = do_QueryInterface(mDocument);
|
|
|
|
if (xulDoc) {
|
|
|
|
// See if we have a command dispatcher attached.
|
|
|
|
xulDoc->GetCommandDispatcher(getter_AddRefs(commandDispatcher));
|
|
|
|
if (commandDispatcher) {
|
|
|
|
// Obtain focus info from the command dispatcher.
|
|
|
|
commandDispatcher->GetFocusedWindow(getter_AddRefs(focusedWindow));
|
|
|
|
commandDispatcher->GetFocusedElement(getter_AddRefs(focusedElement));
|
|
|
|
}
|
|
|
|
}
|
1999-11-13 05:16:33 +00:00
|
|
|
|
2000-02-11 23:41:13 +00:00
|
|
|
if (!focusedWindow) {
|
1999-11-13 05:16:33 +00:00
|
|
|
nsCOMPtr<nsIScriptGlobalObject> globalObject;
|
1999-12-03 09:24:22 +00:00
|
|
|
mDocument->GetScriptGlobalObject(getter_AddRefs(globalObject));
|
2000-02-11 23:41:13 +00:00
|
|
|
focusedWindow = do_QueryInterface(globalObject);
|
1999-06-15 03:14:28 +00:00
|
|
|
}
|
2000-02-11 23:41:13 +00:00
|
|
|
|
|
|
|
// Focus the DOM window.
|
|
|
|
focusedWindow->Focus();
|
|
|
|
|
|
|
|
if (focusedElement) {
|
|
|
|
// Focus the content node.
|
|
|
|
nsCOMPtr<nsIFocusableContent> focusContent = do_QueryInterface(focusedElement);
|
|
|
|
nsCOMPtr<nsIDOMDocument> domDoc;
|
|
|
|
nsCOMPtr<nsIDocument> document;
|
|
|
|
focusedWindow->GetDocument(getter_AddRefs(domDoc));
|
|
|
|
document = do_QueryInterface(domDoc);
|
|
|
|
nsCOMPtr<nsIPresShell> shell;
|
|
|
|
nsCOMPtr<nsIPresContext> context;
|
|
|
|
shell = getter_AddRefs(document->GetShellAt(0));
|
|
|
|
shell->GetPresContext(getter_AddRefs(context));
|
|
|
|
focusContent->SetFocus(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (commandDispatcher)
|
|
|
|
commandDispatcher->SetSuppressFocus(PR_FALSE); // Unsuppress and let the command dispatcher listen again.
|
1999-11-13 05:16:33 +00:00
|
|
|
|
1999-06-15 03:14:28 +00:00
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
break;
|
1999-11-13 05:16:33 +00:00
|
|
|
|
|
|
|
case NS_DEACTIVATE:
|
1999-07-27 20:55:03 +00:00
|
|
|
{
|
2000-02-11 23:41:13 +00:00
|
|
|
if (!mDocument) {
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
aPresContext->GetShell(getter_AddRefs(presShell));
|
|
|
|
if (presShell) {
|
|
|
|
presShell->GetDocument(&mDocument);
|
1999-07-27 20:55:03 +00:00
|
|
|
}
|
|
|
|
}
|
2000-02-11 23:41:13 +00:00
|
|
|
|
|
|
|
// We can get a deactivate on an Ender widget. In this
|
|
|
|
// case, we would like to obtain the DOM Window to start
|
|
|
|
// with by looking at gLastFocusedContent.
|
|
|
|
nsCOMPtr<nsIScriptGlobalObject> ourGlobal;
|
|
|
|
if (gLastFocusedContent) {
|
|
|
|
nsCOMPtr<nsIDocument> doc;
|
|
|
|
gLastFocusedContent->GetDocument(*getter_AddRefs(doc));
|
2000-02-15 00:28:43 +00:00
|
|
|
if(doc)
|
|
|
|
doc->GetScriptGlobalObject(getter_AddRefs(ourGlobal));
|
|
|
|
else {
|
|
|
|
mDocument->GetScriptGlobalObject(getter_AddRefs(ourGlobal));
|
|
|
|
NS_RELEASE(gLastFocusedContent);
|
|
|
|
}
|
|
|
|
}
|
2000-02-11 23:41:13 +00:00
|
|
|
else mDocument->GetScriptGlobalObject(getter_AddRefs(ourGlobal));
|
|
|
|
|
|
|
|
// Suppress the command dispatcher for the duration of the
|
|
|
|
// de-activation. This will cause it to remember the last
|
|
|
|
// focused sub-window and sub-element for this top-level
|
|
|
|
// window.
|
|
|
|
nsCOMPtr<nsIDOMWindow> rootWindow;
|
|
|
|
nsCOMPtr<nsPIDOMWindow> ourWindow = do_QueryInterface(ourGlobal);
|
|
|
|
ourWindow->GetPrivateRoot(getter_AddRefs(rootWindow));
|
|
|
|
nsCOMPtr<nsIDOMDocument> rootDocument;
|
|
|
|
rootWindow->GetDocument(getter_AddRefs(rootDocument));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULCommandDispatcher> commandDispatcher;
|
|
|
|
nsCOMPtr<nsIDOMXULDocument> xulDoc = do_QueryInterface(rootDocument);
|
|
|
|
if (xulDoc) {
|
|
|
|
// See if we have a command dispatcher attached.
|
|
|
|
xulDoc->GetCommandDispatcher(getter_AddRefs(commandDispatcher));
|
|
|
|
if (commandDispatcher) {
|
|
|
|
// Suppress the command dispatcher.
|
|
|
|
commandDispatcher->SetSuppressFocus(PR_TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now fire blurs. We have to fire a blur on the focused window
|
|
|
|
// and on the focused element if there is one.
|
|
|
|
if (gLastFocusedDocument && gLastFocusedPresContext) {
|
|
|
|
// Blur the element.
|
|
|
|
if (gLastFocusedContent) {
|
|
|
|
// Retrieve this content node's pres context. it can be out of sync in
|
|
|
|
// the Ender widget case.
|
|
|
|
nsCOMPtr<nsIDocument> doc;
|
|
|
|
gLastFocusedContent->GetDocument(*getter_AddRefs(doc));
|
|
|
|
if (doc) {
|
|
|
|
nsCOMPtr<nsIPresShell> shell = getter_AddRefs(doc->GetShellAt(0));
|
|
|
|
nsCOMPtr<nsIPresContext> oldPresContext;
|
|
|
|
shell->GetPresContext(getter_AddRefs(oldPresContext));
|
|
|
|
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsEvent event;
|
|
|
|
event.eventStructType = NS_EVENT;
|
|
|
|
event.message = NS_BLUR_CONTENT;
|
|
|
|
nsCOMPtr<nsIEventStateManager> esm;
|
|
|
|
oldPresContext->GetEventStateManager(getter_AddRefs(esm));
|
|
|
|
esm->SetFocusedContent(gLastFocusedContent);
|
|
|
|
gLastFocusedContent->HandleDOMEvent(oldPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
|
|
|
esm->SetFocusedContent(nsnull);
|
|
|
|
NS_RELEASE(gLastFocusedContent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsEvent event;
|
|
|
|
event.eventStructType = NS_EVENT;
|
|
|
|
event.message = NS_BLUR_CONTENT;
|
|
|
|
|
|
|
|
// fire blur on document and window
|
|
|
|
nsCOMPtr<nsIScriptGlobalObject> globalObject;
|
|
|
|
gLastFocusedDocument->GetScriptGlobalObject(getter_AddRefs(globalObject));
|
|
|
|
gLastFocusedDocument->HandleDOMEvent(gLastFocusedPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
|
|
|
if(!globalObject) break;
|
|
|
|
|
|
|
|
globalObject->HandleDOMEvent(gLastFocusedPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
|
|
|
mCurrentTarget = nsnull;
|
|
|
|
|
|
|
|
// Now clear our our global variables
|
|
|
|
NS_RELEASE(gLastFocusedDocument);
|
|
|
|
gLastFocusedPresContext = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (commandDispatcher)
|
|
|
|
commandDispatcher->SetSuppressFocus(PR_FALSE);
|
1999-11-13 05:16:33 +00:00
|
|
|
}
|
1999-05-18 23:51:04 +00:00
|
|
|
break;
|
1999-11-13 05:16:33 +00:00
|
|
|
|
1999-07-27 14:38:07 +00:00
|
|
|
case NS_KEY_PRESS:
|
1999-07-27 20:55:03 +00:00
|
|
|
case NS_KEY_DOWN:
|
|
|
|
case NS_KEY_UP:
|
1999-11-21 01:46:41 +00:00
|
|
|
case NS_MOUSE_SCROLL:
|
1999-07-27 14:38:07 +00:00
|
|
|
{
|
1999-07-27 20:55:03 +00:00
|
|
|
if (mCurrentFocus) {
|
|
|
|
mCurrentTargetContent = mCurrentFocus;
|
|
|
|
NS_ADDREF(mCurrentTargetContent);
|
|
|
|
}
|
1999-07-27 14:38:07 +00:00
|
|
|
}
|
|
|
|
break;
|
1998-06-23 21:53:02 +00:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-08-19 19:48:45 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// BeginTrackingDragGesture
|
|
|
|
//
|
|
|
|
// Record that the mouse has gone down and that we should move to TRACKING state
|
|
|
|
// of d&d gesture tracker.
|
|
|
|
//
|
|
|
|
void
|
|
|
|
nsEventStateManager :: BeginTrackingDragGesture ( nsGUIEvent* inDownEvent, nsIFrame* inDownFrame )
|
|
|
|
{
|
|
|
|
mIsTrackingDragGesture = PR_TRUE;
|
|
|
|
mGestureDownPoint = inDownEvent->point;
|
|
|
|
mGestureDownFrame = inDownFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// StopTrackingDragGesture
|
|
|
|
//
|
|
|
|
// Record that the mouse has gone back up so that we should leave the TRACKING
|
|
|
|
// state of d&d gesture tracker and return to the START state.
|
|
|
|
//
|
|
|
|
void
|
|
|
|
nsEventStateManager :: StopTrackingDragGesture ( )
|
|
|
|
{
|
|
|
|
mIsTrackingDragGesture = PR_FALSE;
|
|
|
|
mGestureDownPoint = nsPoint(0,0);
|
|
|
|
mGestureDownFrame = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// GenerateDragGesture
|
|
|
|
//
|
|
|
|
// If we're in the TRACKING state of the d&d gesture tracker, check the current position
|
|
|
|
// of the mouse in relation to the old one. If we've moved a sufficient amount from
|
|
|
|
// the mouse down, then fire off a drag gesture event.
|
|
|
|
//
|
|
|
|
// Note that when the mouse enters a new child window with its own view, the event's
|
|
|
|
// coordinates will be in relation to the origin of the inner child window, which could
|
|
|
|
// either be very different from that of the mouse coords of the mouse down and trigger
|
|
|
|
// a drag too early, or very similiar which might not trigger a drag.
|
|
|
|
//
|
|
|
|
// Do we need to do anything about this? Let's wait and see.
|
|
|
|
//
|
|
|
|
void
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStateManager :: GenerateDragGesture ( nsIPresContext* aPresContext, nsGUIEvent *aEvent )
|
1999-08-19 19:48:45 +00:00
|
|
|
{
|
1999-11-24 06:03:41 +00:00
|
|
|
NS_WARN_IF_FALSE(aPresContext, "This shouldn't happen.");
|
1999-08-19 19:48:45 +00:00
|
|
|
if ( IsTrackingDragGesture() ) {
|
|
|
|
// figure out the delta in twips, since that is how it is in the event.
|
|
|
|
// Do we need to do this conversion every time? Will the pres context really change on
|
|
|
|
// us or can we cache it?
|
|
|
|
long twipDeltaToStartDrag = 0;
|
|
|
|
const long pixelDeltaToStartDrag = 5;
|
|
|
|
nsCOMPtr<nsIDeviceContext> devContext;
|
1999-11-24 06:03:41 +00:00
|
|
|
aPresContext->GetDeviceContext ( getter_AddRefs(devContext) );
|
1999-08-19 19:48:45 +00:00
|
|
|
if ( devContext ) {
|
|
|
|
float pixelsToTwips = 0.0;
|
|
|
|
devContext->GetDevUnitsToTwips(pixelsToTwips);
|
1999-08-24 09:37:28 +00:00
|
|
|
twipDeltaToStartDrag = (long)(pixelDeltaToStartDrag * pixelsToTwips);
|
1999-08-19 19:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// fire drag gesture if mouse has moved enough
|
|
|
|
if ( abs(aEvent->point.x - mGestureDownPoint.x) > twipDeltaToStartDrag ||
|
|
|
|
abs(aEvent->point.y - mGestureDownPoint.y) > twipDeltaToStartDrag ) {
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsMouseEvent event;
|
|
|
|
event.eventStructType = NS_DRAGDROP_EVENT;
|
|
|
|
event.message = NS_DRAGDROP_GESTURE;
|
|
|
|
event.widget = aEvent->widget;
|
|
|
|
event.clickCount = 0;
|
|
|
|
event.point = aEvent->point;
|
|
|
|
event.refPoint = aEvent->refPoint;
|
2000-01-15 17:21:20 +00:00
|
|
|
event.isShift = ((nsMouseEvent*)aEvent)->isShift;
|
|
|
|
event.isControl = ((nsMouseEvent*)aEvent)->isControl;
|
|
|
|
event.isAlt = ((nsMouseEvent*)aEvent)->isAlt;
|
|
|
|
event.isMeta = ((nsMouseEvent*)aEvent)->isMeta;
|
1999-08-19 19:48:45 +00:00
|
|
|
|
|
|
|
// dispatch to the DOM
|
|
|
|
nsCOMPtr<nsIContent> lastContent;
|
1999-11-09 07:10:46 +00:00
|
|
|
if ( mGestureDownFrame ) {
|
2000-02-11 01:24:59 +00:00
|
|
|
mGestureDownFrame->GetContentForEvent(aPresContext, aEvent, getter_AddRefs(lastContent));
|
1999-11-09 07:10:46 +00:00
|
|
|
if ( lastContent )
|
1999-11-24 06:03:41 +00:00
|
|
|
lastContent->HandleDOMEvent(aPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
1999-11-09 07:10:46 +00:00
|
|
|
}
|
|
|
|
|
1999-08-19 19:48:45 +00:00
|
|
|
// dispatch to the frame
|
1999-11-02 03:55:14 +00:00
|
|
|
if ( mGestureDownFrame )
|
1999-11-24 06:03:41 +00:00
|
|
|
mGestureDownFrame->HandleEvent(aPresContext, &event, &status);
|
1999-08-19 19:48:45 +00:00
|
|
|
|
|
|
|
StopTrackingDragGesture();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // GenerateDragGesture
|
|
|
|
|
|
|
|
|
1998-11-24 07:46:58 +00:00
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStateManager::PostHandleEvent(nsIPresContext* aPresContext,
|
1999-09-16 14:54:59 +00:00
|
|
|
nsGUIEvent *aEvent,
|
|
|
|
nsIFrame* aTargetFrame,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aStatus,
|
1999-09-16 14:54:59 +00:00
|
|
|
nsIView* aView)
|
1998-11-24 07:46:58 +00:00
|
|
|
{
|
1999-11-24 06:03:41 +00:00
|
|
|
NS_ENSURE_ARG(aPresContext);
|
|
|
|
NS_ENSURE_ARG_POINTER(aStatus);
|
1998-11-24 07:46:58 +00:00
|
|
|
mCurrentTarget = aTargetFrame;
|
1999-06-15 03:14:28 +00:00
|
|
|
NS_IF_RELEASE(mCurrentTargetContent);
|
1998-11-24 07:46:58 +00:00
|
|
|
nsresult ret = NS_OK;
|
|
|
|
|
|
|
|
nsFrameState state;
|
1999-02-10 04:17:06 +00:00
|
|
|
mCurrentTarget->GetFrameState(&state);
|
1998-11-24 07:46:58 +00:00
|
|
|
state |= NS_FRAME_EXTERNAL_REFERENCE;
|
|
|
|
mCurrentTarget->SetFrameState(state);
|
|
|
|
|
|
|
|
switch (aEvent->message) {
|
|
|
|
case NS_MOUSE_LEFT_BUTTON_DOWN:
|
|
|
|
case NS_MOUSE_MIDDLE_BUTTON_DOWN:
|
1999-01-28 23:14:36 +00:00
|
|
|
case NS_MOUSE_RIGHT_BUTTON_DOWN:
|
|
|
|
{
|
1999-12-18 04:02:28 +00:00
|
|
|
if (mConsumeFocusEvents) {
|
|
|
|
mConsumeFocusEvents = PR_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-11-24 06:03:41 +00:00
|
|
|
if (nsEventStatus_eConsumeNoDefault != *aStatus) {
|
1999-09-30 11:40:42 +00:00
|
|
|
nsCOMPtr<nsIContent> newFocus;
|
2000-02-11 01:24:59 +00:00
|
|
|
mCurrentTarget->GetContentForEvent(aPresContext, aEvent, getter_AddRefs(newFocus));
|
1999-08-24 00:42:38 +00:00
|
|
|
nsCOMPtr<nsIFocusableContent> focusable;
|
|
|
|
|
1999-04-12 21:24:07 +00:00
|
|
|
if (newFocus) {
|
1999-08-24 00:42:38 +00:00
|
|
|
// Look for the nearest enclosing focusable content.
|
1999-09-30 11:40:42 +00:00
|
|
|
nsCOMPtr<nsIContent> current = newFocus;
|
1999-08-24 00:42:38 +00:00
|
|
|
while (current) {
|
|
|
|
focusable = do_QueryInterface(current);
|
|
|
|
if (focusable)
|
|
|
|
break;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> parent;
|
|
|
|
current->GetParent(*getter_AddRefs(parent));
|
|
|
|
current = parent;
|
|
|
|
}
|
1999-09-30 11:40:42 +00:00
|
|
|
|
|
|
|
// if a focusable piece of content is an anonymous node
|
|
|
|
// weed to find the parent and have the parent be the
|
|
|
|
// new focusable node
|
|
|
|
//
|
|
|
|
// We fist to check here to see if the focused content
|
|
|
|
// is anonymous content
|
|
|
|
if (focusable) {
|
|
|
|
nsCOMPtr<nsIContent> parent;
|
|
|
|
current->GetParent(*getter_AddRefs(parent));
|
|
|
|
NS_ASSERTION(parent.get(), "parent is null. this should not happen.");
|
|
|
|
PRInt32 numChilds;
|
|
|
|
parent->ChildCount(numChilds);
|
|
|
|
PRInt32 i;
|
|
|
|
PRBool isChild = PR_FALSE;
|
|
|
|
for (i=0;i<numChilds;i++) {
|
|
|
|
nsCOMPtr<nsIContent> child;
|
|
|
|
parent->ChildAt(i, *getter_AddRefs(child));
|
|
|
|
if (child.get() == current.get()) {
|
|
|
|
isChild = PR_TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if it isn't a child of the parent, then it is anonynous content
|
|
|
|
// Now, go up the parent list to find a focusable content node
|
|
|
|
if (!isChild) {
|
|
|
|
current = parent;
|
|
|
|
while (current) {
|
|
|
|
focusable = do_QueryInterface(current);
|
|
|
|
if (focusable)
|
|
|
|
break;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> tempParent;
|
|
|
|
current->GetParent(*getter_AddRefs(tempParent));
|
|
|
|
current = tempParent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// now we ned to get the content node's frame and reset
|
|
|
|
// the mCurrentTarget target
|
|
|
|
nsCOMPtr<nsIPresShell> shell;
|
|
|
|
if (mPresContext) {
|
|
|
|
nsresult rv = mPresContext->GetShell(getter_AddRefs(shell));
|
|
|
|
if (NS_SUCCEEDED(rv) && shell){
|
|
|
|
shell->GetPrimaryFrameFor(current, &mCurrentTarget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// now adjust the value for the "newFocus"
|
|
|
|
newFocus = current;
|
|
|
|
}
|
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(focusable);
|
|
|
|
ChangeFocus(content, mCurrentTarget, PR_TRUE);
|
1999-03-02 19:19:24 +00:00
|
|
|
}
|
1999-04-12 21:24:07 +00:00
|
|
|
SetContentState(newFocus, NS_EVENT_STATE_ACTIVE);
|
1999-01-28 23:14:36 +00:00
|
|
|
}
|
1999-01-08 21:13:59 +00:00
|
|
|
}
|
1999-03-28 22:22:54 +00:00
|
|
|
break;
|
1998-11-24 07:46:58 +00:00
|
|
|
case NS_MOUSE_LEFT_BUTTON_UP:
|
|
|
|
case NS_MOUSE_MIDDLE_BUTTON_UP:
|
|
|
|
case NS_MOUSE_RIGHT_BUTTON_UP:
|
1999-05-07 21:12:59 +00:00
|
|
|
{
|
|
|
|
ret = CheckForAndDispatchClick(aPresContext, (nsMouseEvent*)aEvent, aStatus);
|
1999-09-22 02:29:33 +00:00
|
|
|
|
1999-05-07 21:12:59 +00:00
|
|
|
SetContentState(nsnull, NS_EVENT_STATE_ACTIVE);
|
|
|
|
nsCOMPtr<nsIPresShell> shell;
|
1999-11-24 06:03:41 +00:00
|
|
|
nsresult rv = aPresContext->GetShell(getter_AddRefs(shell));
|
1999-05-07 21:12:59 +00:00
|
|
|
if (NS_SUCCEEDED(rv) && shell){
|
1999-07-18 02:27:19 +00:00
|
|
|
nsCOMPtr<nsIFrameSelection> frameSel;
|
|
|
|
rv = shell->GetFrameSelection(getter_AddRefs(frameSel));
|
|
|
|
if (NS_SUCCEEDED(rv) && frameSel){
|
1999-05-07 21:12:59 +00:00
|
|
|
frameSel->SetMouseDownState(PR_FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1998-11-24 07:46:58 +00:00
|
|
|
break;
|
1999-11-21 01:46:41 +00:00
|
|
|
case NS_MOUSE_SCROLL:
|
1999-11-24 06:03:41 +00:00
|
|
|
if (nsEventStatus_eConsumeNoDefault != *aStatus) {
|
2000-01-06 06:22:00 +00:00
|
|
|
nsMouseScrollEvent *msEvent = (nsMouseScrollEvent*) aEvent;
|
|
|
|
PRInt32 action = 0;
|
|
|
|
PRInt32 numLines = 0;
|
|
|
|
|
|
|
|
if (msEvent->isShift) {
|
|
|
|
action = getCachedIntPref("mousewheel.withshiftkey.action");
|
|
|
|
if (getCachedBoolPref("mousewheel.withshiftkey.sysnumlines"))
|
|
|
|
numLines = msEvent->deltaLines;
|
|
|
|
else
|
|
|
|
numLines = getCachedIntPref("mousewheel.withshiftkey.numlines");
|
|
|
|
} else if (msEvent->isControl) {
|
|
|
|
action = getCachedIntPref("mousewheel.withcontrolkey.action");
|
|
|
|
if (getCachedBoolPref("mousewheel.withcontrolkey.sysnumlines"))
|
|
|
|
numLines = msEvent->deltaLines;
|
|
|
|
else
|
|
|
|
numLines = getCachedIntPref("mousewheel.withcontrolkey.numlines");
|
|
|
|
} else if (msEvent->isAlt) {
|
|
|
|
action = getCachedIntPref("mousewheel.withaltkey.action");
|
|
|
|
if (getCachedBoolPref("mousewheel.withaltkey.sysnumlines"))
|
|
|
|
numLines = msEvent->deltaLines;
|
|
|
|
else
|
|
|
|
numLines = getCachedIntPref("mousewheel.withaltkey.numlines");
|
|
|
|
} else {
|
|
|
|
action = getCachedIntPref("mousewheel.withnokey.action");
|
|
|
|
if (getCachedBoolPref("mousewheel.withnokey.sysnumlines"))
|
|
|
|
numLines = msEvent->deltaLines;
|
|
|
|
else
|
|
|
|
numLines = getCachedIntPref("mousewheel.withnokey.numlines");
|
|
|
|
}
|
1999-11-21 01:46:41 +00:00
|
|
|
|
2000-01-06 06:22:00 +00:00
|
|
|
if ((msEvent->deltaLines < 0) && (numLines > 0))
|
|
|
|
numLines = -numLines;
|
1999-11-21 01:46:41 +00:00
|
|
|
|
2000-01-06 06:22:00 +00:00
|
|
|
switch (action) {
|
|
|
|
case MOUSE_SCROLL_N_LINES:
|
|
|
|
{
|
|
|
|
nsIView* focusView = nsnull;
|
2000-01-11 22:30:22 +00:00
|
|
|
nsIScrollableView* sv = nsnull;
|
|
|
|
nsISelfScrollingFrame* sf = nsnull;
|
2000-01-16 05:30:49 +00:00
|
|
|
|
2000-02-05 00:58:29 +00:00
|
|
|
#ifdef USE_FOCUS_FOR_MOUSEWHEEL
|
|
|
|
if (NS_SUCCEEDED(GetScrollableFrameOrView(sv, sf, focusView)))
|
|
|
|
#else
|
2000-01-16 05:30:49 +00:00
|
|
|
if (NS_SUCCEEDED(GetScrollableFrameOrView(aPresContext, aTargetFrame,
|
|
|
|
aView, sv, sf, focusView)))
|
2000-02-05 00:58:29 +00:00
|
|
|
#endif
|
2000-01-11 22:30:22 +00:00
|
|
|
{
|
|
|
|
if (sv)
|
|
|
|
{
|
|
|
|
sv->ScrollByLines(numLines);
|
|
|
|
ForceViewUpdate(focusView);
|
2000-01-06 06:22:00 +00:00
|
|
|
}
|
2000-01-11 22:30:22 +00:00
|
|
|
else if (sf)
|
|
|
|
sf->ScrollByLines(aPresContext, numLines);
|
1999-11-21 01:46:41 +00:00
|
|
|
}
|
2000-01-06 06:22:00 +00:00
|
|
|
}
|
2000-01-16 05:30:49 +00:00
|
|
|
break;
|
|
|
|
|
2000-01-06 06:22:00 +00:00
|
|
|
case MOUSE_SCROLL_PAGE:
|
2000-01-16 05:30:49 +00:00
|
|
|
{
|
|
|
|
nsIView* focusView = nsnull;
|
|
|
|
nsIScrollableView* sv = nsnull;
|
|
|
|
nsISelfScrollingFrame* sf = nsnull;
|
|
|
|
|
2000-02-05 00:58:29 +00:00
|
|
|
#ifdef USE_FOCUS_FOR_MOUSEWHEEL
|
|
|
|
if (NS_SUCCEEDED(GetScrollableFrameOrView(sv, sf, focusView)))
|
|
|
|
#else
|
2000-01-16 05:30:49 +00:00
|
|
|
if (NS_SUCCEEDED(GetScrollableFrameOrView(aPresContext, aTargetFrame,
|
|
|
|
aView, sv, sf, focusView)))
|
2000-02-05 00:58:29 +00:00
|
|
|
#endif
|
2000-01-16 05:30:49 +00:00
|
|
|
{
|
|
|
|
if (sv)
|
|
|
|
{
|
|
|
|
sv->ScrollByPages((numLines > 0) ? 1 : -1);
|
|
|
|
ForceViewUpdate(focusView);
|
|
|
|
}
|
|
|
|
else if (sf)
|
|
|
|
sf->ScrollByPages(aPresContext, (numLines > 0) ? 1 : -1);
|
|
|
|
}
|
2000-01-06 06:22:00 +00:00
|
|
|
}
|
|
|
|
break;
|
2000-01-16 05:30:49 +00:00
|
|
|
|
2000-01-06 06:22:00 +00:00
|
|
|
case MOUSE_SCROLL_HISTORY:
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWebShell> webShell;
|
|
|
|
mPresContext->GetContainer(getter_AddRefs(webShell));
|
|
|
|
if (nsnull != webShell) {
|
|
|
|
nsCOMPtr<nsIWebShell> root;
|
|
|
|
webShell->GetRootWebShell(*getter_AddRefs(root));
|
|
|
|
if (nsnull != root) {
|
|
|
|
nsCOMPtr<nsISessionHistory> sHist;
|
|
|
|
root->GetSessionHistory(*getter_AddRefs(sHist));
|
|
|
|
if (sHist) {
|
|
|
|
if (numLines > 0)
|
|
|
|
{
|
|
|
|
sHist->GoBack(root);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sHist->GoForward(root);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1999-11-21 01:46:41 +00:00
|
|
|
}
|
|
|
|
}
|
1999-12-28 23:02:38 +00:00
|
|
|
|
2000-01-06 06:22:00 +00:00
|
|
|
break;
|
|
|
|
|
1999-11-12 01:02:14 +00:00
|
|
|
case NS_DRAGDROP_DROP:
|
|
|
|
case NS_DRAGDROP_EXIT:
|
|
|
|
// clean up after ourselves. make sure we do this _after_ the event, else we'll
|
|
|
|
// clean up too early!
|
|
|
|
GenerateDragDropEnterExit(aPresContext, aEvent);
|
|
|
|
break;
|
landing keyEvent_19991004_BRANCH
bugs # see the log of the check in into branch
author/reviewer:
mozilla/layout/base/src/nsRangeList.cpp brade/mjudge
mozilla/layout/html/forms/src/nsGfxTextControlFrame.cpp brade/ftang
mozilla/layout/events/src/nsDOMEvent.cpp brade/joki
mozilla/layout/events/src/nsEventStateManager.cpp brade/joki
mozilla/widget/public/nsGUIEvent.h akkana/ftang
mozilla/widget/src/windows/nsWindow.cpp ftang/mjudge
mozilla/widget/src/windows/nsWindow.h ftang/mjudge
mozilla/widget/src/mac/nsTextAreaWidget.cpp brade/ftang
mozilla/widget/src/mac/nsMacEventHandler.cpp brade/simon
mozilla/widget/src/xpwidgets/nsKeyBindMgr.cpp brade/ftang
mozilla/widget/src/gtk/nsGtkEventHandler.cpp akkana/?
mozilla/widget/src/gtk/nsWidget.cpp erik/ftang
mozilla/layout/xul/base/src/nsTreeCellFrame.cpp brade/ftang
mozilla/editor/base/nsEditorEventListeners.cpp brade/akkana
mozilla/editor/base/nsHTMLEditor.cpp brade/akkana
mozilla/rdf/content/src/nsXULKeyListener.cpp ftang/saari
fix the master bug- 15693
fix at least, but not limited to, the following bugs
10158,11956,6053,9333,10901,14348,6449,11845,13016,14410,15657,15307,15842,13856
1999-10-14 18:27:01 +00:00
|
|
|
case NS_KEY_PRESS:
|
1999-11-24 06:03:41 +00:00
|
|
|
if (nsEventStatus_eConsumeNoDefault != *aStatus) {
|
1999-11-22 19:45:13 +00:00
|
|
|
nsKeyEvent* keyEvent = (nsKeyEvent*)aEvent;
|
|
|
|
//This is to prevent keyboard scrolling while alt modifier in use.
|
|
|
|
if (!keyEvent->isAlt) {
|
|
|
|
switch(keyEvent->keyCode) {
|
|
|
|
case NS_VK_TAB:
|
1999-12-21 19:35:13 +00:00
|
|
|
if (mConsumeFocusEvents) {
|
|
|
|
mConsumeFocusEvents = PR_FALSE;
|
|
|
|
break;
|
|
|
|
}
|
1999-11-22 19:45:13 +00:00
|
|
|
//Shift focus forward or back depending on shift key
|
|
|
|
ShiftFocus(!((nsInputEvent*)aEvent)->isShift);
|
1999-11-24 06:03:41 +00:00
|
|
|
*aStatus = nsEventStatus_eConsumeNoDefault;
|
1999-11-22 19:45:13 +00:00
|
|
|
break;
|
1999-12-11 00:02:08 +00:00
|
|
|
|
|
|
|
//the problem is that viewer does not have xul so we cannot completely eliminate these
|
|
|
|
#if NON_KEYBINDING
|
1999-11-22 19:45:13 +00:00
|
|
|
case NS_VK_PAGE_DOWN:
|
|
|
|
case NS_VK_PAGE_UP:
|
|
|
|
if (!mCurrentFocus) {
|
|
|
|
nsIScrollableView* sv = GetNearestScrollingView(aView);
|
|
|
|
if (sv) {
|
|
|
|
nsKeyEvent * keyEvent = (nsKeyEvent *)aEvent;
|
|
|
|
sv->ScrollByPages((keyEvent->keyCode != NS_VK_PAGE_UP) ? 1 : -1);
|
|
|
|
}
|
1999-09-21 14:18:52 +00:00
|
|
|
}
|
1999-11-22 19:45:13 +00:00
|
|
|
break;
|
|
|
|
case NS_VK_HOME:
|
|
|
|
case NS_VK_END:
|
|
|
|
if (!mCurrentFocus) {
|
|
|
|
nsIScrollableView* sv = GetNearestScrollingView(aView);
|
|
|
|
if (sv) {
|
|
|
|
nsKeyEvent * keyEvent = (nsKeyEvent *)aEvent;
|
|
|
|
sv->ScrollByWhole((keyEvent->keyCode != NS_VK_HOME) ? PR_FALSE : PR_TRUE);
|
1999-05-31 01:45:23 +00:00
|
|
|
}
|
1999-04-30 19:38:39 +00:00
|
|
|
}
|
1999-11-22 19:45:13 +00:00
|
|
|
break;
|
|
|
|
case NS_VK_DOWN:
|
|
|
|
case NS_VK_UP:
|
landing keyEvent_19991004_BRANCH
bugs # see the log of the check in into branch
author/reviewer:
mozilla/layout/base/src/nsRangeList.cpp brade/mjudge
mozilla/layout/html/forms/src/nsGfxTextControlFrame.cpp brade/ftang
mozilla/layout/events/src/nsDOMEvent.cpp brade/joki
mozilla/layout/events/src/nsEventStateManager.cpp brade/joki
mozilla/widget/public/nsGUIEvent.h akkana/ftang
mozilla/widget/src/windows/nsWindow.cpp ftang/mjudge
mozilla/widget/src/windows/nsWindow.h ftang/mjudge
mozilla/widget/src/mac/nsTextAreaWidget.cpp brade/ftang
mozilla/widget/src/mac/nsMacEventHandler.cpp brade/simon
mozilla/widget/src/xpwidgets/nsKeyBindMgr.cpp brade/ftang
mozilla/widget/src/gtk/nsGtkEventHandler.cpp akkana/?
mozilla/widget/src/gtk/nsWidget.cpp erik/ftang
mozilla/layout/xul/base/src/nsTreeCellFrame.cpp brade/ftang
mozilla/editor/base/nsEditorEventListeners.cpp brade/akkana
mozilla/editor/base/nsHTMLEditor.cpp brade/akkana
mozilla/rdf/content/src/nsXULKeyListener.cpp ftang/saari
fix the master bug- 15693
fix at least, but not limited to, the following bugs
10158,11956,6053,9333,10901,14348,6449,11845,13016,14410,15657,15307,15842,13856
1999-10-14 18:27:01 +00:00
|
|
|
if (!mCurrentFocus) {
|
|
|
|
nsIScrollableView* sv = GetNearestScrollingView(aView);
|
|
|
|
if (sv) {
|
1999-11-22 19:45:13 +00:00
|
|
|
nsKeyEvent * keyEvent = (nsKeyEvent *)aEvent;
|
|
|
|
sv->ScrollByLines((keyEvent->keyCode == NS_VK_DOWN) ? 1 : -1);
|
|
|
|
|
|
|
|
// force the update to happen now, otherwise multiple scrolls can
|
|
|
|
// occur before the update is processed. (bug #7354)
|
|
|
|
nsIViewManager* vm = nsnull;
|
|
|
|
if (NS_OK == aView->GetViewManager(vm) && nsnull != vm) {
|
|
|
|
// I'd use Composite here, but it doesn't always work.
|
|
|
|
// vm->Composite();
|
2000-01-26 23:04:40 +00:00
|
|
|
vm->ForceUpdate();
|
1999-11-22 19:45:13 +00:00
|
|
|
NS_RELEASE(vm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0: /* check charcode since keycode is 0 */
|
|
|
|
{
|
|
|
|
//Spacebar
|
|
|
|
nsKeyEvent * keyEvent = (nsKeyEvent *)aEvent;
|
|
|
|
if (keyEvent->charCode == 0x20) {
|
|
|
|
if (!mCurrentFocus) {
|
|
|
|
nsIScrollableView* sv = GetNearestScrollingView(aView);
|
|
|
|
if (sv) {
|
|
|
|
sv->ScrollByPages(1);
|
|
|
|
}
|
landing keyEvent_19991004_BRANCH
bugs # see the log of the check in into branch
author/reviewer:
mozilla/layout/base/src/nsRangeList.cpp brade/mjudge
mozilla/layout/html/forms/src/nsGfxTextControlFrame.cpp brade/ftang
mozilla/layout/events/src/nsDOMEvent.cpp brade/joki
mozilla/layout/events/src/nsEventStateManager.cpp brade/joki
mozilla/widget/public/nsGUIEvent.h akkana/ftang
mozilla/widget/src/windows/nsWindow.cpp ftang/mjudge
mozilla/widget/src/windows/nsWindow.h ftang/mjudge
mozilla/widget/src/mac/nsTextAreaWidget.cpp brade/ftang
mozilla/widget/src/mac/nsMacEventHandler.cpp brade/simon
mozilla/widget/src/xpwidgets/nsKeyBindMgr.cpp brade/ftang
mozilla/widget/src/gtk/nsGtkEventHandler.cpp akkana/?
mozilla/widget/src/gtk/nsWidget.cpp erik/ftang
mozilla/layout/xul/base/src/nsTreeCellFrame.cpp brade/ftang
mozilla/editor/base/nsEditorEventListeners.cpp brade/akkana
mozilla/editor/base/nsHTMLEditor.cpp brade/akkana
mozilla/rdf/content/src/nsXULKeyListener.cpp ftang/saari
fix the master bug- 15693
fix at least, but not limited to, the following bugs
10158,11956,6053,9333,10901,14348,6449,11845,13016,14410,15657,15307,15842,13856
1999-10-14 18:27:01 +00:00
|
|
|
}
|
|
|
|
}
|
1999-07-06 22:55:46 +00:00
|
|
|
}
|
1999-11-22 19:45:13 +00:00
|
|
|
break;
|
1999-12-11 00:02:08 +00:00
|
|
|
#endif //NON_KEYBINDING
|
1999-07-06 22:55:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1998-11-24 07:46:58 +00:00
|
|
|
}
|
1999-11-03 07:11:45 +00:00
|
|
|
|
1999-11-08 21:30:22 +00:00
|
|
|
//Reset target frame to null to avoid mistargetting after reentrant event
|
|
|
|
mCurrentTarget = nsnull;
|
|
|
|
|
1998-11-24 07:46:58 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsEventStateManager::SetPresContext(nsIPresContext* aPresContext)
|
1998-06-23 21:53:02 +00:00
|
|
|
{
|
1999-12-08 20:18:16 +00:00
|
|
|
if (aPresContext == nsnull) {
|
|
|
|
// A pres context is going away. Make sure we do cleanup.
|
|
|
|
if (mPresContext == gLastFocusedPresContext) {
|
|
|
|
gLastFocusedPresContext = nsnull;
|
|
|
|
NS_IF_RELEASE(gLastFocusedDocument);
|
1999-12-11 05:42:18 +00:00
|
|
|
NS_IF_RELEASE(gLastFocusedContent);
|
1999-12-08 20:18:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
mPresContext = aPresContext;
|
1998-07-17 04:52:12 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-11-19 00:43:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsEventStateManager::ClearFrameRefs(nsIFrame* aFrame)
|
|
|
|
{
|
1999-11-02 03:55:14 +00:00
|
|
|
if (aFrame == mLastMouseOverFrame)
|
1998-11-19 00:43:36 +00:00
|
|
|
mLastMouseOverFrame = nsnull;
|
1999-11-02 03:55:14 +00:00
|
|
|
if (aFrame == mLastDragOverFrame)
|
|
|
|
mLastDragOverFrame = nsnull;
|
|
|
|
if (aFrame == mGestureDownFrame)
|
|
|
|
mGestureDownFrame = nsnull;
|
1998-11-24 07:46:58 +00:00
|
|
|
if (aFrame == mCurrentTarget) {
|
1999-06-15 03:14:28 +00:00
|
|
|
if (aFrame) {
|
|
|
|
aFrame->GetContent(&mCurrentTargetContent);
|
|
|
|
}
|
1998-11-19 00:43:36 +00:00
|
|
|
mCurrentTarget = nsnull;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-04-30 19:38:39 +00:00
|
|
|
nsIScrollableView*
|
|
|
|
nsEventStateManager::GetNearestScrollingView(nsIView* aView)
|
|
|
|
{
|
|
|
|
nsIScrollableView* sv;
|
2000-02-05 00:58:29 +00:00
|
|
|
if (NS_OK == aView->QueryInterface(NS_GET_IID(nsIScrollableView),
|
|
|
|
(void**)&sv)) {
|
1999-04-30 19:38:39 +00:00
|
|
|
return sv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIView* parent;
|
|
|
|
aView->GetParent(parent);
|
|
|
|
|
|
|
|
if (nsnull != parent) {
|
|
|
|
return GetNearestScrollingView(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
1999-11-21 01:46:41 +00:00
|
|
|
nsISelfScrollingFrame*
|
2000-01-11 22:30:22 +00:00
|
|
|
nsEventStateManager::GetParentSelfScrollingFrame(nsIFrame* aFrame)
|
1999-11-21 01:46:41 +00:00
|
|
|
{
|
|
|
|
nsISelfScrollingFrame *sf;
|
|
|
|
if (NS_OK == aFrame->QueryInterface(NS_GET_IID(nsISelfScrollingFrame),
|
|
|
|
(void**)&sf)) {
|
|
|
|
return sf;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* parent;
|
|
|
|
aFrame->GetParent(&parent);
|
|
|
|
|
|
|
|
if (nsnull != parent) {
|
2000-01-11 22:30:22 +00:00
|
|
|
return GetParentSelfScrollingFrame(parent);
|
1999-11-21 01:46:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
1999-12-04 02:22:21 +00:00
|
|
|
PRBool
|
|
|
|
nsEventStateManager::CheckDisabled(nsIContent* aContent)
|
|
|
|
{
|
|
|
|
PRBool disabled = PR_FALSE;
|
|
|
|
|
2000-01-12 06:54:58 +00:00
|
|
|
nsCOMPtr<nsIAtom> tag;
|
|
|
|
aContent->GetTag(*getter_AddRefs(tag));
|
1999-12-04 02:22:21 +00:00
|
|
|
|
2000-01-12 07:39:00 +00:00
|
|
|
if (nsHTMLAtoms::input == tag.get() ||
|
|
|
|
nsHTMLAtoms::select == tag.get() ||
|
|
|
|
nsHTMLAtoms::textarea == tag.get() ||
|
|
|
|
nsHTMLAtoms::button == tag.get()) {
|
1999-12-04 02:22:21 +00:00
|
|
|
nsAutoString empty;
|
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == aContent->GetAttribute(kNameSpaceID_HTML,
|
|
|
|
nsHTMLAtoms::disabled,
|
|
|
|
empty)) {
|
|
|
|
disabled = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return disabled;
|
|
|
|
}
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
void
|
2000-02-11 01:24:59 +00:00
|
|
|
nsEventStateManager::UpdateCursor(nsIPresContext* aPresContext, nsEvent* aEvent, nsIFrame* aTargetFrame,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aStatus)
|
1998-07-17 04:52:12 +00:00
|
|
|
{
|
1998-11-18 05:25:26 +00:00
|
|
|
PRInt32 cursor;
|
|
|
|
nsCursor c;
|
1999-12-04 02:22:21 +00:00
|
|
|
nsCOMPtr<nsIContent> targetContent;
|
|
|
|
|
|
|
|
if (mCurrentTarget) {
|
|
|
|
mCurrentTarget->GetContent(getter_AddRefs(targetContent));
|
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
|
1999-12-04 02:22:21 +00:00
|
|
|
//Check if the current target is disabled. If so use the default pointer.
|
|
|
|
if (targetContent && CheckDisabled(targetContent)) {
|
|
|
|
cursor = NS_STYLE_CURSOR_DEFAULT;
|
|
|
|
}
|
|
|
|
//If not disabled, check for the right cursor.
|
|
|
|
else {
|
2000-02-11 01:24:59 +00:00
|
|
|
aTargetFrame->GetCursor(aPresContext, aEvent->point, cursor);
|
1999-12-04 02:22:21 +00:00
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
|
|
|
|
switch (cursor) {
|
|
|
|
default:
|
|
|
|
case NS_STYLE_CURSOR_AUTO:
|
|
|
|
case NS_STYLE_CURSOR_DEFAULT:
|
|
|
|
c = eCursor_standard;
|
|
|
|
break;
|
|
|
|
case NS_STYLE_CURSOR_POINTER:
|
|
|
|
c = eCursor_hyperlink;
|
|
|
|
break;
|
1999-07-07 07:50:03 +00:00
|
|
|
case NS_STYLE_CURSOR_CROSSHAIR:
|
|
|
|
c = eCursor_crosshair;
|
|
|
|
break;
|
|
|
|
case NS_STYLE_CURSOR_MOVE:
|
|
|
|
c = eCursor_move;
|
|
|
|
break;
|
1998-11-18 05:25:26 +00:00
|
|
|
case NS_STYLE_CURSOR_TEXT:
|
|
|
|
c = eCursor_select;
|
|
|
|
break;
|
1999-07-07 07:50:03 +00:00
|
|
|
case NS_STYLE_CURSOR_WAIT:
|
|
|
|
c = eCursor_wait;
|
|
|
|
break;
|
|
|
|
case NS_STYLE_CURSOR_HELP:
|
|
|
|
c = eCursor_help;
|
|
|
|
break;
|
1998-11-18 05:25:26 +00:00
|
|
|
case NS_STYLE_CURSOR_N_RESIZE:
|
|
|
|
case NS_STYLE_CURSOR_S_RESIZE:
|
|
|
|
c = eCursor_sizeNS;
|
|
|
|
break;
|
|
|
|
case NS_STYLE_CURSOR_W_RESIZE:
|
|
|
|
case NS_STYLE_CURSOR_E_RESIZE:
|
|
|
|
c = eCursor_sizeWE;
|
|
|
|
break;
|
1999-07-07 07:50:03 +00:00
|
|
|
//These aren't in the CSS2 spec. Don't know what to do with them.
|
1998-11-18 05:25:26 +00:00
|
|
|
case NS_STYLE_CURSOR_NE_RESIZE:
|
|
|
|
case NS_STYLE_CURSOR_NW_RESIZE:
|
|
|
|
case NS_STYLE_CURSOR_SE_RESIZE:
|
|
|
|
case NS_STYLE_CURSOR_SW_RESIZE:
|
|
|
|
c = eCursor_select;
|
|
|
|
break;
|
1998-07-17 04:52:12 +00:00
|
|
|
}
|
1998-12-03 03:07:16 +00:00
|
|
|
|
|
|
|
if (NS_STYLE_CURSOR_AUTO != cursor) {
|
1999-11-24 06:03:41 +00:00
|
|
|
*aStatus = nsEventStatus_eConsumeDoDefault;
|
1998-12-03 03:07:16 +00:00
|
|
|
}
|
|
|
|
|
1999-11-02 03:55:14 +00:00
|
|
|
nsCOMPtr<nsIWidget> window;
|
1999-11-24 06:03:41 +00:00
|
|
|
aTargetFrame->GetWindow(aPresContext, getter_AddRefs(window));
|
1998-11-18 05:25:26 +00:00
|
|
|
window->SetCursor(c);
|
1998-07-17 04:52:12 +00:00
|
|
|
}
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
void
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStateManager::GenerateMouseEnterExit(nsIPresContext* aPresContext, nsGUIEvent* aEvent)
|
1998-07-17 04:52:12 +00:00
|
|
|
{
|
1999-11-03 07:11:45 +00:00
|
|
|
//Hold onto old target content through the event and reset after.
|
|
|
|
nsCOMPtr<nsIContent> targetBeforeEvent = mCurrentTargetContent;
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
switch(aEvent->message) {
|
|
|
|
case NS_MOUSE_MOVE:
|
|
|
|
{
|
2000-02-11 01:24:59 +00:00
|
|
|
nsCOMPtr<nsIContent> targetContent;
|
|
|
|
if (mCurrentTarget) {
|
|
|
|
mCurrentTarget->GetContentForEvent(aPresContext, aEvent, getter_AddRefs(targetContent));
|
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
|
2000-02-11 01:24:59 +00:00
|
|
|
if (mLastMouseOverContent.get() != targetContent.get()) {
|
1998-11-18 05:25:26 +00:00
|
|
|
|
1999-11-02 03:55:14 +00:00
|
|
|
if (mLastMouseOverFrame) {
|
1998-11-18 05:25:26 +00:00
|
|
|
//fire mouseout
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsMouseEvent event;
|
|
|
|
event.eventStructType = NS_MOUSE_EVENT;
|
|
|
|
event.message = NS_MOUSE_EXIT;
|
1999-07-01 04:12:42 +00:00
|
|
|
event.widget = aEvent->widget;
|
|
|
|
event.clickCount = 0;
|
|
|
|
event.point = aEvent->point;
|
|
|
|
event.refPoint = aEvent->refPoint;
|
1999-12-09 21:02:09 +00:00
|
|
|
event.isShift = ((nsMouseEvent*)aEvent)->isShift;
|
|
|
|
event.isControl = ((nsMouseEvent*)aEvent)->isControl;
|
|
|
|
event.isAlt = ((nsMouseEvent*)aEvent)->isAlt;
|
|
|
|
event.isMeta = ((nsMouseEvent*)aEvent)->isMeta;
|
1998-11-18 05:25:26 +00:00
|
|
|
|
2000-02-11 01:24:59 +00:00
|
|
|
mCurrentTargetContent = mLastMouseOverContent;
|
1999-11-03 07:11:45 +00:00
|
|
|
NS_IF_ADDREF(mCurrentTargetContent);
|
|
|
|
mCurrentRelatedContent = targetContent;
|
|
|
|
NS_IF_ADDREF(mCurrentRelatedContent);
|
|
|
|
|
2000-02-11 01:24:59 +00:00
|
|
|
//XXX This event should still go somewhere!!
|
|
|
|
if (nsnull != mLastMouseOverContent) {
|
|
|
|
mLastMouseOverContent->HandleDOMEvent(aPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//Now dispatch to the frame
|
1999-11-02 03:55:14 +00:00
|
|
|
if (mLastMouseOverFrame) {
|
1999-01-28 23:14:36 +00:00
|
|
|
//XXX Get the new frame
|
1999-11-24 06:03:41 +00:00
|
|
|
mLastMouseOverFrame->HandleEvent(aPresContext, &event, &status);
|
1999-01-28 23:14:36 +00:00
|
|
|
}
|
1999-11-03 07:11:45 +00:00
|
|
|
|
|
|
|
NS_IF_RELEASE(mCurrentTargetContent);
|
|
|
|
NS_IF_RELEASE(mCurrentRelatedContent);
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//fire mouseover
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsMouseEvent event;
|
|
|
|
event.eventStructType = NS_MOUSE_EVENT;
|
|
|
|
event.message = NS_MOUSE_ENTER;
|
1999-07-01 04:12:42 +00:00
|
|
|
event.widget = aEvent->widget;
|
|
|
|
event.clickCount = 0;
|
|
|
|
event.point = aEvent->point;
|
|
|
|
event.refPoint = aEvent->refPoint;
|
1999-12-09 21:02:09 +00:00
|
|
|
event.isShift = ((nsMouseEvent*)aEvent)->isShift;
|
|
|
|
event.isControl = ((nsMouseEvent*)aEvent)->isControl;
|
|
|
|
event.isAlt = ((nsMouseEvent*)aEvent)->isAlt;
|
|
|
|
event.isMeta = ((nsMouseEvent*)aEvent)->isMeta;
|
1998-11-18 05:25:26 +00:00
|
|
|
|
1999-11-03 07:11:45 +00:00
|
|
|
mCurrentTargetContent = targetContent;
|
|
|
|
NS_IF_ADDREF(mCurrentTargetContent);
|
2000-02-11 01:24:59 +00:00
|
|
|
mCurrentRelatedContent = mLastMouseOverContent;
|
1999-11-03 07:11:45 +00:00
|
|
|
NS_IF_ADDREF(mCurrentRelatedContent);
|
|
|
|
|
2000-02-11 01:24:59 +00:00
|
|
|
//XXX This event should still go somewhere!!
|
|
|
|
if (targetContent) {
|
|
|
|
targetContent->HandleDOMEvent(aPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nsEventStatus_eConsumeNoDefault != status) {
|
|
|
|
SetContentState(targetContent, NS_EVENT_STATE_HOVER);
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//Now dispatch to the frame
|
1999-11-02 03:55:14 +00:00
|
|
|
if (mCurrentTarget) {
|
1999-01-28 23:14:36 +00:00
|
|
|
//XXX Get the new frame
|
1999-11-24 06:03:41 +00:00
|
|
|
mCurrentTarget->HandleEvent(aPresContext, &event, &status);
|
1998-12-02 02:14:58 +00:00
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
|
1999-11-03 07:11:45 +00:00
|
|
|
NS_IF_RELEASE(mCurrentTargetContent);
|
|
|
|
NS_IF_RELEASE(mCurrentRelatedContent);
|
1998-12-02 02:14:58 +00:00
|
|
|
mLastMouseOverFrame = mCurrentTarget;
|
2000-02-11 01:24:59 +00:00
|
|
|
mLastMouseOverContent = targetContent;
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_MOUSE_EXIT:
|
|
|
|
{
|
1999-11-03 07:11:45 +00:00
|
|
|
//This is actually the window mouse exit event.
|
1998-11-18 05:25:26 +00:00
|
|
|
if (nsnull != mLastMouseOverFrame) {
|
|
|
|
//fire mouseout
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsMouseEvent event;
|
|
|
|
event.eventStructType = NS_MOUSE_EVENT;
|
|
|
|
event.message = NS_MOUSE_EXIT;
|
1999-07-01 04:12:42 +00:00
|
|
|
event.widget = aEvent->widget;
|
|
|
|
event.clickCount = 0;
|
|
|
|
event.point = aEvent->point;
|
|
|
|
event.refPoint = aEvent->refPoint;
|
1999-12-09 21:02:09 +00:00
|
|
|
event.isShift = ((nsMouseEvent*)aEvent)->isShift;
|
|
|
|
event.isControl = ((nsMouseEvent*)aEvent)->isControl;
|
|
|
|
event.isAlt = ((nsMouseEvent*)aEvent)->isAlt;
|
|
|
|
event.isMeta = ((nsMouseEvent*)aEvent)->isMeta;
|
1998-11-18 05:25:26 +00:00
|
|
|
|
2000-02-11 01:24:59 +00:00
|
|
|
mCurrentTargetContent = mLastMouseOverContent;
|
1999-11-03 07:11:45 +00:00
|
|
|
NS_IF_ADDREF(mCurrentTargetContent);
|
|
|
|
mCurrentRelatedContent = nsnull;
|
|
|
|
|
2000-02-11 01:24:59 +00:00
|
|
|
if (mLastMouseOverContent) {
|
|
|
|
mLastMouseOverContent->HandleDOMEvent(aPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
1999-06-22 14:20:14 +00:00
|
|
|
|
|
|
|
if (nsEventStatus_eConsumeNoDefault != status) {
|
|
|
|
SetContentState(nsnull, NS_EVENT_STATE_HOVER);
|
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
|
1999-06-22 14:20:14 +00:00
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
//Now dispatch to the frame
|
1999-01-28 23:14:36 +00:00
|
|
|
if (nsnull != mLastMouseOverFrame) {
|
|
|
|
//XXX Get the new frame
|
1999-11-24 06:03:41 +00:00
|
|
|
mLastMouseOverFrame->HandleEvent(aPresContext, &event, &status);
|
1999-06-22 14:20:14 +00:00
|
|
|
mLastMouseOverFrame = nsnull;
|
2000-02-11 01:24:59 +00:00
|
|
|
mLastMouseOverContent = nsnull;
|
1999-01-28 23:14:36 +00:00
|
|
|
}
|
1999-11-03 07:11:45 +00:00
|
|
|
|
|
|
|
NS_IF_RELEASE(mCurrentTargetContent);
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
1999-11-03 07:11:45 +00:00
|
|
|
|
|
|
|
//reset mCurretTargetContent to what it was
|
|
|
|
mCurrentTargetContent = targetBeforeEvent;
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
|
1999-05-04 14:44:51 +00:00
|
|
|
void
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStateManager::GenerateDragDropEnterExit(nsIPresContext* aPresContext, nsGUIEvent* aEvent)
|
1999-05-04 14:44:51 +00:00
|
|
|
{
|
1999-11-03 07:11:45 +00:00
|
|
|
//Hold onto old target content through the event and reset after.
|
|
|
|
nsCOMPtr<nsIContent> targetBeforeEvent = mCurrentTargetContent;
|
|
|
|
|
1999-05-04 14:44:51 +00:00
|
|
|
switch(aEvent->message) {
|
|
|
|
case NS_DRAGDROP_OVER:
|
|
|
|
{
|
|
|
|
if (mLastDragOverFrame != mCurrentTarget) {
|
|
|
|
//We'll need the content, too, to check if it changed separately from the frames.
|
1999-11-02 03:55:14 +00:00
|
|
|
nsCOMPtr<nsIContent> lastContent;
|
|
|
|
nsCOMPtr<nsIContent> targetContent;
|
2000-02-11 01:24:59 +00:00
|
|
|
mCurrentTarget->GetContentForEvent(aPresContext, aEvent, getter_AddRefs(targetContent));
|
1999-05-04 14:44:51 +00:00
|
|
|
|
1999-09-09 00:28:23 +00:00
|
|
|
if ( mLastDragOverFrame ) {
|
|
|
|
//fire drag exit
|
1999-05-04 14:44:51 +00:00
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsMouseEvent event;
|
|
|
|
event.eventStructType = NS_DRAGDROP_EVENT;
|
|
|
|
event.message = NS_DRAGDROP_EXIT;
|
1999-07-01 04:12:42 +00:00
|
|
|
event.widget = aEvent->widget;
|
|
|
|
event.clickCount = 0;
|
|
|
|
event.point = aEvent->point;
|
|
|
|
event.refPoint = aEvent->refPoint;
|
1999-12-09 21:02:09 +00:00
|
|
|
event.isShift = ((nsMouseEvent*)aEvent)->isShift;
|
|
|
|
event.isControl = ((nsMouseEvent*)aEvent)->isControl;
|
|
|
|
event.isAlt = ((nsMouseEvent*)aEvent)->isAlt;
|
|
|
|
event.isMeta = ((nsMouseEvent*)aEvent)->isMeta;
|
1999-05-04 14:44:51 +00:00
|
|
|
|
|
|
|
//The frame has change but the content may not have. Check before dispatching to content
|
2000-02-11 01:24:59 +00:00
|
|
|
mLastDragOverFrame->GetContentForEvent(aPresContext, aEvent, getter_AddRefs(lastContent));
|
1999-05-04 14:44:51 +00:00
|
|
|
|
1999-11-03 07:11:45 +00:00
|
|
|
mCurrentTargetContent = lastContent;
|
|
|
|
NS_IF_ADDREF(mCurrentTargetContent);
|
|
|
|
mCurrentRelatedContent = targetContent;
|
|
|
|
NS_IF_ADDREF(mCurrentRelatedContent);
|
|
|
|
|
1999-11-02 03:55:14 +00:00
|
|
|
if ( lastContent != targetContent ) {
|
1999-05-04 14:44:51 +00:00
|
|
|
//XXX This event should still go somewhere!!
|
1999-09-09 00:28:23 +00:00
|
|
|
if (lastContent)
|
1999-11-24 06:03:41 +00:00
|
|
|
lastContent->HandleDOMEvent(aPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
1999-05-04 14:44:51 +00:00
|
|
|
|
1999-11-02 03:55:14 +00:00
|
|
|
// clear the drag hover
|
|
|
|
if (status != nsEventStatus_eConsumeNoDefault )
|
|
|
|
SetContentState(nsnull, NS_EVENT_STATE_DRAGOVER);
|
1999-05-04 14:44:51 +00:00
|
|
|
}
|
1999-11-02 03:55:14 +00:00
|
|
|
|
|
|
|
// Finally dispatch exit to the frame
|
1999-11-03 07:11:45 +00:00
|
|
|
if ( mLastDragOverFrame ) {
|
1999-11-24 06:03:41 +00:00
|
|
|
mLastDragOverFrame->HandleEvent(aPresContext, &event, &status);
|
1999-11-03 07:11:45 +00:00
|
|
|
|
|
|
|
NS_IF_RELEASE(mCurrentTargetContent);
|
|
|
|
NS_IF_RELEASE(mCurrentRelatedContent);
|
|
|
|
|
|
|
|
}
|
1999-05-04 14:44:51 +00:00
|
|
|
}
|
|
|
|
|
1999-09-09 00:28:23 +00:00
|
|
|
//fire drag enter
|
1999-05-04 14:44:51 +00:00
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsMouseEvent event;
|
|
|
|
event.eventStructType = NS_DRAGDROP_EVENT;
|
|
|
|
event.message = NS_DRAGDROP_ENTER;
|
1999-07-01 04:12:42 +00:00
|
|
|
event.widget = aEvent->widget;
|
|
|
|
event.clickCount = 0;
|
|
|
|
event.point = aEvent->point;
|
|
|
|
event.refPoint = aEvent->refPoint;
|
1999-12-09 21:02:09 +00:00
|
|
|
event.isShift = ((nsMouseEvent*)aEvent)->isShift;
|
|
|
|
event.isControl = ((nsMouseEvent*)aEvent)->isControl;
|
|
|
|
event.isAlt = ((nsMouseEvent*)aEvent)->isAlt;
|
|
|
|
event.isMeta = ((nsMouseEvent*)aEvent)->isMeta;
|
1999-05-04 14:44:51 +00:00
|
|
|
|
1999-11-03 07:11:45 +00:00
|
|
|
mCurrentTargetContent = targetContent;
|
|
|
|
NS_IF_ADDREF(mCurrentTargetContent);
|
|
|
|
mCurrentRelatedContent = lastContent;
|
|
|
|
NS_IF_ADDREF(mCurrentRelatedContent);
|
|
|
|
|
1999-05-04 14:44:51 +00:00
|
|
|
//The frame has change but the content may not have. Check before dispatching to content
|
1999-11-02 03:55:14 +00:00
|
|
|
if ( lastContent != targetContent ) {
|
1999-05-04 14:44:51 +00:00
|
|
|
//XXX This event should still go somewhere!!
|
1999-09-09 00:28:23 +00:00
|
|
|
if ( targetContent )
|
1999-11-24 06:03:41 +00:00
|
|
|
targetContent->HandleDOMEvent(aPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
1999-05-04 14:44:51 +00:00
|
|
|
|
1999-11-02 03:55:14 +00:00
|
|
|
// set drag hover on this frame
|
|
|
|
if ( status != nsEventStatus_eConsumeNoDefault )
|
1999-05-04 14:44:51 +00:00
|
|
|
SetContentState(targetContent, NS_EVENT_STATE_DRAGOVER);
|
|
|
|
}
|
|
|
|
|
1999-11-02 03:55:14 +00:00
|
|
|
// Finally dispatch to the frame
|
1999-09-09 00:28:23 +00:00
|
|
|
if (mCurrentTarget) {
|
1999-05-04 14:44:51 +00:00
|
|
|
//XXX Get the new frame
|
1999-11-24 06:03:41 +00:00
|
|
|
mCurrentTarget->HandleEvent(aPresContext, &event, &status);
|
1999-05-04 14:44:51 +00:00
|
|
|
}
|
|
|
|
|
1999-11-03 07:11:45 +00:00
|
|
|
NS_IF_RELEASE(mCurrentTargetContent);
|
|
|
|
NS_IF_RELEASE(mCurrentRelatedContent);
|
1999-05-04 14:44:51 +00:00
|
|
|
mLastDragOverFrame = mCurrentTarget;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
1999-11-02 03:55:14 +00:00
|
|
|
|
1999-06-22 14:20:14 +00:00
|
|
|
case NS_DRAGDROP_DROP:
|
|
|
|
case NS_DRAGDROP_EXIT:
|
1999-05-04 14:44:51 +00:00
|
|
|
{
|
1999-11-03 07:11:45 +00:00
|
|
|
//This is actually the window mouse exit event.
|
1999-11-02 03:55:14 +00:00
|
|
|
if ( mLastDragOverFrame ) {
|
|
|
|
|
|
|
|
// fire mouseout
|
1999-05-04 14:44:51 +00:00
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsMouseEvent event;
|
|
|
|
event.eventStructType = NS_DRAGDROP_EVENT;
|
|
|
|
event.message = NS_DRAGDROP_EXIT;
|
1999-07-01 04:12:42 +00:00
|
|
|
event.widget = aEvent->widget;
|
|
|
|
event.clickCount = 0;
|
|
|
|
event.point = aEvent->point;
|
|
|
|
event.refPoint = aEvent->refPoint;
|
1999-12-09 21:02:09 +00:00
|
|
|
event.isShift = ((nsMouseEvent*)aEvent)->isShift;
|
|
|
|
event.isControl = ((nsMouseEvent*)aEvent)->isControl;
|
|
|
|
event.isAlt = ((nsMouseEvent*)aEvent)->isAlt;
|
|
|
|
event.isMeta = ((nsMouseEvent*)aEvent)->isMeta;
|
1999-05-04 14:44:51 +00:00
|
|
|
|
1999-11-02 03:55:14 +00:00
|
|
|
// dispatch to content via DOM
|
|
|
|
nsCOMPtr<nsIContent> lastContent;
|
2000-02-11 01:24:59 +00:00
|
|
|
mLastDragOverFrame->GetContentForEvent(aPresContext, aEvent, getter_AddRefs(lastContent));
|
1999-11-03 07:11:45 +00:00
|
|
|
|
|
|
|
mCurrentTargetContent = lastContent;
|
|
|
|
NS_IF_ADDREF(mCurrentTargetContent);
|
|
|
|
mCurrentRelatedContent = nsnull;
|
|
|
|
|
1999-11-02 03:55:14 +00:00
|
|
|
if ( lastContent ) {
|
1999-11-24 06:03:41 +00:00
|
|
|
lastContent->HandleDOMEvent(aPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
1999-11-02 03:55:14 +00:00
|
|
|
if ( status != nsEventStatus_eConsumeNoDefault )
|
1999-06-22 14:20:14 +00:00
|
|
|
SetContentState(nsnull, NS_EVENT_STATE_DRAGOVER);
|
1999-05-04 14:44:51 +00:00
|
|
|
}
|
|
|
|
|
1999-11-02 03:55:14 +00:00
|
|
|
// Finally dispatch to the frame
|
|
|
|
if ( mLastDragOverFrame ) {
|
1999-05-04 14:44:51 +00:00
|
|
|
//XXX Get the new frame
|
1999-11-24 06:03:41 +00:00
|
|
|
mLastDragOverFrame->HandleEvent(aPresContext, &event, &status);
|
1999-06-22 14:20:14 +00:00
|
|
|
mLastDragOverFrame = nsnull;
|
1999-05-04 14:44:51 +00:00
|
|
|
}
|
1999-11-03 07:11:45 +00:00
|
|
|
|
|
|
|
NS_IF_RELEASE(mCurrentTargetContent);
|
|
|
|
}
|
1999-05-04 14:44:51 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
1999-11-03 07:11:45 +00:00
|
|
|
|
|
|
|
//reset mCurretTargetContent to what it was
|
|
|
|
mCurrentTargetContent = targetBeforeEvent;
|
1999-05-04 14:44:51 +00:00
|
|
|
}
|
|
|
|
|
1998-11-24 07:46:58 +00:00
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStateManager::SetClickCount(nsIPresContext* aPresContext,
|
1999-09-22 02:29:33 +00:00
|
|
|
nsMouseEvent *aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aStatus)
|
1998-11-24 07:46:58 +00:00
|
|
|
{
|
1999-03-11 05:56:11 +00:00
|
|
|
nsresult ret = NS_OK;
|
1999-09-16 14:54:59 +00:00
|
|
|
nsCOMPtr<nsIContent> mouseContent;
|
1998-11-24 07:46:58 +00:00
|
|
|
|
2000-02-11 01:24:59 +00:00
|
|
|
mCurrentTarget->GetContentForEvent(aPresContext, aEvent, getter_AddRefs(mouseContent));
|
1999-03-28 22:22:54 +00:00
|
|
|
|
1998-11-24 07:46:58 +00:00
|
|
|
switch (aEvent->message) {
|
|
|
|
case NS_MOUSE_LEFT_BUTTON_DOWN:
|
1999-09-16 14:54:59 +00:00
|
|
|
NS_IF_RELEASE(mLastLeftMouseDownContent);
|
1999-03-28 22:22:54 +00:00
|
|
|
mLastLeftMouseDownContent = mouseContent;
|
|
|
|
NS_IF_ADDREF(mLastLeftMouseDownContent);
|
1998-11-24 07:46:58 +00:00
|
|
|
break;
|
1999-09-16 14:54:59 +00:00
|
|
|
|
1998-11-24 07:46:58 +00:00
|
|
|
case NS_MOUSE_LEFT_BUTTON_UP:
|
1999-09-16 14:54:59 +00:00
|
|
|
if (mLastLeftMouseDownContent == mouseContent.get()) {
|
1999-09-22 02:29:33 +00:00
|
|
|
aEvent->clickCount = mLClickCount;
|
|
|
|
mLClickCount = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aEvent->clickCount = 0;
|
1998-11-24 07:46:58 +00:00
|
|
|
}
|
1999-03-28 22:22:54 +00:00
|
|
|
NS_IF_RELEASE(mLastLeftMouseDownContent);
|
1998-11-24 07:46:58 +00:00
|
|
|
break;
|
1999-09-16 14:54:59 +00:00
|
|
|
|
1998-11-24 07:46:58 +00:00
|
|
|
case NS_MOUSE_MIDDLE_BUTTON_DOWN:
|
1999-09-16 14:54:59 +00:00
|
|
|
NS_IF_RELEASE(mLastMiddleMouseDownContent);
|
1999-03-28 22:22:54 +00:00
|
|
|
mLastMiddleMouseDownContent = mouseContent;
|
|
|
|
NS_IF_ADDREF(mLastMiddleMouseDownContent);
|
1998-11-24 07:46:58 +00:00
|
|
|
break;
|
1999-09-16 14:54:59 +00:00
|
|
|
|
1998-11-24 07:46:58 +00:00
|
|
|
case NS_MOUSE_MIDDLE_BUTTON_UP:
|
1999-09-16 14:54:59 +00:00
|
|
|
if (mLastMiddleMouseDownContent == mouseContent.get()) {
|
1999-09-22 02:29:33 +00:00
|
|
|
aEvent->clickCount = mMClickCount;
|
|
|
|
mMClickCount = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aEvent->clickCount = 0;
|
1998-11-24 07:46:58 +00:00
|
|
|
}
|
1999-03-28 22:22:54 +00:00
|
|
|
NS_IF_RELEASE(mLastMiddleMouseDownContent);
|
1998-11-24 07:46:58 +00:00
|
|
|
break;
|
1999-09-16 14:54:59 +00:00
|
|
|
|
1998-11-24 07:46:58 +00:00
|
|
|
case NS_MOUSE_RIGHT_BUTTON_DOWN:
|
1999-09-16 14:54:59 +00:00
|
|
|
NS_IF_RELEASE(mLastRightMouseDownContent);
|
1999-03-28 22:22:54 +00:00
|
|
|
mLastRightMouseDownContent = mouseContent;
|
|
|
|
NS_IF_ADDREF(mLastRightMouseDownContent);
|
1998-11-24 07:46:58 +00:00
|
|
|
break;
|
1999-09-16 14:54:59 +00:00
|
|
|
|
1998-11-24 07:46:58 +00:00
|
|
|
case NS_MOUSE_RIGHT_BUTTON_UP:
|
1999-09-16 14:54:59 +00:00
|
|
|
if (mLastRightMouseDownContent == mouseContent.get()) {
|
1999-09-22 02:29:33 +00:00
|
|
|
aEvent->clickCount = mRClickCount;
|
|
|
|
mRClickCount = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aEvent->clickCount = 0;
|
1998-11-24 07:46:58 +00:00
|
|
|
}
|
1999-03-28 22:22:54 +00:00
|
|
|
NS_IF_RELEASE(mLastRightMouseDownContent);
|
1998-11-24 07:46:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-09-22 02:29:33 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStateManager::CheckForAndDispatchClick(nsIPresContext* aPresContext,
|
1999-09-22 02:29:33 +00:00
|
|
|
nsMouseEvent *aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aStatus)
|
1999-09-22 02:29:33 +00:00
|
|
|
{
|
|
|
|
nsresult ret = NS_OK;
|
|
|
|
nsMouseEvent event;
|
|
|
|
nsCOMPtr<nsIContent> mouseContent;
|
|
|
|
|
2000-02-11 01:24:59 +00:00
|
|
|
mCurrentTarget->GetContentForEvent(aPresContext, aEvent, getter_AddRefs(mouseContent));
|
1999-09-22 02:29:33 +00:00
|
|
|
|
|
|
|
//If mouse is still over same element, clickcount will be > 1.
|
|
|
|
//If it has moved it will be zero, so no click.
|
|
|
|
if (0 != aEvent->clickCount) {
|
1998-11-24 07:46:58 +00:00
|
|
|
//fire click
|
1999-09-22 02:29:33 +00:00
|
|
|
switch (aEvent->message) {
|
|
|
|
case NS_MOUSE_LEFT_BUTTON_UP:
|
|
|
|
event.message = NS_MOUSE_LEFT_CLICK;
|
|
|
|
break;
|
|
|
|
case NS_MOUSE_MIDDLE_BUTTON_UP:
|
|
|
|
event.message = NS_MOUSE_MIDDLE_CLICK;
|
|
|
|
break;
|
|
|
|
case NS_MOUSE_RIGHT_BUTTON_UP:
|
|
|
|
event.message = NS_MOUSE_RIGHT_CLICK;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1998-11-24 07:46:58 +00:00
|
|
|
event.eventStructType = NS_MOUSE_EVENT;
|
1999-06-09 07:38:26 +00:00
|
|
|
event.widget = aEvent->widget;
|
2000-01-15 17:21:20 +00:00
|
|
|
event.point = aEvent->point;
|
|
|
|
event.refPoint = aEvent->refPoint;
|
1999-09-22 02:29:33 +00:00
|
|
|
event.clickCount = aEvent->clickCount;
|
1999-12-09 21:02:09 +00:00
|
|
|
event.isShift = aEvent->isShift;
|
|
|
|
event.isControl = aEvent->isControl;
|
|
|
|
event.isAlt = aEvent->isAlt;
|
|
|
|
event.isMeta = aEvent->isMeta;
|
1998-11-24 07:46:58 +00:00
|
|
|
|
1999-09-16 14:54:59 +00:00
|
|
|
if (mouseContent) {
|
|
|
|
ret = mouseContent->HandleDOMEvent(aPresContext, &event, nsnull,
|
|
|
|
NS_EVENT_FLAG_INIT, aStatus);
|
2000-02-04 03:06:16 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(ret), "HandleDOMEvent failed");
|
1998-11-24 07:46:58 +00:00
|
|
|
}
|
1999-04-13 00:27:58 +00:00
|
|
|
|
|
|
|
if (nsnull != mCurrentTarget) {
|
|
|
|
ret = mCurrentTarget->HandleEvent(aPresContext, &event, aStatus);
|
|
|
|
}
|
1998-11-24 07:46:58 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1999-03-02 19:19:24 +00:00
|
|
|
PRBool
|
1999-12-08 04:54:29 +00:00
|
|
|
nsEventStateManager::ChangeFocus(nsIContent* aFocusContent, nsIFrame* aTargetFrame, PRBool aSetFocus)
|
1999-03-02 19:19:24 +00:00
|
|
|
{
|
1999-11-13 05:16:33 +00:00
|
|
|
nsCOMPtr<nsIFocusableContent> focusChange = do_QueryInterface(aFocusContent);
|
1999-08-24 00:42:38 +00:00
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
if (aTargetFrame) {
|
1999-11-13 05:16:33 +00:00
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
PRBool suppressBlurAndFocus = PR_FALSE;
|
1999-11-13 05:16:33 +00:00
|
|
|
nsCOMPtr<nsIStyleContext> context;
|
1999-12-08 04:54:29 +00:00
|
|
|
aTargetFrame->GetStyleContext(getter_AddRefs(context));
|
1999-11-13 05:16:33 +00:00
|
|
|
|
|
|
|
const nsStyleUserInterface* styleStruct = (const nsStyleUserInterface*)context->GetStyleData(eStyleStruct_UserInterface);
|
|
|
|
if (NS_STYLE_USER_FOCUS_IGNORE == styleStruct->mUserFocus) {
|
|
|
|
// we want to surpress the blur and the following focus
|
1999-12-08 04:54:29 +00:00
|
|
|
suppressBlurAndFocus = PR_TRUE;
|
1999-11-13 05:16:33 +00:00
|
|
|
}
|
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
if(!suppressBlurAndFocus) {
|
|
|
|
|
|
|
|
if (focusChange) {
|
|
|
|
focusChange->SetFocus(mPresContext);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SendFocusBlur(mPresContext, nsnull);
|
|
|
|
}
|
1999-11-13 05:16:33 +00:00
|
|
|
}
|
1999-12-08 04:54:29 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
printf("OH MY GOD!\n");
|
1999-03-02 19:19:24 +00:00
|
|
|
}
|
1999-12-08 04:54:29 +00:00
|
|
|
|
1999-03-02 19:19:24 +00:00
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
void
|
1999-03-02 19:19:24 +00:00
|
|
|
nsEventStateManager::ShiftFocus(PRBool forward)
|
1998-11-18 05:25:26 +00:00
|
|
|
{
|
1999-04-12 21:24:07 +00:00
|
|
|
PRBool topOfDoc = PR_FALSE;
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
if (nsnull == mPresContext) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nsnull == mCurrentFocus) {
|
|
|
|
if (nsnull == mDocument) {
|
1999-02-12 17:45:58 +00:00
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
mPresContext->GetShell(getter_AddRefs(presShell));
|
1999-02-12 18:41:26 +00:00
|
|
|
if (presShell) {
|
1999-02-12 17:45:58 +00:00
|
|
|
presShell->GetDocument(&mDocument);
|
1998-11-18 05:25:26 +00:00
|
|
|
if (nsnull == mDocument) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mCurrentFocus = mDocument->GetRootContent();
|
|
|
|
if (nsnull == mCurrentFocus) {
|
|
|
|
return;
|
|
|
|
}
|
1999-03-02 19:19:24 +00:00
|
|
|
mCurrentTabIndex = forward ? 1 : 0;
|
1999-04-12 21:24:07 +00:00
|
|
|
topOfDoc = PR_TRUE;
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
|
1999-03-02 19:19:24 +00:00
|
|
|
nsIContent* next = GetNextTabbableContent(mCurrentFocus, nsnull, mCurrentFocus, forward);
|
1998-11-18 05:25:26 +00:00
|
|
|
|
|
|
|
if (nsnull == next) {
|
1999-04-12 21:24:07 +00:00
|
|
|
PRBool focusTaken = PR_FALSE;
|
|
|
|
|
1999-07-19 21:23:57 +00:00
|
|
|
SetContentState(nsnull, NS_EVENT_STATE_FOCUS);
|
1999-03-02 19:19:24 +00:00
|
|
|
|
2000-02-11 01:56:01 +00:00
|
|
|
nsCOMPtr<nsISupports> container;
|
|
|
|
mPresContext->GetContainer(getter_AddRefs(container));
|
|
|
|
nsCOMPtr<nsIBaseWindow> docShellAsWin(do_QueryInterface(container));
|
|
|
|
if (docShellAsWin) {
|
|
|
|
docShellAsWin->FocusAvailable(docShellAsWin, &focusTaken);
|
1999-03-02 19:19:24 +00:00
|
|
|
}
|
2000-02-11 01:56:01 +00:00
|
|
|
|
1999-04-12 21:24:07 +00:00
|
|
|
if (!focusTaken && !topOfDoc) {
|
|
|
|
ShiftFocus(forward);
|
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-12-21 19:35:13 +00:00
|
|
|
// Now we need to get the content node's frame and reset
|
|
|
|
// the mCurrentTarget target. Otherwise the focus
|
|
|
|
// code will be slightly out of sync (with regards to
|
|
|
|
// focusing widgets within the current target).
|
|
|
|
nsCOMPtr<nsIPresShell> shell;
|
|
|
|
if (mPresContext) {
|
|
|
|
nsresult rv = mPresContext->GetShell(getter_AddRefs(shell));
|
|
|
|
if (NS_SUCCEEDED(rv) && shell){
|
|
|
|
shell->GetPrimaryFrameFor(next, &mCurrentTarget);
|
|
|
|
}
|
|
|
|
}
|
1999-11-13 05:16:33 +00:00
|
|
|
ChangeFocus(next, mCurrentTarget, PR_TRUE);
|
1998-11-18 05:25:26 +00:00
|
|
|
|
|
|
|
NS_IF_RELEASE(mCurrentFocus);
|
|
|
|
mCurrentFocus = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* At some point this will need to be linked into HTML 4.0 tabindex
|
|
|
|
*/
|
|
|
|
nsIContent*
|
1999-03-02 19:19:24 +00:00
|
|
|
nsEventStateManager::GetNextTabbableContent(nsIContent* aParent, nsIContent* aChild, nsIContent* aTop, PRBool forward)
|
1998-11-18 05:25:26 +00:00
|
|
|
{
|
|
|
|
PRInt32 count, index;
|
|
|
|
aParent->ChildCount(count);
|
|
|
|
|
|
|
|
if (nsnull != aChild) {
|
|
|
|
aParent->IndexOf(aChild, index);
|
1999-03-02 19:19:24 +00:00
|
|
|
index += forward ? 1 : -1;
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
else {
|
1999-07-19 21:23:57 +00:00
|
|
|
index = forward ? 0 : count-1;
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
|
1999-03-02 19:19:24 +00:00
|
|
|
for (;index < count && index >= 0;index += forward ? 1 : -1) {
|
1998-11-18 05:25:26 +00:00
|
|
|
nsIContent* child;
|
1999-03-02 19:19:24 +00:00
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
aParent->ChildAt(index, child);
|
1999-03-02 19:19:24 +00:00
|
|
|
nsIContent* content = GetNextTabbableContent(child, nsnull, aTop, forward);
|
1998-11-18 05:25:26 +00:00
|
|
|
if (content != nsnull) {
|
|
|
|
NS_IF_RELEASE(child);
|
|
|
|
return content;
|
|
|
|
}
|
|
|
|
if (nsnull != child) {
|
2000-01-12 06:54:58 +00:00
|
|
|
nsCOMPtr<nsIAtom> tag;
|
1999-03-02 19:19:24 +00:00
|
|
|
PRInt32 tabIndex = -1;
|
1998-11-18 05:25:26 +00:00
|
|
|
PRBool disabled = PR_TRUE;
|
1999-01-28 23:14:36 +00:00
|
|
|
PRBool hidden = PR_FALSE;
|
1998-11-18 05:25:26 +00:00
|
|
|
|
2000-01-12 06:54:58 +00:00
|
|
|
child->GetTag(*getter_AddRefs(tag));
|
2000-01-12 07:39:00 +00:00
|
|
|
if (nsHTMLAtoms::input==tag.get()) {
|
1998-11-18 05:25:26 +00:00
|
|
|
nsIDOMHTMLInputElement *nextInput;
|
2000-02-05 00:58:29 +00:00
|
|
|
if (NS_OK == child->QueryInterface(NS_GET_IID(nsIDOMHTMLInputElement),
|
|
|
|
(void **)&nextInput)) {
|
1998-11-18 05:25:26 +00:00
|
|
|
nextInput->GetDisabled(&disabled);
|
1999-03-02 19:19:24 +00:00
|
|
|
nextInput->GetTabIndex(&tabIndex);
|
1999-01-28 23:14:36 +00:00
|
|
|
|
|
|
|
nsAutoString type;
|
|
|
|
nextInput->GetType(type);
|
|
|
|
if (type.EqualsIgnoreCase("hidden")) {
|
|
|
|
hidden = PR_TRUE;
|
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_RELEASE(nextInput);
|
|
|
|
}
|
|
|
|
}
|
2000-01-12 07:39:00 +00:00
|
|
|
else if (nsHTMLAtoms::select==tag.get()) {
|
1998-11-18 05:25:26 +00:00
|
|
|
nsIDOMHTMLSelectElement *nextSelect;
|
2000-02-05 00:58:29 +00:00
|
|
|
if (NS_OK == child->QueryInterface(NS_GET_IID(nsIDOMHTMLSelectElement),
|
|
|
|
(void **)&nextSelect)) {
|
1998-11-18 05:25:26 +00:00
|
|
|
nextSelect->GetDisabled(&disabled);
|
1999-03-02 19:19:24 +00:00
|
|
|
nextSelect->GetTabIndex(&tabIndex);
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_RELEASE(nextSelect);
|
|
|
|
}
|
|
|
|
}
|
2000-01-12 07:39:00 +00:00
|
|
|
else if (nsHTMLAtoms::textarea==tag.get()) {
|
1998-11-18 05:25:26 +00:00
|
|
|
nsIDOMHTMLTextAreaElement *nextTextArea;
|
2000-02-05 00:58:29 +00:00
|
|
|
if (NS_OK == child->QueryInterface(NS_GET_IID(nsIDOMHTMLTextAreaElement),(void **)&nextTextArea)) {
|
1998-11-18 05:25:26 +00:00
|
|
|
nextTextArea->GetDisabled(&disabled);
|
1999-03-02 19:19:24 +00:00
|
|
|
nextTextArea->GetTabIndex(&tabIndex);
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_RELEASE(nextTextArea);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2000-01-12 07:39:00 +00:00
|
|
|
else if(nsHTMLAtoms::a==tag.get()) {
|
1999-03-02 19:19:24 +00:00
|
|
|
nsIDOMHTMLAnchorElement *nextAnchor;
|
2000-02-05 00:58:29 +00:00
|
|
|
if (NS_OK == child->QueryInterface(NS_GET_IID(nsIDOMHTMLAnchorElement),
|
|
|
|
(void **)&nextAnchor)) {
|
1999-03-02 19:19:24 +00:00
|
|
|
nextAnchor->GetTabIndex(&tabIndex);
|
|
|
|
NS_RELEASE(nextAnchor);
|
|
|
|
}
|
|
|
|
disabled = PR_FALSE;
|
|
|
|
}
|
2000-01-12 07:39:00 +00:00
|
|
|
else if(nsHTMLAtoms::button==tag.get()) {
|
1999-03-02 19:19:24 +00:00
|
|
|
nsIDOMHTMLButtonElement *nextButton;
|
2000-02-05 00:58:29 +00:00
|
|
|
if (NS_OK == child->QueryInterface(NS_GET_IID(nsIDOMHTMLButtonElement),
|
|
|
|
(void **)&nextButton)) {
|
1999-03-02 19:19:24 +00:00
|
|
|
nextButton->GetTabIndex(&tabIndex);
|
|
|
|
nextButton->GetDisabled(&disabled);
|
|
|
|
NS_RELEASE(nextButton);
|
|
|
|
}
|
|
|
|
}
|
2000-01-12 07:39:00 +00:00
|
|
|
else if(nsHTMLAtoms::area==tag.get()) {
|
1999-03-02 19:19:24 +00:00
|
|
|
nsIDOMHTMLAreaElement *nextArea;
|
2000-02-05 00:58:29 +00:00
|
|
|
if (NS_OK == child->QueryInterface(NS_GET_IID(nsIDOMHTMLAreaElement),
|
|
|
|
(void **)&nextArea)) {
|
1999-03-02 19:19:24 +00:00
|
|
|
nextArea->GetTabIndex(&tabIndex);
|
|
|
|
NS_RELEASE(nextArea);
|
|
|
|
}
|
|
|
|
disabled = PR_FALSE;
|
|
|
|
}
|
2000-01-12 07:39:00 +00:00
|
|
|
else if(nsHTMLAtoms::object==tag.get()) {
|
1999-03-02 19:19:24 +00:00
|
|
|
nsIDOMHTMLObjectElement *nextObject;
|
2000-02-05 00:58:29 +00:00
|
|
|
if (NS_OK == child->QueryInterface(NS_GET_IID(nsIDOMHTMLObjectElement),
|
|
|
|
(void **)&nextObject)) {
|
1999-03-02 19:19:24 +00:00
|
|
|
nextObject->GetTabIndex(&tabIndex);
|
|
|
|
NS_RELEASE(nextObject);
|
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
disabled = PR_FALSE;
|
|
|
|
}
|
2000-01-13 11:43:54 +00:00
|
|
|
else if (nsXULAtoms::titledbutton == tag.get()) {
|
|
|
|
nsAutoString value;
|
|
|
|
child->GetAttribute(kNameSpaceID_None, nsHTMLAtoms::disabled, value);
|
|
|
|
if (value != "true")
|
|
|
|
disabled = PR_FALSE;
|
|
|
|
}
|
|
|
|
else if (nsXULAtoms::tree == tag.get()) {
|
|
|
|
disabled = PR_FALSE;
|
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
|
2000-01-25 06:35:27 +00:00
|
|
|
// Get the primary frame for the widget. We don't tab into anything
|
|
|
|
// that doesn't have a frame.
|
|
|
|
nsCOMPtr<nsIPresShell> shell;
|
|
|
|
if (mPresContext) {
|
|
|
|
nsresult rv = mPresContext->GetShell(getter_AddRefs(shell));
|
|
|
|
if (NS_SUCCEEDED(rv) && shell){
|
|
|
|
nsIFrame* potentialFrame;
|
|
|
|
shell->GetPrimaryFrameFor(child, &potentialFrame);
|
|
|
|
if (!potentialFrame)
|
|
|
|
hidden = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-03-02 19:19:24 +00:00
|
|
|
//TabIndex not set (-1) treated at same level as set to 0
|
|
|
|
tabIndex = tabIndex < 0 ? 0 : tabIndex;
|
|
|
|
|
|
|
|
if (!disabled && !hidden && mCurrentTabIndex == tabIndex) {
|
1998-11-18 05:25:26 +00:00
|
|
|
return child;
|
|
|
|
}
|
|
|
|
NS_RELEASE(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aParent == aTop) {
|
|
|
|
nsIContent* nextParent;
|
|
|
|
aParent->GetParent(nextParent);
|
|
|
|
if (nsnull != nextParent) {
|
1999-03-02 19:19:24 +00:00
|
|
|
nsIContent* content = GetNextTabbableContent(nextParent, aParent, nextParent, forward);
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_RELEASE(nextParent);
|
|
|
|
return content;
|
|
|
|
}
|
1999-03-02 19:19:24 +00:00
|
|
|
//Reached end of document
|
|
|
|
else {
|
|
|
|
//If already at lowest priority tab (0), end
|
1999-07-19 21:23:57 +00:00
|
|
|
if (((forward) && (0 == mCurrentTabIndex)) ||
|
|
|
|
((!forward) && (1 == mCurrentTabIndex))) {
|
1999-03-02 19:19:24 +00:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
//else continue looking for next highest priority tab
|
|
|
|
mCurrentTabIndex = GetNextTabIndex(aParent, forward);
|
|
|
|
nsIContent* content = GetNextTabbableContent(aParent, nsnull, aParent, forward);
|
|
|
|
return content;
|
|
|
|
}
|
1998-11-18 05:25:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
1999-03-02 19:19:24 +00:00
|
|
|
PRInt32
|
|
|
|
nsEventStateManager::GetNextTabIndex(nsIContent* aParent, PRBool forward)
|
|
|
|
{
|
1999-07-19 21:23:57 +00:00
|
|
|
PRInt32 count, tabIndex, childTabIndex;
|
|
|
|
nsIContent* child;
|
|
|
|
|
1999-03-02 19:19:24 +00:00
|
|
|
aParent->ChildCount(count);
|
1999-07-19 21:23:57 +00:00
|
|
|
|
|
|
|
if (forward) {
|
|
|
|
tabIndex = 0;
|
|
|
|
for (PRInt32 index = 0; index < count; index++) {
|
|
|
|
aParent->ChildAt(index, child);
|
|
|
|
childTabIndex = GetNextTabIndex(child, forward);
|
|
|
|
if (childTabIndex > mCurrentTabIndex && childTabIndex != tabIndex) {
|
|
|
|
tabIndex = (tabIndex == 0 || childTabIndex < tabIndex) ? childTabIndex : tabIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoString tabIndexStr;
|
|
|
|
child->GetAttribute(kNameSpaceID_HTML, nsHTMLAtoms::tabindex, tabIndexStr);
|
|
|
|
PRInt32 ec, val = tabIndexStr.ToInteger(&ec);
|
|
|
|
if (NS_OK == ec && val > mCurrentTabIndex && val != tabIndex) {
|
|
|
|
tabIndex = (tabIndex == 0 || val < tabIndex) ? val : tabIndex;
|
|
|
|
}
|
|
|
|
NS_RELEASE(child);
|
1999-03-02 19:19:24 +00:00
|
|
|
}
|
1999-07-19 21:23:57 +00:00
|
|
|
}
|
|
|
|
else { /* !forward */
|
|
|
|
tabIndex = 1;
|
|
|
|
for (PRInt32 index = 0; index < count; index++) {
|
|
|
|
aParent->ChildAt(index, child);
|
|
|
|
childTabIndex = GetNextTabIndex(child, forward);
|
|
|
|
if ((mCurrentTabIndex==0 && childTabIndex > tabIndex) ||
|
|
|
|
(childTabIndex < mCurrentTabIndex && childTabIndex > tabIndex)) {
|
|
|
|
tabIndex = childTabIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoString tabIndexStr;
|
|
|
|
child->GetAttribute(kNameSpaceID_HTML, nsHTMLAtoms::tabindex, tabIndexStr);
|
|
|
|
PRInt32 ec, val = tabIndexStr.ToInteger(&ec);
|
|
|
|
if (NS_OK == ec) {
|
|
|
|
if ((mCurrentTabIndex==0 && val > tabIndex) ||
|
|
|
|
(val < mCurrentTabIndex && val > tabIndex) ) {
|
|
|
|
tabIndex = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NS_RELEASE(child);
|
1999-03-02 19:19:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return tabIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsEventStateManager::GetEventTarget(nsIFrame **aFrame)
|
|
|
|
{
|
1999-06-15 03:14:28 +00:00
|
|
|
if (!mCurrentTarget && mCurrentTargetContent) {
|
|
|
|
nsCOMPtr<nsIPresShell> shell;
|
|
|
|
if (mPresContext) {
|
|
|
|
nsresult rv = mPresContext->GetShell(getter_AddRefs(shell));
|
|
|
|
if (NS_SUCCEEDED(rv) && shell){
|
|
|
|
shell->GetPrimaryFrameFor(mCurrentTargetContent, &mCurrentTarget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
*aFrame = mCurrentTarget;
|
1999-07-27 20:55:03 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-12-02 20:55:17 +00:00
|
|
|
// This API crosses ESM instances to give the currently focused frame, no matter what ESM instace
|
|
|
|
// you call it from.
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsEventStateManager::GetFocusedEventTarget(nsIFrame **aFrame)
|
|
|
|
{
|
1999-12-10 00:51:50 +00:00
|
|
|
if (!gCurrentlyFocusedTargetFrame && gCurrentlyFocusedContent && gLastFocusedPresContext) {
|
1999-12-02 20:55:17 +00:00
|
|
|
nsCOMPtr<nsIPresShell> shell;
|
1999-12-10 00:51:50 +00:00
|
|
|
if (gLastFocusedPresContext) {
|
|
|
|
nsresult rv = gLastFocusedPresContext->GetShell(getter_AddRefs(shell));
|
1999-12-02 20:55:17 +00:00
|
|
|
if (NS_SUCCEEDED(rv) && shell){
|
|
|
|
shell->GetPrimaryFrameFor(gCurrentlyFocusedContent, &gCurrentlyFocusedTargetFrame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*aFrame = gCurrentlyFocusedTargetFrame;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-07-27 20:55:03 +00:00
|
|
|
NS_IMETHODIMP
|
1999-12-08 04:54:29 +00:00
|
|
|
nsEventStateManager::GetEventTargetContent(nsEvent* aEvent, nsIContent** aContent)
|
1999-07-27 20:55:03 +00:00
|
|
|
{
|
1999-12-08 09:01:06 +00:00
|
|
|
if (aEvent &&
|
|
|
|
(aEvent->message == NS_FOCUS_CONTENT ||
|
|
|
|
aEvent->message == NS_BLUR_CONTENT)) {
|
1999-12-08 04:54:29 +00:00
|
|
|
*aContent = mCurrentFocus;
|
|
|
|
NS_IF_ADDREF(*aContent);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-07-27 20:55:03 +00:00
|
|
|
if (mCurrentTargetContent) {
|
|
|
|
*aContent = mCurrentTargetContent;
|
|
|
|
NS_IF_ADDREF(*aContent);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mCurrentTarget) {
|
2000-02-11 01:24:59 +00:00
|
|
|
mCurrentTarget->GetContentForEvent(mPresContext, aEvent, aContent);
|
1999-07-27 20:55:03 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-06-15 03:14:28 +00:00
|
|
|
|
1999-07-27 20:55:03 +00:00
|
|
|
*aContent = nsnull;
|
1998-06-23 21:53:02 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-11-03 07:11:45 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsEventStateManager::GetEventRelatedContent(nsIContent** aContent)
|
|
|
|
{
|
|
|
|
if (mCurrentRelatedContent) {
|
|
|
|
*aContent = mCurrentRelatedContent;
|
|
|
|
NS_IF_ADDREF(*aContent);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aContent = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_IMETHODIMP
|
1999-03-28 22:22:54 +00:00
|
|
|
nsEventStateManager::GetContentState(nsIContent *aContent, PRInt32& aState)
|
1998-08-07 04:45:03 +00:00
|
|
|
{
|
1999-03-28 22:22:54 +00:00
|
|
|
aState = NS_EVENT_STATE_UNSPECIFIED;
|
|
|
|
|
|
|
|
if (aContent == mActiveContent) {
|
|
|
|
aState |= NS_EVENT_STATE_ACTIVE;
|
1999-01-28 23:14:36 +00:00
|
|
|
}
|
1999-03-28 22:22:54 +00:00
|
|
|
if (aContent == mHoverContent) {
|
|
|
|
aState |= NS_EVENT_STATE_HOVER;
|
1999-01-28 23:14:36 +00:00
|
|
|
}
|
1999-03-28 22:22:54 +00:00
|
|
|
if (aContent == mCurrentFocus) {
|
|
|
|
aState |= NS_EVENT_STATE_FOCUS;
|
1998-08-07 04:45:03 +00:00
|
|
|
}
|
1999-05-04 14:44:51 +00:00
|
|
|
if (aContent == mDragOverContent) {
|
|
|
|
aState |= NS_EVENT_STATE_DRAGOVER;
|
|
|
|
}
|
1998-08-07 04:45:03 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_IMETHODIMP
|
1999-04-12 21:24:07 +00:00
|
|
|
nsEventStateManager::SetContentState(nsIContent *aContent, PRInt32 aState)
|
1998-08-07 04:45:03 +00:00
|
|
|
{
|
1999-05-04 14:44:51 +00:00
|
|
|
const PRInt32 maxNotify = 5;
|
|
|
|
nsIContent *notifyContent[maxNotify] = {nsnull, nsnull, nsnull, nsnull, nsnull};
|
|
|
|
|
|
|
|
if ((aState & NS_EVENT_STATE_DRAGOVER) && (aContent != mDragOverContent)) {
|
|
|
|
//transferring ref to notifyContent from mDragOverContent
|
|
|
|
notifyContent[4] = mDragOverContent; // notify dragover first, since more common case
|
|
|
|
mDragOverContent = aContent;
|
|
|
|
NS_IF_ADDREF(mDragOverContent);
|
|
|
|
}
|
1999-04-20 00:03:30 +00:00
|
|
|
|
|
|
|
if ((aState & NS_EVENT_STATE_ACTIVE) && (aContent != mActiveContent)) {
|
|
|
|
//transferring ref to notifyContent from mActiveContent
|
|
|
|
notifyContent[2] = mActiveContent;
|
|
|
|
mActiveContent = aContent;
|
|
|
|
NS_IF_ADDREF(mActiveContent);
|
|
|
|
}
|
1999-03-28 22:22:54 +00:00
|
|
|
|
1999-04-20 00:03:30 +00:00
|
|
|
if ((aState & NS_EVENT_STATE_HOVER) && (aContent != mHoverContent)) {
|
|
|
|
//transferring ref to notifyContent from mHoverContent
|
|
|
|
notifyContent[1] = mHoverContent; // notify hover first, since more common case
|
|
|
|
mHoverContent = aContent;
|
|
|
|
NS_IF_ADDREF(mHoverContent);
|
1998-08-07 04:45:03 +00:00
|
|
|
}
|
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
if ((aState & NS_EVENT_STATE_FOCUS)) {
|
|
|
|
if (aContent == mCurrentFocus) {
|
|
|
|
//printf("NOOOOOOOOO!\n");
|
|
|
|
} else {
|
|
|
|
SendFocusBlur(mPresContext, aContent);
|
1999-01-28 23:14:36 +00:00
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
//transferring ref to notifyContent from mCurrentFocus
|
|
|
|
notifyContent[3] = mCurrentFocus;
|
|
|
|
mCurrentFocus = aContent;
|
|
|
|
NS_IF_ADDREF(mCurrentFocus);
|
1999-12-02 20:55:17 +00:00
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
gCurrentlyFocusedContent = mCurrentFocus;
|
|
|
|
}
|
1998-08-07 04:45:03 +00:00
|
|
|
}
|
1999-01-28 23:14:36 +00:00
|
|
|
|
1999-04-20 00:03:30 +00:00
|
|
|
if (aContent) { // notify about new content too
|
|
|
|
notifyContent[0] = aContent;
|
|
|
|
NS_ADDREF(aContent); // everything in notify array has a ref
|
|
|
|
}
|
1999-01-28 23:14:36 +00:00
|
|
|
|
1999-05-04 14:44:51 +00:00
|
|
|
// remove duplicates
|
|
|
|
if ((notifyContent[4] == notifyContent[3]) || (notifyContent[4] == notifyContent[2]) || (notifyContent[4] == notifyContent[1])) {
|
1999-06-08 19:01:56 +00:00
|
|
|
NS_IF_RELEASE(notifyContent[4]);
|
1999-05-04 14:44:51 +00:00
|
|
|
}
|
1999-04-20 00:03:30 +00:00
|
|
|
// remove duplicates
|
|
|
|
if ((notifyContent[3] == notifyContent[2]) || (notifyContent[3] == notifyContent[1])) {
|
1999-06-08 19:01:56 +00:00
|
|
|
NS_IF_RELEASE(notifyContent[3]);
|
1999-04-20 00:03:30 +00:00
|
|
|
}
|
|
|
|
if (notifyContent[2] == notifyContent[1]) {
|
1999-06-08 19:01:56 +00:00
|
|
|
NS_IF_RELEASE(notifyContent[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove notifications for content not in document.
|
|
|
|
// we may decide this is possible later but right now it has problems.
|
|
|
|
nsIDocument* doc = nsnull;
|
|
|
|
for (int i = 0; i < maxNotify; i++) {
|
|
|
|
if (notifyContent[i] && NS_SUCCEEDED(notifyContent[i]->GetDocument(doc)) && !doc) {
|
|
|
|
NS_RELEASE(notifyContent[i]);
|
|
|
|
}
|
|
|
|
NS_IF_RELEASE(doc);
|
1999-04-20 00:03:30 +00:00
|
|
|
}
|
1999-03-28 22:22:54 +00:00
|
|
|
|
1999-04-20 00:03:30 +00:00
|
|
|
// compress the notify array to group notifications tighter
|
|
|
|
nsIContent** from = &(notifyContent[0]);
|
|
|
|
nsIContent** to = &(notifyContent[0]);
|
|
|
|
nsIContent** end = &(notifyContent[maxNotify]);
|
|
|
|
|
|
|
|
while (from < end) {
|
|
|
|
if (! *from) {
|
|
|
|
while (++from < end) {
|
|
|
|
if (*from) {
|
|
|
|
*to++ = *from;
|
|
|
|
*from = nsnull;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (from == to) {
|
|
|
|
to++;
|
|
|
|
from++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*to++ = *from;
|
|
|
|
*from++ = nsnull;
|
1999-04-12 21:24:07 +00:00
|
|
|
}
|
1999-01-28 23:14:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-04-20 00:03:30 +00:00
|
|
|
if (notifyContent[0]) { // have at least one to notify about
|
|
|
|
nsIDocument *document; // this presumes content can't get/lose state if not connected to doc
|
|
|
|
notifyContent[0]->GetDocument(document);
|
1999-04-12 21:24:07 +00:00
|
|
|
if (document) {
|
2000-01-28 23:43:12 +00:00
|
|
|
document->BeginUpdate();
|
1999-04-20 00:03:30 +00:00
|
|
|
document->ContentStatesChanged(notifyContent[0], notifyContent[1]);
|
|
|
|
if (notifyContent[2]) { // more that two notifications are needed (should be rare)
|
|
|
|
// XXX a further optimization here would be to group the notification pairs
|
|
|
|
// together by parent/child, only needed if more than two content changed
|
|
|
|
// (ie: if [0] and [2] are parent/child, then notify (0,2) (1,3))
|
|
|
|
document->ContentStatesChanged(notifyContent[2], notifyContent[3]);
|
1999-05-04 14:44:51 +00:00
|
|
|
if (notifyContent[4]) { // more that two notifications are needed (should be rare)
|
|
|
|
document->ContentStatesChanged(notifyContent[4], nsnull);
|
|
|
|
}
|
1999-04-20 00:03:30 +00:00
|
|
|
}
|
2000-01-28 23:43:12 +00:00
|
|
|
document->EndUpdate();
|
1999-04-12 21:24:07 +00:00
|
|
|
NS_RELEASE(document);
|
1999-01-28 23:14:36 +00:00
|
|
|
}
|
1999-04-20 00:03:30 +00:00
|
|
|
|
|
|
|
from = &(notifyContent[0]);
|
|
|
|
while (from < to) { // release old refs now that we are through
|
|
|
|
nsIContent* notify = *from++;
|
|
|
|
NS_RELEASE(notify);
|
|
|
|
}
|
1999-01-28 23:14:36 +00:00
|
|
|
}
|
|
|
|
|
1998-08-07 04:45:03 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-02 19:19:24 +00:00
|
|
|
NS_IMETHODIMP
|
1999-10-26 04:44:41 +00:00
|
|
|
nsEventStateManager::SendFocusBlur(nsIPresContext* aPresContext, nsIContent *aContent)
|
1999-03-02 19:19:24 +00:00
|
|
|
{
|
1999-12-28 23:02:38 +00:00
|
|
|
//PRBool suppressBlurAndFocus = PR_FALSE;
|
1999-11-13 05:16:33 +00:00
|
|
|
|
|
|
|
if(mCurrentTarget) {
|
|
|
|
nsCOMPtr<nsIStyleContext> context;
|
|
|
|
mCurrentTarget->GetStyleContext(getter_AddRefs(context));
|
|
|
|
if(!context) return NS_OK;
|
|
|
|
|
|
|
|
|
|
|
|
const nsStyleUserInterface* styleStruct = (const nsStyleUserInterface*)context->GetStyleData(eStyleStruct_UserInterface);
|
|
|
|
if (NS_STYLE_USER_FOCUS_IGNORE == styleStruct->mUserFocus) {
|
1999-12-08 04:54:29 +00:00
|
|
|
// we want to suppress the blur and the following focus
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
1999-11-13 05:16:33 +00:00
|
|
|
|
1999-12-21 19:35:13 +00:00
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
aPresContext->GetShell(getter_AddRefs(presShell));
|
|
|
|
|
1999-12-18 04:02:28 +00:00
|
|
|
if (nsnull != gLastFocusedPresContext) {
|
|
|
|
|
2000-02-11 05:20:44 +00:00
|
|
|
if (gLastFocusedContent && gLastFocusedContent != mFirstBlurEvent) {
|
|
|
|
|
|
|
|
//Store the first blur event we fire and don't refire blur
|
|
|
|
//to that element while the first blur is still ongoing.
|
|
|
|
PRBool clearFirstBlurEvent = PR_FALSE;
|
|
|
|
if (!mFirstBlurEvent) {
|
|
|
|
mFirstBlurEvent = gLastFocusedContent;
|
|
|
|
NS_ADDREF(mFirstBlurEvent);
|
|
|
|
clearFirstBlurEvent = PR_TRUE;
|
|
|
|
}
|
1999-12-18 04:02:28 +00:00
|
|
|
|
|
|
|
// Retrieve this content node's pres context. it can be out of sync in
|
|
|
|
// the Ender widget case.
|
|
|
|
nsCOMPtr<nsIDocument> doc;
|
|
|
|
gLastFocusedContent->GetDocument(*getter_AddRefs(doc));
|
1999-12-21 19:35:13 +00:00
|
|
|
if (doc) {
|
1999-12-21 01:12:40 +00:00
|
|
|
nsCOMPtr<nsIPresShell> shell = getter_AddRefs(doc->GetShellAt(0));
|
|
|
|
nsCOMPtr<nsIPresContext> oldPresContext;
|
|
|
|
shell->GetPresContext(getter_AddRefs(oldPresContext));
|
1999-12-18 04:02:28 +00:00
|
|
|
|
1999-12-21 01:12:40 +00:00
|
|
|
//fire blur
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsEvent event;
|
|
|
|
event.eventStructType = NS_EVENT;
|
|
|
|
event.message = NS_BLUR_CONTENT;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIEventStateManager> esm;
|
|
|
|
oldPresContext->GetEventStateManager(getter_AddRefs(esm));
|
|
|
|
esm->SetFocusedContent(gLastFocusedContent);
|
2000-02-12 08:33:12 +00:00
|
|
|
nsCOMPtr<nsIContent> temp = gLastFocusedContent;
|
|
|
|
NS_RELEASE(gLastFocusedContent);
|
|
|
|
gLastFocusedContent = nsnull;
|
|
|
|
temp->HandleDOMEvent(oldPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
1999-12-21 01:12:40 +00:00
|
|
|
esm->SetFocusedContent(nsnull);
|
|
|
|
}
|
2000-02-11 05:20:44 +00:00
|
|
|
|
|
|
|
if (clearFirstBlurEvent) {
|
|
|
|
NS_RELEASE(mFirstBlurEvent);
|
|
|
|
}
|
1999-12-18 04:02:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Go ahead and fire a blur on the window.
|
|
|
|
nsCOMPtr<nsIScriptGlobalObject> globalObject;
|
2000-02-11 01:24:59 +00:00
|
|
|
|
2000-02-12 08:33:12 +00:00
|
|
|
if(gLastFocusedDocument)
|
|
|
|
gLastFocusedDocument->GetScriptGlobalObject(getter_AddRefs(globalObject));
|
1999-12-21 19:35:13 +00:00
|
|
|
|
1999-12-18 04:02:28 +00:00
|
|
|
if (!mDocument) {
|
|
|
|
if (presShell) {
|
|
|
|
presShell->GetDocument(&mDocument);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-02-12 08:33:12 +00:00
|
|
|
if (gLastFocusedDocument && (gLastFocusedDocument != mDocument) && globalObject) {
|
1999-12-18 04:02:28 +00:00
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsEvent event;
|
|
|
|
event.eventStructType = NS_EVENT;
|
|
|
|
event.message = NS_BLUR_CONTENT;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIEventStateManager> esm;
|
|
|
|
gLastFocusedPresContext->GetEventStateManager(getter_AddRefs(esm));
|
|
|
|
esm->SetFocusedContent(nsnull);
|
2000-02-12 08:33:12 +00:00
|
|
|
nsCOMPtr<nsIDocument> temp = gLastFocusedDocument;
|
|
|
|
NS_RELEASE(gLastFocusedDocument);
|
|
|
|
gLastFocusedDocument = nsnull;
|
|
|
|
temp->HandleDOMEvent(gLastFocusedPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
1999-12-18 04:02:28 +00:00
|
|
|
globalObject->HandleDOMEvent(gLastFocusedPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
|
|
|
}
|
1999-03-02 19:19:24 +00:00
|
|
|
}
|
1999-12-08 04:54:29 +00:00
|
|
|
|
|
|
|
NS_IF_RELEASE(gLastFocusedContent);
|
|
|
|
NS_IF_RELEASE(mCurrentFocus);
|
|
|
|
gLastFocusedContent = aContent;
|
|
|
|
mCurrentFocus = aContent;
|
|
|
|
NS_IF_ADDREF(aContent);
|
|
|
|
NS_IF_ADDREF(aContent);
|
|
|
|
|
2000-02-11 05:20:44 +00:00
|
|
|
if (nsnull != aContent && aContent != mFirstFocusEvent) {
|
|
|
|
|
|
|
|
//Store the first focus event we fire and don't refire focus
|
|
|
|
//to that element while the first focus is still ongoing.
|
|
|
|
PRBool clearFirstFocusEvent = PR_FALSE;
|
|
|
|
if (!mFirstFocusEvent) {
|
|
|
|
mFirstFocusEvent = aContent;
|
|
|
|
NS_ADDREF(mFirstFocusEvent);
|
|
|
|
clearFirstFocusEvent = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
1999-04-12 21:24:07 +00:00
|
|
|
//fire focus
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
nsEvent event;
|
|
|
|
event.eventStructType = NS_EVENT;
|
|
|
|
event.message = NS_FOCUS_CONTENT;
|
1999-03-02 19:19:24 +00:00
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
NS_IF_RELEASE(mCurrentFocus);
|
|
|
|
mCurrentFocus = aContent;
|
|
|
|
NS_IF_ADDREF(mCurrentFocus);
|
1999-08-07 23:18:35 +00:00
|
|
|
|
1999-04-12 21:24:07 +00:00
|
|
|
if (nsnull != mPresContext) {
|
1999-11-24 06:03:41 +00:00
|
|
|
aContent->HandleDOMEvent(mPresContext, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
|
1999-04-12 21:24:07 +00:00
|
|
|
}
|
1999-12-08 04:54:29 +00:00
|
|
|
|
1999-04-12 21:24:07 +00:00
|
|
|
nsAutoString tabIndex;
|
|
|
|
aContent->GetAttribute(kNameSpaceID_HTML, nsHTMLAtoms::tabindex, tabIndex);
|
|
|
|
PRInt32 ec, val = tabIndex.ToInteger(&ec);
|
|
|
|
if (NS_OK == ec) {
|
|
|
|
mCurrentTabIndex = val;
|
|
|
|
}
|
2000-02-11 05:20:44 +00:00
|
|
|
|
|
|
|
if (clearFirstFocusEvent) {
|
|
|
|
NS_RELEASE(mFirstFocusEvent);
|
|
|
|
}
|
1999-12-08 04:54:29 +00:00
|
|
|
}
|
1999-09-20 22:18:57 +00:00
|
|
|
|
1999-12-21 19:35:13 +00:00
|
|
|
// XXx The following line could be bad in the case where a
|
|
|
|
// parent element is really the one with the focus.
|
1999-12-08 04:54:29 +00:00
|
|
|
nsIFrame * currentFocusFrame = mCurrentTarget;
|
|
|
|
|
|
|
|
// Find the window that this frame is in and
|
|
|
|
// make sure it has focus
|
1999-12-21 19:35:13 +00:00
|
|
|
// GFX Text Control frames handle their own focus
|
|
|
|
// and must be special-cased.
|
|
|
|
nsCOMPtr<nsIGfxTextControlFrame> gfxFrame = do_QueryInterface(currentFocusFrame);
|
|
|
|
if (gfxFrame) {
|
|
|
|
gfxFrame->SetInnerFocus();
|
|
|
|
}
|
|
|
|
else if (currentFocusFrame) {
|
1999-12-08 04:54:29 +00:00
|
|
|
nsIFrame * parentFrame;
|
|
|
|
currentFocusFrame->GetParentWithView(aPresContext, &parentFrame);
|
|
|
|
if (nsnull != parentFrame) {
|
|
|
|
nsIView * pView;
|
|
|
|
parentFrame->GetView(aPresContext, &pView);
|
|
|
|
if (nsnull != pView) {
|
1999-09-20 22:18:57 +00:00
|
|
|
nsIWidget *window = nsnull;
|
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
nsIView *ancestor = pView;
|
|
|
|
while (nsnull != ancestor) {
|
|
|
|
ancestor->GetWidget(window); // addrefs
|
|
|
|
if (nsnull != window) {
|
2000-01-19 03:03:09 +00:00
|
|
|
window->SetFocus();
|
|
|
|
NS_RELEASE(window); // releases. Duh.
|
1999-12-08 04:54:29 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
ancestor->GetParent(ancestor);
|
1999-09-20 22:18:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-11-13 05:16:33 +00:00
|
|
|
}
|
|
|
|
|
1999-03-02 19:19:24 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-07-26 15:02:19 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsEventStateManager::GetFocusedContent(nsIContent** aContent)
|
|
|
|
{
|
|
|
|
*aContent = mCurrentFocus;
|
|
|
|
NS_IF_ADDREF(*aContent);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-12-08 04:54:29 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsEventStateManager::SetFocusedContent(nsIContent* aContent)
|
|
|
|
{
|
|
|
|
NS_IF_RELEASE(mCurrentFocus);
|
|
|
|
mCurrentFocus = aContent;
|
|
|
|
NS_IF_ADDREF(mCurrentFocus);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-02-09 15:14:55 +00:00
|
|
|
//-------------------------------------------
|
|
|
|
// Access Key Registration
|
|
|
|
//-------------------------------------------
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsEventStateManager::RegisterAccessKey(nsIFrame * aFrame, PRUint32 aKey)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_rods
|
|
|
|
printf("Obj: %p Registered %d [%c]accesskey\n", aFrame, aKey, (char)aKey);
|
|
|
|
#endif
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsEventStateManager::UnregisterAccessKey(nsIFrame * aFrame)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_rods
|
|
|
|
printf("Obj: %p Unregistered accesskey\n", aFrame);
|
|
|
|
#endif
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2000-02-05 00:58:29 +00:00
|
|
|
#ifndef USE_FOCUS_FOR_MOUSEWHEEL
|
|
|
|
|
1999-11-21 01:46:41 +00:00
|
|
|
nsIFrame*
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStateManager::GetDocumentFrame(nsIPresContext* aPresContext)
|
1999-11-21 01:46:41 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
nsIDocument* aDocument;
|
|
|
|
nsIFrame* aFrame;
|
|
|
|
nsIView* aView;
|
|
|
|
|
1999-11-24 06:03:41 +00:00
|
|
|
aPresContext->GetShell(getter_AddRefs(presShell));
|
2000-01-16 05:30:49 +00:00
|
|
|
|
1999-11-21 01:46:41 +00:00
|
|
|
if (nsnull == presShell) {
|
|
|
|
#ifdef DEBUG_scroll
|
2000-01-16 05:30:49 +00:00
|
|
|
printf("GetDocumentFrame: Got a null PresShell\n");
|
1999-11-21 01:46:41 +00:00
|
|
|
#endif
|
2000-01-11 22:30:22 +00:00
|
|
|
return nsnull;
|
1999-11-21 01:46:41 +00:00
|
|
|
}
|
2000-01-16 05:30:49 +00:00
|
|
|
|
1999-11-21 01:46:41 +00:00
|
|
|
presShell->GetDocument(&aDocument);
|
|
|
|
presShell->GetPrimaryFrameFor(aDocument->GetRootContent(), &aFrame);
|
|
|
|
|
2000-01-16 05:30:49 +00:00
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("GetDocumentFrame: aDocument = %p, aFrame = %p\n", aDocument, aFrame);
|
2000-02-05 00:58:29 +00:00
|
|
|
printf("GetDocumentFrame: aDocument.parent=%p\n",
|
|
|
|
aDocument->GetParentDocument());
|
2000-01-16 05:30:49 +00:00
|
|
|
#endif
|
|
|
|
|
2000-02-05 00:58:29 +00:00
|
|
|
#ifndef GFXSCROLL_IS_PRIMARY
|
|
|
|
|
1999-11-24 06:03:41 +00:00
|
|
|
aFrame->GetView(aPresContext, &aView);
|
2000-01-16 05:30:49 +00:00
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("GetDocumentFrame: got document view = %p\n", aView);
|
|
|
|
#endif
|
|
|
|
|
1999-11-21 01:46:41 +00:00
|
|
|
if (!aView) {
|
|
|
|
#ifdef DEBUG_scroll
|
2000-01-16 05:30:49 +00:00
|
|
|
printf("GetDocumentFrame: looking for a parent with a view\n");
|
1999-11-21 01:46:41 +00:00
|
|
|
#endif
|
1999-11-24 06:03:41 +00:00
|
|
|
aFrame->GetParentWithView(aPresContext, &aFrame);
|
1999-11-21 01:46:41 +00:00
|
|
|
}
|
2000-02-05 00:58:29 +00:00
|
|
|
|
|
|
|
#endif // !GFXSCROLL_IS_PRIMARY
|
|
|
|
|
1999-11-21 01:46:41 +00:00
|
|
|
return aFrame;
|
|
|
|
}
|
2000-02-05 00:58:29 +00:00
|
|
|
#endif // !USE_FOCUS_FOR_MOUSEWHEEL
|
|
|
|
|
|
|
|
#ifdef USE_FOCUS_FOR_MOUSEWHEEL
|
|
|
|
// This is some work-in-progress code that uses only the focus
|
|
|
|
// to determine what to scroll
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsEventStateManager::GetScrollableFrameOrView(nsIScrollableView* &sv,
|
|
|
|
nsISelfScrollingFrame* &sf,
|
|
|
|
nsIView* &focusView)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mPresContext, "ESM has a null prescontext");
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("GetScrollableFrameOrView: gLastFocusedContent = %p\n",
|
|
|
|
gLastFocusedContent);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
nsIFrame* focusFrame = nsnull;
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
mPresContext->GetShell(getter_AddRefs(presShell));
|
|
|
|
if (!presShell || !gLastFocusedContent)
|
|
|
|
{
|
|
|
|
sv = nsnull;
|
|
|
|
sf = nsnull;
|
|
|
|
focusView = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
presShell->GetPrimaryFrameFor(gLastFocusedContent, &focusFrame);
|
|
|
|
if (focusFrame) {
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("got focusFrame\n");
|
|
|
|
#endif
|
|
|
|
focusFrame->GetView(mPresContext, &focusView);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (focusView) {
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("got focusView\n");
|
|
|
|
#endif
|
|
|
|
sv = GetNearestScrollingView(focusView);
|
|
|
|
if (sv) {
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("got scrollingView\n");
|
|
|
|
#endif
|
|
|
|
sf = nsnull;
|
|
|
|
return NS_OK; // success
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (focusFrame)
|
|
|
|
sf = GetParentSelfScrollingFrame(focusFrame);
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
if (sf)
|
|
|
|
printf("got SSF\n");
|
|
|
|
#endif
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else // USE_FOCUS_FOR_MOUSEWHEEL
|
1999-11-21 01:46:41 +00:00
|
|
|
|
2000-01-11 22:30:22 +00:00
|
|
|
// There are three posibilities for what this function returns:
|
|
|
|
// sv and focusView non-null, sf null (a view should be scrolled)
|
|
|
|
// sv and focusView null, sf non-null (a frame should be scrolled)
|
|
|
|
// sv, focusView, and sf all null (nothing to scroll)
|
|
|
|
// The location works like this:
|
|
|
|
// First, check for a focused frame and try to get its view.
|
|
|
|
// If we can, and can get an nsIScrollableView for it, use that.
|
|
|
|
// If there is a focused frame but it does not have a view, or it has
|
|
|
|
// a view but no nsIScrollableView, check for an nsISelfScrollingFrame.
|
|
|
|
// If we find one, use that.
|
|
|
|
// If there is no focused frame, we first look for an nsISelfScrollingFrame
|
|
|
|
// as an ancestor of the event target. If there isn't one, we try to get
|
|
|
|
// an nsIView corresponding to the main document.
|
|
|
|
// Confused yet?
|
|
|
|
|
2000-02-05 00:58:29 +00:00
|
|
|
nsresult
|
|
|
|
nsEventStateManager::GetScrollableFrameOrView(nsIPresContext* aPresContext,
|
|
|
|
nsIFrame* aTargetFrame,
|
|
|
|
nsIView* aView,
|
|
|
|
nsIScrollableView* &sv,
|
|
|
|
nsISelfScrollingFrame* &sf,
|
|
|
|
nsIView* &focusView)
|
2000-01-11 22:30:22 +00:00
|
|
|
{
|
|
|
|
nsIFrame* focusFrame = nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
aPresContext->GetShell(getter_AddRefs(presShell));
|
|
|
|
if (!presShell) // this is bad
|
|
|
|
{
|
|
|
|
sv = nsnull;
|
|
|
|
sf = nsnull;
|
|
|
|
focusView = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_scroll
|
2000-01-16 05:30:49 +00:00
|
|
|
printf("------------------------\n");
|
2000-01-11 22:30:22 +00:00
|
|
|
printf("GetScrollableFrameOrView: aTargetFrame = %p, aView = %p\n",
|
|
|
|
aTargetFrame, aView);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (mCurrentFocus) {
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("GetScrollableFrameOrView: mCurrentFocus = %p\n", mCurrentFocus);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
presShell->GetPrimaryFrameFor(mCurrentFocus, &focusFrame);
|
|
|
|
if (focusFrame)
|
|
|
|
focusFrame->GetView(aPresContext, &focusView);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (focusFrame) {
|
|
|
|
if (!focusView) {
|
|
|
|
// The focused frame doesn't have a view
|
|
|
|
// Revert to the parameters passed in
|
|
|
|
// XXX this might not be right
|
|
|
|
|
|
|
|
#ifdef DEBUG_scroll
|
2000-01-16 05:30:49 +00:00
|
|
|
printf("GetScrollableFrameOrView: Could not get a view for the focused frame\n");
|
2000-01-11 22:30:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
focusFrame = aTargetFrame;
|
|
|
|
focusView = aView;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Focus is null. This means the main document has the focus,
|
|
|
|
// and we should scroll that.
|
|
|
|
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("GetScrollableFrameOrView: mCurrentFocus = NULL\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// If we can get an nsISelfScrollingFrame, that is preferable to getting
|
|
|
|
// the document view
|
|
|
|
|
|
|
|
sf = GetParentSelfScrollingFrame(aTargetFrame);
|
|
|
|
if (sf) {
|
|
|
|
#ifdef DEBUG_scroll
|
2000-01-16 05:30:49 +00:00
|
|
|
printf("GetScrollableFrameOrView: Found a SelfScrollingFrame: sf = %p\n", sf);
|
2000-01-11 22:30:22 +00:00
|
|
|
#endif
|
|
|
|
focusView = aView;
|
|
|
|
} else {
|
|
|
|
focusFrame = GetDocumentFrame(aPresContext);
|
|
|
|
focusFrame->GetView(aPresContext, &focusView);
|
|
|
|
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
if (focusView)
|
2000-01-16 05:30:49 +00:00
|
|
|
printf("GetScrollableFrameOrView: Got view for document frame!\n");
|
2000-01-11 22:30:22 +00:00
|
|
|
else // hopefully we won't be here
|
2000-01-16 05:30:49 +00:00
|
|
|
printf("GetScrollableFrameOrView: Couldn't get view for document frame\n");
|
2000-01-11 22:30:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("GetScrollableFrameOrView: focusFrame = %p, focusView = %p\n",
|
|
|
|
focusFrame, focusView);
|
|
|
|
#endif
|
|
|
|
|
2000-02-05 00:58:29 +00:00
|
|
|
if (focusView)
|
|
|
|
sv = GetNearestScrollingView(focusView);
|
2000-01-11 22:30:22 +00:00
|
|
|
|
|
|
|
if (sv) {
|
|
|
|
#ifdef DEBUG_scroll
|
2000-01-16 05:30:49 +00:00
|
|
|
printf("GetScrollableFrameOrView: Found a ScrollingView\n");
|
2000-01-11 22:30:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// We can stop now
|
|
|
|
sf = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
else {
|
2000-02-05 00:58:29 +00:00
|
|
|
#ifdef GFXSCROLL_IS_PRIMARY
|
|
|
|
if (focusFrame) {
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("Checking if frame is an nsIScrollableFrame\n");
|
|
|
|
#endif
|
|
|
|
nsIScrollableFrame* scrollableFrame = nsnull;
|
|
|
|
if (NS_OK == focusFrame->QueryInterface(NS_GET_IID(nsIScrollableFrame),
|
|
|
|
(void**)&scrollableFrame)) {
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("Got an nsIScrollableFrame: %p\n", scrollableFrame);
|
|
|
|
#endif
|
|
|
|
nsIFrame* scrolledFrame = nsnull;
|
|
|
|
scrollableFrame->GetScrolledFrame(aPresContext, scrolledFrame);
|
|
|
|
if (scrolledFrame) {
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("Got a scrolled frame\n");
|
|
|
|
#endif
|
|
|
|
scrolledFrame->GetView(aPresContext, &focusView);
|
|
|
|
sv = GetNearestScrollingView(focusView);
|
|
|
|
if (sv) {
|
|
|
|
sf = nsnull;
|
|
|
|
#ifdef DEBUG_scroll
|
|
|
|
printf("Got a scrolling view via nsGfxScrollFrame\n");
|
|
|
|
#endif
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // GFXSCROLL_IS_PRIMARY
|
|
|
|
|
2000-01-11 22:30:22 +00:00
|
|
|
#ifdef DEBUG_scroll
|
2000-01-16 05:30:49 +00:00
|
|
|
printf("GetScrollableFrameOrView: No scrolling view, looking for a scrolling frame\n");
|
2000-01-11 22:30:22 +00:00
|
|
|
#endif
|
|
|
|
if (!sf)
|
|
|
|
sf = GetParentSelfScrollingFrame(aTargetFrame);
|
|
|
|
|
|
|
|
#ifdef DEBUG_scroll
|
2000-02-05 00:58:29 +00:00
|
|
|
if (sf)
|
2000-01-16 05:30:49 +00:00
|
|
|
printf("GetScrollableFrameOrView: Found a scrolling frame\n");
|
2000-01-11 22:30:22 +00:00
|
|
|
#endif
|
|
|
|
|
2000-02-05 00:58:29 +00:00
|
|
|
sv = nsnull;
|
|
|
|
focusView = nsnull;
|
|
|
|
return NS_OK;
|
2000-01-11 22:30:22 +00:00
|
|
|
}
|
|
|
|
|
2000-02-05 00:58:29 +00:00
|
|
|
return NS_OK; // should not be reached
|
2000-01-11 22:30:22 +00:00
|
|
|
}
|
|
|
|
|
2000-02-05 00:58:29 +00:00
|
|
|
#endif // USE_FOCUS_FOR_MOUSEWHEEL
|
|
|
|
|
2000-01-11 22:30:22 +00:00
|
|
|
void nsEventStateManager::ForceViewUpdate(nsIView* aView)
|
|
|
|
{
|
|
|
|
// force the update to happen now, otherwise multiple scrolls can
|
|
|
|
// occur before the update is processed. (bug #7354)
|
|
|
|
|
|
|
|
nsIViewManager* vm = nsnull;
|
|
|
|
if (NS_OK == aView->GetViewManager(vm) && nsnull != vm) {
|
|
|
|
// I'd use Composite here, but it doesn't always work.
|
|
|
|
// vm->Composite();
|
2000-01-26 23:04:40 +00:00
|
|
|
vm->ForceUpdate();
|
2000-01-11 22:30:22 +00:00
|
|
|
NS_RELEASE(vm);
|
|
|
|
}
|
|
|
|
}
|
1999-11-21 01:46:41 +00:00
|
|
|
|
1998-06-23 21:53:02 +00:00
|
|
|
nsresult NS_NewEventStateManager(nsIEventStateManager** aInstancePtrResult)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aInstancePtrResult, "nsnull ptr");
|
|
|
|
if (nsnull == aInstancePtrResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
nsIEventStateManager* manager = new nsEventStateManager();
|
|
|
|
if (nsnull == manager) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2000-02-05 00:58:29 +00:00
|
|
|
return manager->QueryInterface(NS_GET_IID(nsIEventStateManager),
|
|
|
|
(void **) aInstancePtrResult);
|
1998-06-23 21:53:02 +00:00
|
|
|
}
|
|
|
|
|