Top |
#define | MATRIX_EVENT_TYPE_TYPING |
MatrixEventTyping * | matrix_event_typing_new () |
const gchar * | matrix_event_typing_get_room_id () |
void | matrix_event_typing_set_room_id () |
gchar ** | matrix_event_typing_get_user_ids () |
void | matrix_event_typing_set_user_ids () |
#define MATRIX_EVENT_TYPE_TYPING (matrix_event_typing_get_type ())
The type for MatrixEventTyping.
const gchar *
matrix_event_typing_get_room_id (MatrixEventTyping *self
);
Get and return the current value of the "room-id" property.
The ID of the room this event belongs to.
void matrix_event_typing_set_room_id (MatrixEventTyping *self
,const gchar *value
);
Set the value of the "room-id" property to value
.
The ID of the room this event belongs to.
self |
the MatrixEventTyping instance to modify |
|
value |
the new value of the "room-id" property |
gchar ** matrix_event_typing_get_user_ids (MatrixEventTyping *self
,int *result_length1
);
Get and return the current value of the "user-ids" property.
The list of user IDs typing in this room, if any.
void matrix_event_typing_set_user_ids (MatrixEventTyping *self
,gchar **value
,int value_length1
);
Set the value of the "user-ids" property to value
.
The list of user IDs typing in this room, if any.
self |
the MatrixEventTyping instance to modify |
|
value |
the new value of the "user-ids" property |
struct MatrixEventTyping { MatrixEventBase parent_instance; MatrixEventTypingPrivate * priv; };
Class to hold an m.typing event.
Informs the client of the list of users currently typing.
struct MatrixEventTypingClass { MatrixEventBaseClass parent_class; };
The class structure for MATRIX_EVENT_TYPE_TYPING
. All the fields in this structure are private and should never be accessed directly.