/* * 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 * . */ namespace Matrix { /** * Event format received when synchronizing. */ public enum EventFormat { DEFAULT, /// event format will be omitted from the filter, so the server will use its default (usually {{{FEDERATION}}}) CLIENT, /// return the events in a format suitable for clients FEDERATION; /// return the raw event as receieved over federation } /** * Resizing methods for matrix_api_media_thumbnail(). */ public enum ResizeMethod { DEFAULT, /// use the server default value CROP, /// crop thumbnail to the requested size SCALE; /// scale thumbnail to the requested size } public string? _g_enum_value_to_nick(Type enum_type, int value, bool convert_dashes = true) { EnumClass enum_class = (EnumClass)enum_type.class_ref(); unowned EnumValue? enum_val = enum_class.get_value(value); if (enum_val != null) { var nick = enum_val.value_nick; if (convert_dashes) { return nick.replace("-", "_"); } return nick; } else { return null; } } }