2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Steve Clark (buster@netscape.com)
|
|
|
|
* Ilya Konstantinov (mozilla-code@future.shiny.co.il)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsDOMUIEvent.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
|
|
|
#include "nsIDOMWindowInternal.h"
|
|
|
|
#include "nsIDOMNode.h"
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsIEventStateManager.h"
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsLayoutUtils.h"
|
|
|
|
#include "nsIScrollableFrame.h"
|
|
|
|
#include "nsIViewManager.h"
|
|
|
|
|
|
|
|
nsDOMUIEvent::nsDOMUIEvent(nsPresContext* aPresContext, nsGUIEvent* aEvent)
|
|
|
|
: nsDOMEvent(aPresContext, aEvent ?
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsEvent *>(aEvent) :
|
|
|
|
static_cast<nsEvent *>(new nsUIEvent(PR_FALSE, 0, 0)))
|
2007-03-22 10:30:00 -07:00
|
|
|
, mClientPoint(0,0)
|
|
|
|
{
|
|
|
|
if (aEvent) {
|
|
|
|
mEventIsInternal = PR_FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mEventIsInternal = PR_TRUE;
|
|
|
|
mEvent->time = PR_Now();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fill mDetail and mView according to the mEvent (widget-generated
|
|
|
|
// event) we've got
|
|
|
|
switch(mEvent->eventStructType)
|
|
|
|
{
|
|
|
|
case NS_UI_EVENT:
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
nsUIEvent *event = static_cast<nsUIEvent*>(mEvent);
|
2007-03-22 10:30:00 -07:00
|
|
|
mDetail = event->detail;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case NS_SCROLLPORT_EVENT:
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
nsScrollPortEvent* scrollEvent = static_cast<nsScrollPortEvent*>(mEvent);
|
2007-03-22 10:30:00 -07:00
|
|
|
mDetail = (PRInt32)scrollEvent->orient;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
mDetail = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
mView = nsnull;
|
|
|
|
if (mPresContext)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsISupports> container = mPresContext->GetContainer();
|
|
|
|
if (container)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMWindowInternal> window = do_GetInterface(container);
|
|
|
|
if (window)
|
|
|
|
mView = do_QueryInterface(window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-26 01:21:42 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsDOMUIEvent)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(nsDOMUIEvent, nsDOMEvent)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mView)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(nsDOMUIEvent, nsDOMEvent)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mView)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMPL_ADDREF_INHERITED(nsDOMUIEvent, nsDOMEvent)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(nsDOMUIEvent, nsDOMEvent)
|
|
|
|
|
2007-06-26 01:21:42 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(nsDOMUIEvent)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMUIEvent)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMNSUIEvent)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIPrivateCompositionEvent)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_CONTENT_CLASSINFO(UIEvent)
|
|
|
|
NS_INTERFACE_MAP_END_INHERITING(nsDOMEvent)
|
|
|
|
|
|
|
|
nsPoint nsDOMUIEvent::GetScreenPoint() {
|
|
|
|
if (!mEvent ||
|
|
|
|
(mEvent->eventStructType != NS_MOUSE_EVENT &&
|
|
|
|
mEvent->eventStructType != NS_POPUP_EVENT &&
|
|
|
|
mEvent->eventStructType != NS_MOUSE_SCROLL_EVENT &&
|
|
|
|
!NS_IS_DRAG_EVENT(mEvent))) {
|
|
|
|
return nsPoint(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!((nsGUIEvent*)mEvent)->widget ) {
|
|
|
|
return mEvent->refPoint;
|
|
|
|
}
|
2007-07-25 20:34:16 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsRect bounds(mEvent->refPoint, nsSize(1, 1));
|
|
|
|
nsRect offset;
|
|
|
|
((nsGUIEvent*)mEvent)->widget->WidgetToScreen ( bounds, offset );
|
2007-07-25 20:34:16 -07:00
|
|
|
PRInt32 factor = mPresContext->DeviceContext()->UnscaledAppUnitsPerDevPixel();
|
|
|
|
return nsPoint(nsPresContext::AppUnitsToIntCSSPixels(offset.x * factor),
|
|
|
|
nsPresContext::AppUnitsToIntCSSPixels(offset.y * factor));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsPoint nsDOMUIEvent::GetClientPoint() {
|
|
|
|
if (!mEvent ||
|
|
|
|
(mEvent->eventStructType != NS_MOUSE_EVENT &&
|
|
|
|
mEvent->eventStructType != NS_POPUP_EVENT &&
|
|
|
|
mEvent->eventStructType != NS_MOUSE_SCROLL_EVENT &&
|
|
|
|
!NS_IS_DRAG_EVENT(mEvent)) ||
|
|
|
|
!mPresContext) {
|
|
|
|
return nsPoint(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
//My god, man, there *must* be a better way to do this.
|
|
|
|
nsCOMPtr<nsIWidget> docWidget;
|
|
|
|
nsIPresShell *presShell = mPresContext->GetPresShell();
|
|
|
|
if (presShell) {
|
|
|
|
nsIViewManager* vm = presShell->GetViewManager();
|
|
|
|
if (vm) {
|
|
|
|
vm->GetWidget(getter_AddRefs(docWidget));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> eventWidget = ((nsGUIEvent*)mEvent)->widget;
|
|
|
|
if (!eventWidget || !docWidget)
|
|
|
|
return mClientPoint;
|
|
|
|
|
|
|
|
nsPoint pt = mEvent->refPoint;
|
|
|
|
|
|
|
|
// BUG 296004 (see also BUG 242833)
|
|
|
|
//
|
|
|
|
// For document events we want to return a point relative to the local view manager,
|
|
|
|
// (docWidget) not to the generating widget (eventWidget). However, for global events
|
|
|
|
// we want to leave them relative to the generating widget.
|
|
|
|
//
|
|
|
|
// To determine which we are, we use the fact that currently for the latter case our
|
|
|
|
// docWidget and eventWidget won't be linked together in the widget hierarchy. That
|
|
|
|
// means that the coordinate space transform which follows wouldn't have worked
|
|
|
|
// anyway... actually what we want is for all users of this and refPoint to agree
|
|
|
|
// gracefully on what coordinate system to use, but that's a more involved change.
|
|
|
|
|
|
|
|
nsIWidget* eventParent = eventWidget;
|
|
|
|
for (;;) {
|
|
|
|
nsIWidget* t = eventParent->GetParent();
|
|
|
|
if (!t)
|
|
|
|
break;
|
|
|
|
eventParent = t;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIWidget* docParent = docWidget;
|
|
|
|
for (;;) {
|
|
|
|
nsIWidget* t = docParent->GetParent();
|
|
|
|
if (!t)
|
|
|
|
break;
|
|
|
|
docParent = t;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (docParent != eventParent)
|
|
|
|
return pt;
|
|
|
|
|
|
|
|
while (eventWidget && docWidget != eventWidget) {
|
|
|
|
nsWindowType windowType;
|
|
|
|
eventWidget->GetWindowType(windowType);
|
|
|
|
if (windowType == eWindowType_popup)
|
|
|
|
break;
|
|
|
|
|
|
|
|
nsRect bounds;
|
|
|
|
eventWidget->GetBounds(bounds);
|
|
|
|
pt += bounds.TopLeft();
|
|
|
|
eventWidget = eventWidget->GetParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (eventWidget != docWidget) {
|
|
|
|
// docWidget wasn't on the chain from the event widget to the root
|
|
|
|
// of the widget tree (or the nearest popup). OK, so now pt is
|
|
|
|
// relative to eventWidget; to get it relative to docWidget, we
|
|
|
|
// need to subtract docWidget's offset from eventWidget.
|
|
|
|
while (docWidget && docWidget != eventWidget) {
|
|
|
|
nsWindowType windowType;
|
|
|
|
docWidget->GetWindowType(windowType);
|
|
|
|
if (windowType == eWindowType_popup) {
|
|
|
|
// oh dear. the doc and the event were in different popups?
|
|
|
|
// That shouldn't happen.
|
|
|
|
NS_NOTREACHED("doc widget and event widget are in different popups. That's dumb.");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect bounds;
|
|
|
|
docWidget->GetBounds(bounds);
|
|
|
|
pt -= bounds.TopLeft();
|
|
|
|
docWidget = docWidget->GetParent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsPoint(nsPresContext::AppUnitsToIntCSSPixels(mPresContext->DevPixelsToAppUnits(pt.x)),
|
|
|
|
nsPresContext::AppUnitsToIntCSSPixels(mPresContext->DevPixelsToAppUnits(pt.y)));
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetView(nsIDOMAbstractView** aView)
|
|
|
|
{
|
|
|
|
*aView = mView;
|
|
|
|
NS_IF_ADDREF(*aView);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetDetail(PRInt32* aDetail)
|
|
|
|
{
|
|
|
|
*aDetail = mDetail;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::InitUIEvent(const nsAString & typeArg, PRBool canBubbleArg, PRBool cancelableArg, nsIDOMAbstractView *viewArg, PRInt32 detailArg)
|
|
|
|
{
|
|
|
|
nsresult rv = nsDOMEvent::InitEvent(typeArg, canBubbleArg, cancelableArg);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
mDetail = detailArg;
|
|
|
|
mView = viewArg;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---- nsDOMNSUIEvent implementation -------------------
|
|
|
|
nsPoint
|
|
|
|
nsDOMUIEvent::GetPagePoint()
|
|
|
|
{
|
|
|
|
if (((nsGUIEvent*)mEvent)->widget) {
|
|
|
|
// Native event; calculate using presentation
|
|
|
|
nsPoint pt(0, 0);
|
|
|
|
nsIScrollableFrame* scrollframe =
|
|
|
|
mPresContext->PresShell()->GetRootScrollFrameAsScrollable();
|
|
|
|
if (scrollframe)
|
|
|
|
pt += scrollframe->GetScrollPosition();
|
|
|
|
nsIFrame* rootFrame = mPresContext->PresShell()->GetRootFrame();
|
|
|
|
if (rootFrame)
|
|
|
|
pt += nsLayoutUtils::GetEventCoordinatesRelativeTo(mEvent, rootFrame);
|
|
|
|
return nsPoint(nsPresContext::AppUnitsToIntCSSPixels(pt.x),
|
|
|
|
nsPresContext::AppUnitsToIntCSSPixels(pt.y));
|
|
|
|
}
|
|
|
|
|
|
|
|
return GetClientPoint();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetPageX(PRInt32* aPageX)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aPageX);
|
|
|
|
*aPageX = GetPagePoint().x;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetPageY(PRInt32* aPageY)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aPageY);
|
|
|
|
*aPageY = GetPagePoint().y;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetWhich(PRUint32* aWhich)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aWhich);
|
|
|
|
// Usually we never reach here, as this is reimplemented for mouse and keyboard events.
|
|
|
|
*aWhich = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetRangeParent(nsIDOMNode** aRangeParent)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aRangeParent);
|
|
|
|
nsIFrame* targetFrame = nsnull;
|
|
|
|
|
|
|
|
if (mPresContext) {
|
|
|
|
mPresContext->EventStateManager()->GetEventTarget(&targetFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
*aRangeParent = nsnull;
|
|
|
|
|
|
|
|
if (targetFrame) {
|
|
|
|
nsPoint pt = nsLayoutUtils::GetEventCoordinatesRelativeTo(mEvent,
|
|
|
|
targetFrame);
|
|
|
|
nsCOMPtr<nsIContent> parent = targetFrame->GetContentOffsetsFromPoint(pt).content;
|
|
|
|
if (parent) {
|
|
|
|
return CallQueryInterface(parent, aRangeParent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetRangeOffset(PRInt32* aRangeOffset)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aRangeOffset);
|
|
|
|
nsIFrame* targetFrame = nsnull;
|
|
|
|
|
|
|
|
if (mPresContext) {
|
|
|
|
mPresContext->EventStateManager()->GetEventTarget(&targetFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (targetFrame) {
|
|
|
|
nsPoint pt = nsLayoutUtils::GetEventCoordinatesRelativeTo(mEvent,
|
|
|
|
targetFrame);
|
|
|
|
*aRangeOffset = targetFrame->GetContentOffsetsFromPoint(pt).offset;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
*aRangeOffset = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetCancelBubble(PRBool* aCancelBubble)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aCancelBubble);
|
|
|
|
*aCancelBubble =
|
|
|
|
(mEvent->flags & NS_EVENT_FLAG_STOP_DISPATCH) ? PR_TRUE : PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::SetCancelBubble(PRBool aCancelBubble)
|
|
|
|
{
|
|
|
|
if (aCancelBubble) {
|
|
|
|
mEvent->flags |= NS_EVENT_FLAG_STOP_DISPATCH;
|
|
|
|
} else {
|
|
|
|
mEvent->flags &= ~NS_EVENT_FLAG_STOP_DISPATCH;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsPoint nsDOMUIEvent::GetLayerPoint() {
|
|
|
|
if (!mEvent ||
|
|
|
|
(mEvent->eventStructType != NS_MOUSE_EVENT &&
|
|
|
|
mEvent->eventStructType != NS_MOUSE_SCROLL_EVENT) ||
|
|
|
|
!mPresContext) {
|
|
|
|
return nsPoint(0,0);
|
|
|
|
}
|
|
|
|
// XXX I'm not really sure this is correct; it's my best shot, though
|
|
|
|
nsIFrame* targetFrame;
|
|
|
|
mPresContext->EventStateManager()->GetEventTarget(&targetFrame);
|
|
|
|
if (!targetFrame)
|
|
|
|
return nsPoint(0,0);
|
|
|
|
nsIFrame* layer = nsLayoutUtils::GetClosestLayer(targetFrame);
|
|
|
|
nsPoint pt(nsLayoutUtils::GetEventCoordinatesRelativeTo(mEvent, layer));
|
|
|
|
pt.x = nsPresContext::AppUnitsToIntCSSPixels(pt.x);
|
|
|
|
pt.y = nsPresContext::AppUnitsToIntCSSPixels(pt.y);
|
|
|
|
return pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetLayerX(PRInt32* aLayerX)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aLayerX);
|
|
|
|
*aLayerX = GetLayerPoint().x;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetLayerY(PRInt32* aLayerY)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aLayerY);
|
|
|
|
*aLayerY = GetLayerPoint().y;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetIsChar(PRBool* aIsChar)
|
|
|
|
{
|
|
|
|
switch(mEvent->eventStructType)
|
|
|
|
{
|
|
|
|
case NS_KEY_EVENT:
|
|
|
|
*aIsChar = ((nsKeyEvent*)mEvent)->isChar;
|
|
|
|
return NS_OK;
|
|
|
|
case NS_TEXT_EVENT:
|
|
|
|
*aIsChar = ((nsTextEvent*)mEvent)->isChar;
|
|
|
|
return NS_OK;
|
|
|
|
default:
|
|
|
|
*aIsChar = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMUIEvent::GetPreventDefault(PRBool* aReturn)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
|
|
|
*aReturn = mEvent && (mEvent->flags & NS_EVENT_FLAG_NO_DEFAULT);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_METHOD nsDOMUIEvent::GetCompositionReply(nsTextEventReply** aReply)
|
|
|
|
{
|
|
|
|
if((mEvent->eventStructType == NS_RECONVERSION_EVENT) ||
|
|
|
|
(mEvent->message == NS_COMPOSITION_START) ||
|
|
|
|
(mEvent->message == NS_COMPOSITION_QUERY))
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
*aReply = &(static_cast<nsCompositionEvent*>(mEvent)->theReply);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
*aReply = nsnull;
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_METHOD
|
|
|
|
nsDOMUIEvent::GetReconversionReply(nsReconversionEventReply** aReply)
|
|
|
|
{
|
|
|
|
if (mEvent->eventStructType == NS_RECONVERSION_EVENT)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
*aReply = &(static_cast<nsReconversionEvent*>(mEvent)->theReply);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
*aReply = nsnull;
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_METHOD
|
|
|
|
nsDOMUIEvent::GetQueryCaretRectReply(nsQueryCaretRectEventReply** aReply)
|
|
|
|
{
|
|
|
|
if (mEvent->eventStructType == NS_QUERYCARETRECT_EVENT)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
*aReply = &(static_cast<nsQueryCaretRectEvent*>(mEvent)->theReply);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
*aReply = nsnull;
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult NS_NewDOMUIEvent(nsIDOMEvent** aInstancePtrResult,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsGUIEvent *aEvent)
|
|
|
|
{
|
|
|
|
nsDOMUIEvent* it = new nsDOMUIEvent(aPresContext, aEvent);
|
|
|
|
if (nsnull == it) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CallQueryInterface(it, aInstancePtrResult);
|
|
|
|
}
|