gerv%gerv.net 13afb6d0f9 Relicensing Round 1, Take 2. Most C-like NPL files -> NPL/GPL/LGPL. Bug 98089.
git-svn-id: svn://10.0.0.236/trunk@104119 18797224-902f-48f8-a5cc-f745e15eee43
2001-09-28 20:14:13 +00:00

175 lines
5.1 KiB
C

/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
*
* 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/
*
* 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):
*
* 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 NPL, 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 NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifndef _xp_observer_h_
#define _xp_observer_h_
#ifndef _platform_h_
typedef int NS_Error;
#endif
#include "prtypes.h"
#include "prlog.h"
typedef struct OpaqueObserverList *XP_ObserverList;
typedef void* XP_Observable;
typedef long XP_ObservableMsg;
typedef void (*XP_ObserverProc) (
XP_Observable inSource,
XP_ObservableMsg inMsg,
void* ioMsgData,
void* ioClosure );
PR_BEGIN_EXTERN_C
/*
Creates a new XP_ObserverList, with an assoicated XP_Observabe,
to which you can add observers, who are notified when
XP_NotifyObservers is called.
Observerer notification is enabled by default.
*/
extern NS_Error
XP_NewObserverList(
XP_Observable inObservable,
XP_ObserverList* outObserverList );
/*
Disposes of an XP_ObserverList. Does nothing with
its observers.
*/
extern void
XP_DisposeObserverList(
XP_ObserverList inObserverList );
/*
Returns the XP_Observable associated with an XP_ObserverList
*/
extern XP_Observable
XP_GetObserverListObservable(
XP_ObserverList inObserverList);
/*
Change the observable associated with an observerlist
*/
extern void
XP_SetObserverListObservable(
XP_ObserverList inObserverList,
XP_Observable inObservable);
/*
Registers a function pointer and void* closure
as an "observer", which will be called whenever
XP_NotifyObservers is called an observer notification
is enabled.
*/
extern int
XP_AddObserver(
XP_ObserverList inObserverList,
XP_ObserverProc inObserver,
void* inClosure );
/*
Removes a registered observer. If there are duplicate
(XP_ObserverProc/void* closure) pairs registered,
it is undefined which one will be removed.
Returns false if the observer is not registered.
*/
extern PRBool
XP_RemoveObserver(
XP_ObserverList inObserverList,
XP_ObserverProc inObserver,
void* inClosure );
/*
If observer notification is enabled for this XP_Observable,
this will call each registered observer proc, passing it
the given message and void* ioData, in addition to the
observer's closure void*.
There is no defined order in which observers are called.
*/
extern void
XP_NotifyObservers(
XP_ObserverList inObserverList,
XP_ObservableMsg inMessage,
void* ioData );
/*
When called, subsequent calls to XP_NotifyObservers
will do nothing until XP_EnableObserverNotification
is called.
*/
extern void
XP_DisableObserverNotification(
XP_ObserverList inObserverList );
/*
Enables calling observers when XP_NotifyObservers
is invoked.
*/
extern void
XP_EnableObserverNotification(
XP_ObserverList inObserverList );
/*
Returns true if observer notification is enabled.
*/
extern PRBool
XP_IsObserverNotificationEnabled(
XP_ObserverList inObserverList );
PR_END_EXTERN_C
#endif /* #ifdef _xp_observer_h_ */