Data Structures | |
| struct | _GTaskConnectionGroup |
| struct | _GTaskConnectionGroupClass |
| struct | _GTaskConnectionGroupPrivate |
Defines | |
| #define | GTASK_CONNECTION_GROUP_TYPE (gtask_connection_group_get_type()) |
| #define | GTASK_CONNECTION_GROUP(obj) |
| #define | GTASK_CONNECTION_GROUP_CLASS(klass) |
| #define | GTASK_IS_CONNECTION_GROUP(obj) |
| #define | GTASK_IS_CONNECTION_GROUP_CLASS(klass) |
| #define | GTASK_CONNECTION_GROUP_GET_CLASS(obj) |
Typedefs | |
| typedef _GTaskConnectionGroup | GTaskConnectionGroup |
| typedef _GTaskConnectionGroupPrivate | GTaskConnectionGroupPrivate |
| typedef _GTaskConnectionGroupClass | GTaskConnectionGroupClass |
Functions | |
| void | gtask_connection_group_class_init (GTaskConnectionGroupClass *klass) |
| void | gtask_connection_group_init (GTaskConnectionGroup *group, gpointer g_class) |
| initializes a GTaskConnectionGroup | |
| void | gtask_connection_group_dispose (GObject *obj) |
| void | gtask_connection_group_finalize (GObject *obj) |
| GType | gtask_connection_group_get_type (void) |
| registers the GTaskConnectionGroup object with the GObject system if that has yet to be done and then returns the GType for GTaskConnectionGroup | |
| GTaskConnectionGroup * | gtask_connection_group_new (void) |
| creates a new GTaskConnectionGroup | |
| void | gtask_connection_group_add_connection (GTaskConnectionGroup *group, GTaskConnection *conn) |
| Adds in the passed in GTaskConnection to the GTaskConnectionGroup. | |
| void | gtask_connection_group_clear (GTaskConnectionGroup *group) |
| Removes all GTaskConnections from the passed in GTaskConnectionGroup. | |
| GSList * | gtask_connection_group_get_list (GTaskConnectionGroup *group) |
| Returns the internal GSList that holds all of the GTaskConnections. | |
| GTaskConnection * | gtask_connection_group_get_connection_by_name (GTaskConnectionGroup *group, const gchar *conn_name) |
| Searches through the GTaskConnectionGroup's internal list and returns the GTaskConnection whose name matches the passed in name. | |
Variables | |
| gpointer | parent_class = NULL |
|
|
Value: (G_TYPE_CHECK_INSTANCE_CAST( (obj), \
GTASK_CONNECTION_GROUP_TYPE, \
GTaskConnectionGroup ))
Definition at line 21 of file gtask-connection-group.h. |
|
|
Value: (G_TYPE_CHECK_CLASS_CAST( (klass), \
GTASK_CONNECTION_GROUP_TYPE, \
GTaskConnectionGroupClass ))
Definition at line 26 of file gtask-connection-group.h. |
|
|
Value: (G_TYPE_INSTANCE_GET_CLASS( (obj), \
GTASK_CONNECTION_GROUP_TYPE, \
GTaskConnectionGroupClass ))
Definition at line 44 of file gtask-connection-group.h. |
|
|
returns the GType of GTaskConnectionGroup Definition at line 18 of file gtask-connection-group.h. |
|
|
Value: (G_TYPE_CHECK_INSTANCE_TYPE( (obj), \
GTASK_CONNECTION_GROUP_TYPE ))
Definition at line 34 of file gtask-connection-group.h. |
|
|
Value: (G_TYPE_CHECK_CLASS_TYPE( (klass), \
GTASK_CONNECTION_GROUP_TYPE ))
Definition at line 41 of file gtask-connection-group.h. |
|
|
Definition at line 13 of file gtask-connection-group.h. |
|
|
Definition at line 15 of file gtask-connection-group.h. |
|
|
Definition at line 14 of file gtask-connection-group.h. |
|
||||||||||||
|
Adds in the passed in GTaskConnection to the GTaskConnectionGroup.
Definition at line 140 of file gtask-connection-group.c. |
|
|
Definition at line 58 of file gtask-connection-group.c. |
|
|
Removes all GTaskConnections from the passed in GTaskConnectionGroup.
Definition at line 164 of file gtask-connection-group.c. |
|
|
Definition at line 85 of file gtask-connection-group.c. |
|
|
Definition at line 102 of file gtask-connection-group.c. |
|
||||||||||||
|
Searches through the GTaskConnectionGroup's internal list and returns the GTaskConnection whose name matches the passed in name.
Definition at line 209 of file gtask-connection-group.c. |
|
|
Returns the internal GSList that holds all of the GTaskConnections.
Definition at line 192 of file gtask-connection-group.c. |
|
|
registers the GTaskConnectionGroup object with the GObject system if that has yet to be done and then returns the GType for GTaskConnectionGroup
Definition at line 32 of file gtask-connection-group.c. |
|
||||||||||||
|
initializes a GTaskConnectionGroup
Definition at line 73 of file gtask-connection-group.c. |
|
|
creates a new GTaskConnectionGroup
Definition at line 121 of file gtask-connection-group.c. |
|
|
Definition at line 9 of file gtask-connection-group.c. |
1.3.4