/usr/include/libbonobo-2.0/bonobo/bonobo-event-source.h is in libbonobo2-dev 2.32.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* bonobo-event-source.h: Generic event emitter.
*
* Author:
* Alex Graveley (alex@ximian.com)
*
* Copyright (C) 2001, Ximian, Inc.
*/
#ifndef _BONOBO_EVENT_SOURCE_H_
#define _BONOBO_EVENT_SOURCE_H_
#include <bonobo/bonobo-object.h>
#include <bonobo/bonobo-listener.h>
G_BEGIN_DECLS
#define BONOBO_TYPE_EVENT_SOURCE (bonobo_event_source_get_type ())
#define BONOBO_EVENT_SOURCE_TYPE BONOBO_TYPE_EVENT_SOURCE /* deprecated, you should use BONOBO_TYPE_EVENT_SOURCE */
#define BONOBO_EVENT_SOURCE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), BONOBO_TYPE_EVENT_SOURCE, BonoboEventSource))
#define BONOBO_EVENT_SOURCE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), BONOBO_TYPE_EVENT_SOURCE, BonoboEventSourceClass))
#define BONOBO_IS_EVENT_SOURCE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), BONOBO_TYPE_EVENT_SOURCE))
#define BONOBO_IS_EVENT_SOURCE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), BONOBO_TYPE_EVENT_SOURCE))
typedef struct _BonoboEventSourcePrivate BonoboEventSourcePrivate;
typedef struct _BonoboEventSource BonoboEventSource;
struct _BonoboEventSource {
BonoboObject parent;
BonoboEventSourcePrivate *priv;
};
typedef struct {
BonoboObjectClass parent_class;
POA_Bonobo_EventSource__epv epv;
} BonoboEventSourceClass;
GType bonobo_event_source_get_type (void) G_GNUC_CONST;
BonoboEventSource *bonobo_event_source_new (void);
gboolean bonobo_event_source_has_listener (BonoboEventSource *event_source,
const char *event_name);
void bonobo_event_source_notify_listeners (BonoboEventSource *event_source,
const char *event_name,
const CORBA_any *opt_value,
CORBA_Environment *opt_ev);
void bonobo_event_source_notify_listeners_full (BonoboEventSource *event_source,
const char *path,
const char *type,
const char *subtype,
const CORBA_any *opt_value,
CORBA_Environment *opt_ev);
void bonobo_event_source_client_remove_listener (Bonobo_Unknown object,
Bonobo_Listener listener,
CORBA_Environment *opt_ev);
void bonobo_event_source_client_add_listener (Bonobo_Unknown object,
BonoboListenerCallbackFn event_callback,
const char *opt_mask,
CORBA_Environment *opt_ev,
gpointer user_data);
void bonobo_event_source_client_add_listener_closure (Bonobo_Unknown object,
GClosure *callback,
const char *opt_mask,
CORBA_Environment *opt_ev);
Bonobo_Listener bonobo_event_source_client_add_listener_full (Bonobo_Unknown object,
GClosure *callback,
const char *opt_mask,
CORBA_Environment *opt_ev);
/* You don't want this routine */
void bonobo_event_source_ignore_listeners (BonoboEventSource *event_source);
G_END_DECLS
#endif /* _BONOBO_EVENT_SOURCE_H_ */
|