GXmlGDomEvent

GXmlGDomEvent

Functions

Types and Values

Description

Functions

gxml_gdom_event_new ()

GXmlGDomEvent *
gxml_gdom_event_new (void);

gxml_gdom_custom_event_init_custom_event ()

void
gxml_gdom_custom_event_init_custom_event
                               (GXmlGDomCustomEvent *self,
                                const gchar *type,
                                gboolean bubbles,
                                gboolean cancelable,
                                GValue *detail);

Parameters

self

the GXmlGDomCustomEvent instance

 

type

 

 

bubbles

 

 

cancelable

 

 

detail

 

 

gxml_gdom_custom_event_new ()

GXmlGDomCustomEvent *
gxml_gdom_custom_event_new (void);

gxml_gdom_custom_event_get_detail ()

GValue *
gxml_gdom_custom_event_get_detail (GXmlGDomCustomEvent *self);

Get and return the current value of the "detail" property.

Parameters

self

the GXmlGDomCustomEvent instance to query

 

Returns

the value of the "detail" property

Types and Values

GXML_TYPE_GDOM_EVENT

#define GXML_TYPE_GDOM_EVENT (gxml_gdom_event_get_type ())

The type for GXmlGDomEvent.


struct GXmlGDomEvent

struct GXmlGDomEvent {
	GObject parent_instance;
	GXmlGDomEventPrivate * priv;
	gchar* _etype;
	GXmlDomEventTarget* _event_target;
	GXmlDomEventTarget* _current_target;
	gboolean _bubbles;
	gboolean _cancelable;
	gboolean _is_trusted;
	GXmlDomTimeStamp* _time_stamp;
	gboolean _default_prevented;
	GXmlDomEventPhase _event_phase;
	GXmlDomEventFlags _flags;
};

struct GXmlGDomEventClass

struct GXmlGDomEventClass {
	GObjectClass parent_class;
};

The class structure for GXML_TYPE_GDOM_EVENT. All the fields in this structure are private and should never be accessed directly.

Members


GXML_TYPE_GDOM_CUSTOM_EVENT

#define GXML_TYPE_GDOM_CUSTOM_EVENT (gxml_gdom_custom_event_get_type ())

The type for GXmlGDomCustomEvent.


struct GXmlGDomCustomEvent

struct GXmlGDomCustomEvent {
	GXmlGDomEvent parent_instance;
	GXmlGDomCustomEventPrivate * priv;
	GValue* _detail;
};

struct GXmlGDomCustomEventClass

struct GXmlGDomCustomEventClass {
	GXmlGDomEventClass parent_class;
};

The class structure for GXML_TYPE_GDOM_CUSTOM_EVENT. All the fields in this structure are private and should never be accessed directly.

Members