1998-07-17 08:52:12 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:40:37 +03: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-07-17 08:52:12 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03: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-07-17 08:52:12 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-07-17 08:52:12 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-07-17 08:52:12 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsIScriptEventListener_h__
|
|
|
|
#define nsIScriptEventListener_h__
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
|
|
|
|
|
|
|
class nsIDOMEventListener;
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
class nsIScriptContext;
|
1998-07-17 08:52:12 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Event listener interface.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NS_ISCRIPTEVENTLISTENER_IID \
|
|
|
|
{ /* e34ed820-1b62-11d2-bd89-00805f8ae3f4 */ \
|
|
|
|
0xe34ed820, 0x1b62, 0x11d2, \
|
|
|
|
{0xbd, 0x89, 0x00, 0x80, 0x5f, 0x8a, 0xe3, 0xf4} }
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
class nsIScriptEventListener : public nsISupports
|
|
|
|
{
|
1998-07-17 08:52:12 +04:00
|
|
|
public:
|
1999-08-20 13:51:02 +04:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(NS_ISCRIPTEVENTLISTENER_IID)
|
1998-07-17 08:52:12 +04:00
|
|
|
|
|
|
|
/**
|
1999-03-29 02:19:42 +04:00
|
|
|
* Checks equality of internal script function pointer with the one passed in.
|
1998-07-17 08:52:12 +04:00
|
|
|
*/
|
Beginnings of massive landing of joki changes.
Relevant nsbeta3+ bugs 43309, 44503, 2634, 2504,5981, 24698, 25758, 33577,
36062, 36217, 41191, 41491, 42356, 42829, 43016
r=saari (joki code). also been tested by heikki and bryner
2000-08-09 01:19:03 +04:00
|
|
|
NS_IMETHOD CheckIfEqual(nsIScriptEventListener *aListener, PRBool* aResult) = 0;
|
1998-07-17 08:52:12 +04:00
|
|
|
|
Beginnings of massive landing of joki changes.
Relevant nsbeta3+ bugs 43309, 44503, 2634, 2504,5981, 24698, 25758, 33577,
36062, 36217, 41191, 41491, 42356, 42829, 43016
r=saari (joki code). also been tested by heikki and bryner
2000-08-09 01:19:03 +04:00
|
|
|
/**
|
|
|
|
* Gets internal data for equality checking..
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetInternals(void** aTarget, void** aHandler) = 0;
|
1998-07-17 08:52:12 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
1999-12-08 01:14:17 +03:00
|
|
|
extern "C" NS_DOM nsresult
|
|
|
|
NS_NewScriptEventListener(nsIDOMEventListener ** aInstancePtrResult,
|
|
|
|
nsIScriptContext *aContext,
|
|
|
|
void *aTarget,
|
|
|
|
void *aHandler);
|
1998-07-17 08:52:12 +04:00
|
|
|
|
|
|
|
#endif // nsIScriptEventListener_h__
|