#include <gslist.h>
#include <gthread.h>
Go to the source code of this file.
#define g_main_is_running | ( | loop | ) | g_main_loop_is_running(loop) |
#define g_main_iteration | ( | may_block | ) | g_main_context_iteration (NULL, may_block) |
#define g_main_new | ( | is_running | ) | g_main_loop_new (NULL, is_running); |
#define g_main_set_poll_func | ( | func | ) | g_main_context_set_poll_func (NULL, func) |
#define G_PRIORITY_DEFAULT 0 |
typedef typedefG_BEGIN_DECLS struct _GMainContext GMainContext |
typedef struct _GSourceCallbackFuncs GSourceCallbackFuncs |
typedef struct _GSourceFuncs GSourceFuncs |
void g_get_current_time | ( | GTimeVal * | result | ) |
guint g_idle_add | ( | GSourceFunc | function, | |
gpointer | data | |||
) |
guint g_idle_add_full | ( | gint | priority, | |
GSourceFunc | function, | |||
gpointer | data, | |||
GDestroyNotify | notify | |||
) |
GSource* g_idle_source_new | ( | void | ) |
void g_main_context_add_poll | ( | GMainContext * | context, | |
GPollFD * | fd, | |||
gint | priority | |||
) |
gint g_main_context_check | ( | GMainContext * | context, | |
gint | max_priority, | |||
GPollFD * | fds, | |||
gint | n_fds | |||
) |
GMainContext* g_main_context_default | ( | void | ) |
void g_main_context_dispatch | ( | GMainContext * | context | ) |
GSource* g_main_context_find_source_by_funcs_user_data | ( | GMainContext * | context, | |
GSourceFuncs * | funcs, | |||
gpointer | user_data | |||
) |
GSource* g_main_context_find_source_by_id | ( | GMainContext * | context, | |
guint | id | |||
) |
GSource* g_main_context_find_source_by_user_data | ( | GMainContext * | context, | |
gpointer | user_data | |||
) |
GMainContext* g_main_context_get | ( | GThread * | thread | ) |
GPollFunc g_main_context_get_poll_func | ( | GMainContext * | context | ) |
gboolean g_main_context_iteration | ( | GMainContext * | context, | |
gboolean | may_block | |||
) |
gboolean g_main_context_pending | ( | GMainContext * | context | ) |
gboolean g_main_context_prepare | ( | GMainContext * | context, | |
gint * | priority | |||
) |
gint g_main_context_query | ( | GMainContext * | context, | |
gint | max_priority, | |||
gint * | timeout, | |||
GPollFD * | fds, | |||
gint | n_fds | |||
) |
void g_main_context_remove_poll | ( | GMainContext * | context, | |
GPollFD * | fd | |||
) |
void g_main_context_set_poll_func | ( | GMainContext * | context, | |
GPollFunc | func | |||
) |
void g_main_loop_destroy | ( | GMainLoop * | loop | ) |
GMainLoop* g_main_loop_new | ( | GMainContext * | context, | |
gboolean | is_running | |||
) |
void g_main_loop_quit | ( | GMainLoop * | loop | ) |
void g_main_loop_run | ( | GMainLoop * | loop | ) |
Referenced by gdk_events_init().
guint g_source_attach | ( | GSource * | source, | |
GMainContext * | context | |||
) |
Referenced by gdk_events_init().
void g_source_destroy | ( | GSource * | source | ) |
GMainContext* g_source_get_context | ( | GSource * | source | ) |
GSource* g_source_new | ( | GSourceFuncs * | source_funcs, | |
guint | struct_size | |||
) |
Referenced by gdk_events_init().
Referenced by gdk_input_remove().
gboolean g_source_remove_by_funcs_user_data | ( | GSourceFuncs * | funcs, | |
gpointer | user_data | |||
) |
void g_source_set_callback | ( | GSource * | source, | |
GSourceFunc | func, | |||
gpointer | data, | |||
GDestroyNotify | notify | |||
) |
void g_source_set_callback_indirect | ( | GSource * | source, | |
gpointer | callback_data, | |||
GSourceCallbackFuncs * | callback_funcs | |||
) |
Referenced by gdk_events_init().
Referenced by gdk_events_init().
void g_source_unref | ( | GSource * | source | ) |
guint g_timeout_add | ( | guint | interval, | |
GSourceFunc | function, | |||
gpointer | data | |||
) |
guint g_timeout_add_full | ( | gint | priority, | |
guint | interval, | |||
GSourceFunc | function, | |||
gpointer | data, | |||
GDestroyNotify | notify | |||
) |