| Guifications Library Reference Manual |
|---|
GfEventGfEvent — GfEvent Object API |
GfEvent;
GfEvent* gf_event_new (const gchar *name,
const gchar *i18n,
const gchar *description);
const gchar* gf_event_get_name (const GfEvent *event);
const gchar* gf_event_get_i18n (const GfEvent *event);
const gchar* gf_event_get_description (const GfEvent *event);
void gf_event_freev (GfEvent **events);
"description" gchararray : Read / Write / Construct Only "i18n" gchararray : Read / Write / Construct Only "name" gchararray : Read / Write / Construct Only
typedef struct _GfEvent GfEvent;
GfEvent is an opaque structure that should not be used directly.
GfEvent* gf_event_new (const gchar *name, const gchar *i18n, const gchar *description);
Creates a new GfEvent.
const gchar* gf_event_get_name (const GfEvent *event);
Gets the name from event.
event : |
The GfEvent instance. |
| Returns : | The name of event or NULL.
|
const gchar* gf_event_get_i18n (const GfEvent *event);
Gets the translated name from event.
event : |
The GfEvent instance. |
| Returns : | The translated name of event or NULL.
|
const gchar* gf_event_get_description (const GfEvent *event);
Gets the description of event.
event : |
The GfEvent instance. |
| Returns : | The description of event or NULL.
|
| << Events | GfEventInfo >> |