/* * This file is part of matrix-glib-sdk * * matrix-glib-sdk is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either * version 3 of the License, or (at your option) any later version. * * matrix-glib-sdk is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with matrix-glib-sdk. If not, see * . */ #ifndef __MATRIX_GLIB_SDK_COMPACTS_H__ # define __MATRIX_GLIB_SDK_COMPACTS_H__ # include # include # include "matrix-types.h" G_BEGIN_DECLS # define MATRIX_TYPE_JSON_COMPACT matrix_json_compact_get_type() # define MATRIX_JSON_COMPACT(o) (G_TYPE_CHECK_INSTANCE_CAST((o), MATRIX_TYPE_JSON_COMPACT, MatrixJsonCompact)) # define MATRIX_JSON_COMPACT_CLASS(c) (G_TYPE_CHECK_CLASS_CAST((c), MATRIX_TYPE_JSON_COMPACT, MatrixJsonCompactClass)) # define MATRIX_IS_JSON_COMPACT(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), MATRIX_TYPE_JSON_COMPACT)) # define MATRIX_IS_JSON_COMPACT_CLASS(c) (G_TYPE_CHECK_CLASS_TYPE((c), MATRIX_TYPE_JSON_COMPACT)) # define MATRIX_JSON_COMPACT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), MATRIX_TYPE_JSON_COMPACT, MatrixJsonCompactClass)) typedef struct _MatrixJsonCompactClass MatrixJsonCompactClass; typedef struct _MatrixJsonCompact MatrixJsonCompact; void matrix_json_compact_unref(MatrixJsonCompact *json_compact); G_DEFINE_AUTOPTR_CLEANUP_FUNC(MatrixJsonCompact, matrix_json_compact_unref) struct _MatrixJsonCompact { GTypeInstance parent_instance; /* < private > */ volatile int refcount; }; struct _MatrixJsonCompactClass { GTypeClass parent_class; void (*finalize)(MatrixJsonCompact *json_compact); JsonNode *(*get_json_node)(MatrixJsonCompact *json_compact, GError **error); }; GType matrix_json_compact_get_type(void) G_GNUC_CONST; MatrixJsonCompact *matrix_json_compact_construct(GType object_type); MatrixJsonCompact *matrix_json_compact_ref(MatrixJsonCompact *json_compact); JsonNode *matrix_json_compact_get_json_node(MatrixJsonCompact *json_compact, GError **error); gchar *matrix_json_compact_get_json_data(MatrixJsonCompact *json_compact, gsize *datalen, GError **error); #define MATRIX_TYPE_FILTER_RULES matrix_filter_rules_get_type() G_DECLARE_DERIVABLE_TYPE(MatrixFilterRules, matrix_filter_rules, MATRIX, FILTER_RULES, MatrixJsonCompact) struct _MatrixFilterRulesClass { MatrixJsonCompactClass parent_class; }; MatrixFilterRules *matrix_filter_rules_new(void); MatrixFilterRules *matrix_filter_rules_construct(GType object_type); void matrix_filter_rules_set_limit(MatrixFilterRules *filter_rules, guint limit); guint matrix_filter_rules_get_limit(MatrixFilterRules *filter_rules); void matrix_filter_rules_set_types(MatrixFilterRules *filter_rules, gchar **types, int n_types); gchar **matrix_filter_rules_get_types(MatrixFilterRules *filter_rules, int *n_types); void matrix_filter_rules_set_excluded_types(MatrixFilterRules *filter_rules, gchar **excluded_types, int n_excluded_types); gchar **matrix_filter_rules_get_excluded_types(MatrixFilterRules *filter_rules, int *n_excluded_types); void matrix_filter_rules_set_senders(MatrixFilterRules *filter_rules, gchar **senders, int n_senders); gchar **matrix_filter_rules_get_senders(MatrixFilterRules *filter_rules, int *n_senders); void matrix_filter_rules_set_excluded_senders(MatrixFilterRules *filter_rules, gchar **excluded_senders, int n_excluded_senders); gchar **matrix_filter_rules_get_excluded_senders(MatrixFilterRules *filter_rules, int *n_excluded_senders); void matrix_filter_rules_set_rooms(MatrixFilterRules *filter_rules, gchar **rooms, int n_rooms); gchar **matrix_filter_rules_get_rooms(MatrixFilterRules *filter_rules, int *n_rooms); void matrix_filter_rules_set_excluded_rooms(MatrixFilterRules *filter_rules, gchar **excluded_rooms, int n_excluded_rooms); gchar **matrix_filter_rules_get_excluded_rooms(MatrixFilterRules *filter_rules, int *n_excluded_rooms); # define MATRIX_TYPE_ROOM_FILTER matrix_room_filter_get_type() G_DECLARE_DERIVABLE_TYPE(MatrixRoomFilter, matrix_room_filter, MATRIX, ROOM_FILTER, MatrixJsonCompact) struct _MatrixRoomFilterClass { MatrixJsonCompactClass parent_class; }; MatrixRoomFilter *matrix_room_filter_new(void); gboolean matrix_room_filter_get_include_leave(MatrixRoomFilter *room_filter); void matrix_room_filter_set_include_leave(MatrixRoomFilter *room_filter, gboolean include_leave); MatrixFilterRules *matrix_room_filter_get_ephemeral(MatrixRoomFilter *room_filter); void matrix_room_filter_set_ephemeral(MatrixRoomFilter *room_filter, MatrixFilterRules *ephemeral_rules); MatrixFilterRules *matrix_room_filter_get_state(MatrixRoomFilter *room_filter); void matrix_room_filter_set_state(MatrixRoomFilter *room_filter, MatrixFilterRules *state_rules); MatrixFilterRules *matrix_room_filter_get_timeline(MatrixRoomFilter *room_filter); void matrix_room_filter_set_timeline(MatrixRoomFilter *room_filter, MatrixFilterRules *timeline_rules); # define MATRIX_TYPE_FILTER matrix_filter_get_type() G_DECLARE_DERIVABLE_TYPE(MatrixFilter, matrix_filter, MATRIX, FILTER, MatrixJsonCompact) struct _MatrixFilterClass { MatrixJsonCompactClass parent_class; }; MatrixFilter *matrix_filter_new(void); gchar **matrix_filter_get_event_fields(MatrixFilter *filter, int *n_event_fields); void matrix_filter_set_event_fields(MatrixFilter *filter, gchar **event_fields, int n_event_fields); MatrixEventFormat matrix_filter_get_event_format(MatrixFilter *filter); void matrix_filter_set_event_format(MatrixFilter *filter, MatrixEventFormat event_format); MatrixFilterRules *matrix_filter_get_presence_filter(MatrixFilter *filter); void matrix_filter_set_presence_filter(MatrixFilter *filter, MatrixFilterRules *presence_filter); MatrixRoomFilter *matrix_filter_get_room_filter(MatrixFilter *filter); void matrix_filter_set_room_filter(MatrixFilter *filter, MatrixRoomFilter *room_filter); # define MATRIX_TYPE_3PID_CREDENTIAL matrix_3pid_credential_get_type() G_DECLARE_DERIVABLE_TYPE(Matrix3PidCredential, matrix_3pid_credential, MATRIX, 3PID_CREDENTIAL, MatrixJsonCompact) struct _Matrix3PidCredentialClass { MatrixJsonCompactClass parent_class; }; Matrix3PidCredential *matrix_3pid_credential_new(void); const gchar *matrix_3pid_credential_get_id_server(Matrix3PidCredential *credential); void matrix_3pid_credential_set_id_server(Matrix3PidCredential *credential, const gchar *id_server); const gchar *matrix_3pid_credential_get_session_id(Matrix3PidCredential *credential); void matrix_3pid_credential_set_session_id(Matrix3PidCredential *credential, const gchar *session_id); const gchar *matrix_3pid_credential_get_client_secret(Matrix3PidCredential *credential); void matrix_3pid_credential_set_client_secret(Matrix3PidCredential *credential, const gchar *client_secret); # define MATRIX_TYPE_PUSHER matrix_pusher_get_type() G_DECLARE_DERIVABLE_TYPE(MatrixPusher, matrix_pusher, MATRIX, PUSHER, MatrixJsonCompact) struct _MatrixPusherClass { MatrixJsonCompactClass parent_class; }; MatrixPusher *matrix_pusher_new(void); const gchar *matrix_pusher_get_device_display_name(MatrixPusher *pusher); void matrix_pusher_set_device_display_name(MatrixPusher *pusher, const gchar *device_display_name); const gchar *matrix_pusher_get_app_display_name(MatrixPusher *pusher); void matrix_pusher_set_app_display_name(MatrixPusher *pusher, const gchar *app_display_name); const gchar *matrix_pusher_get_app_id(MatrixPusher *pusher); void matrix_pusher_set_app_id(MatrixPusher *pusher, const gchar *app_id); gboolean matrix_pusher_get_append(MatrixPusher *pusher); void matrix_pusher_set_append(MatrixPusher *pusher, gboolean append); const gchar *matrix_pusher_get_kind(MatrixPusher *pusher); void matrix_pusher_set_kind(MatrixPusher *pusher, const gchar *kind); const gchar *matrix_pusher_get_lang(MatrixPusher *pusher); void matrix_pusher_set_lang(MatrixPusher *pusher, const gchar *lang); const gchar *matrix_pusher_get_profile_tag(MatrixPusher *pusher); void matrix_pusher_set_profile_tag(MatrixPusher *pusher, const gchar *profile_tag); const gchar *matrix_pusher_get_pushkey(MatrixPusher *pusher); void matrix_pusher_set_pushkey(MatrixPusher *pusher, const gchar *pushkey); JsonNode *matrix_pusher_get_data(MatrixPusher *pusher); void matrix_pusher_set_data(MatrixPusher *pusher, JsonNode *data); # define MATRIX_TYPE_EVENT_CONTEXT matrix_event_context_get_type() G_DECLARE_DERIVABLE_TYPE(MatrixEventContext, matrix_event_context, MATRIX, EVENT_CONTEXT, MatrixJsonCompact) struct _MatrixEventContextClass { MatrixJsonCompactClass parent_class; }; MatrixEventContext *matrix_event_context_new (void); gint matrix_event_context_get_before_limit (MatrixEventContext *event_context); void matrix_event_context_set_before_limit (MatrixEventContext *event_context, gint before_limit); gint matrix_event_context_get_after_limit (MatrixEventContext *event_context); void matrix_event_context_set_after_limit (MatrixEventContext *event_context, gint after_limit); gboolean matrix_event_context_get_include_profile (MatrixEventContext *event_context); void matrix_event_context_set_include_profile (MatrixEventContext *event_context, gboolean include_profile); # define MATRIX_TYPE_SEARCH_GROUPING matrix_search_grouping_get_type() G_DECLARE_DERIVABLE_TYPE(MatrixSearchGrouping, matrix_search_grouping, MATRIX, SEARCH_GROUPING, MatrixJsonCompact) struct _MatrixSearchGroupingClass { MatrixJsonCompactClass parent_class; }; MatrixSearchGrouping *matrix_search_grouping_new(void); MatrixSearchGroupBy matrix_search_grouping_get_key(MatrixSearchGrouping *search_grouping); void matrix_search_grouping_set_key(MatrixSearchGrouping *search_grouping, MatrixSearchGroupBy key); # define MATRIX_TYPE_SEARCH_GROUPINGS matrix_search_groupings_get_type() G_DECLARE_DERIVABLE_TYPE(MatrixSearchGroupings, matrix_search_groupings, MATRIX, SEARCH_GROUPINGS, MatrixJsonCompact) struct _MatrixSearchGroupingsClass { MatrixJsonCompactClass parent_class; }; MatrixSearchGroupings *matrix_search_groupings_new(void); MatrixSearchGrouping **matrix_search_groupings_get_group_by(MatrixSearchGroupings *search_groupings, int *n_group_by); void matrix_search_groupings_set_group_by(MatrixSearchGroupings *search_groupings, MatrixSearchGrouping **group_by, int n_group_by); # define MATRIX_TYPE_SEARCH_ROOM_EVENTS matrix_search_room_events_get_type() G_DECLARE_DERIVABLE_TYPE(MatrixSearchRoomEvents, matrix_search_room_events, MATRIX, SEARCH_ROOM_EVENTS, MatrixJsonCompact) struct _MatrixSearchRoomEventsClass { MatrixJsonCompactClass parent_class; }; MatrixSearchRoomEvents *matrix_search_room_events_new(void); MatrixSearchOrder matrix_search_room_events_get_order_by(MatrixSearchRoomEvents *search_room_events); void matrix_search_room_events_set_order_by(MatrixSearchRoomEvents *search_room_events, MatrixSearchOrder order_by); MatrixSearchKey *matrix_search_room_events_get_keys(MatrixSearchRoomEvents *search_room_events, guint *n_keys); void matrix_search_room_events_set_keys(MatrixSearchRoomEvents *search_room_events, MatrixSearchKey *keys, guint n_keys); MatrixEventContext *matrix_search_room_events_get_event_context(MatrixSearchRoomEvents *search_room_events); void matrix_search_room_events_set_event_context(MatrixSearchRoomEvents *search_room_events, MatrixEventContext *event_context); gboolean matrix_search_room_events_get_include_state(MatrixSearchRoomEvents *search_room_events); void matrix_search_room_events_set_include_state(MatrixSearchRoomEvents *search_room_events, gboolean include_state); const gchar *matrix_search_room_events_get_filter_id(MatrixSearchRoomEvents *search_room_events); void matrix_search_room_events_set_filter_id(MatrixSearchRoomEvents *search_room_events, const gchar *filter_id); MatrixFilter *matrix_search_room_events_get_filter(MatrixSearchRoomEvents *search_room_events); void matrix_search_room_events_set_filter(MatrixSearchRoomEvents *search_room_events, MatrixFilter *filter); const gchar *matrix_search_room_events_get_search_term(MatrixSearchRoomEvents *search_room_events); void matrix_search_room_events_set_search_term(MatrixSearchRoomEvents *search_room_events, const gchar *search_term); MatrixSearchGroupings *matrix_search_room_events_get_groupings(MatrixSearchRoomEvents *search_room_events); void matrix_search_room_events_set_groupings(MatrixSearchRoomEvents *search_room_events, MatrixSearchGroupings *groupings); # define MATRIX_TYPE_SEARCH_CATEGORIES matrix_search_categories_get_type() G_DECLARE_DERIVABLE_TYPE(MatrixSearchCategories, matrix_search_categories, MATRIX, SEARCH_CATEGORIES, MatrixJsonCompact) struct _MatrixSearchCategoriesClass { MatrixJsonCompactClass parent_class; }; MatrixSearchCategories *matrix_search_categories_new(void); MatrixSearchRoomEvents *matrix_search_categories_get_room_events(MatrixSearchCategories *search_categories); void matrix_search_categories_set_room_events(MatrixSearchCategories *search_categories, MatrixSearchRoomEvents *room_events); G_END_DECLS #endif /* __MATRIX_GLIB_SDK_COMPACTS_H__ */