/* Generated file (by generator) */ /* * SPDX-FileCopyrightText: 2015 William Yu * * SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0 */ #if !defined (__LIBICAL_GLIB_H_INSIDE__) && !defined (LIBICAL_GLIB_COMPILATION) #error "Only can be included directly." #endif #ifndef I_CAL_TIMEZONE_H #define I_CAL_TIMEZONE_H #include #include G_BEGIN_DECLS #define I_CAL_TYPE_TIMEZONE \ (i_cal_timezone_get_type ()) LIBICAL_ICAL_EXPORT I_CAL_GLIB_DECLARE_DERIVABLE_TYPE(ICalTimezone, i_cal_timezone, I_CAL, TIMEZONE, ICalObject) /** * ICalTimezone: * * This is the ICalTimezone instance. */ /** * ICalTimezoneClass: * * This is the ICalTimezone class. */ struct _ICalTimezoneClass { /*< private >*/ ICalObjectClass parent; }; LIBICAL_ICAL_EXPORT ICalTimezone * i_cal_timezone_new (void); LIBICAL_ICAL_EXPORT ICalTimezone * i_cal_timezone_copy (const ICalTimezone *zone); LIBICAL_ICAL_EXPORT void i_cal_timezone_free (ICalTimezone *zone, gint free_struct); LIBICAL_ICAL_EXPORT void i_cal_timezone_set_tzid_prefix (const gchar *new_prefix); LIBICAL_ICAL_EXPORT const gchar * i_cal_timezone_get_tzid_prefix (void); LIBICAL_ICAL_EXPORT void i_cal_timezone_free_builtin_timezones (void); LIBICAL_ICAL_EXPORT ICalTimezone * i_cal_timezone_get_builtin_timezone (const gchar *location); LIBICAL_ICAL_EXPORT ICalTimezone * i_cal_timezone_get_builtin_timezone_from_offset (gint offset, const gchar *tzname); LIBICAL_ICAL_EXPORT ICalTimezone * i_cal_timezone_get_builtin_timezone_from_tzid (const gchar *tzid); LIBICAL_ICAL_EXPORT ICalArray * i_cal_timezone_get_builtin_timezones (void); LIBICAL_ICAL_EXPORT ICalTimezone * i_cal_timezone_get_utc_timezone (void); LIBICAL_ICAL_EXPORT const gchar * i_cal_timezone_get_tzid (const ICalTimezone *zone); LIBICAL_ICAL_EXPORT const gchar * i_cal_timezone_get_location (const ICalTimezone *zone); LIBICAL_ICAL_EXPORT const gchar * i_cal_timezone_get_tznames (const ICalTimezone *zone); LIBICAL_ICAL_EXPORT gdouble i_cal_timezone_get_latitude (const ICalTimezone *zone); LIBICAL_ICAL_EXPORT gdouble i_cal_timezone_get_longitude (const ICalTimezone *zone); LIBICAL_ICAL_EXPORT ICalComponent * i_cal_timezone_get_component (const ICalTimezone *zone); LIBICAL_ICAL_EXPORT gint i_cal_timezone_set_component (ICalTimezone *zone, ICalComponent *comp); LIBICAL_ICAL_EXPORT const gchar * i_cal_timezone_get_display_name (const ICalTimezone *zone); LIBICAL_ICAL_EXPORT void i_cal_time_convert_timezone (ICalTime *tt, ICalTimezone *from_zone, ICalTimezone *to_zone); LIBICAL_ICAL_EXPORT gint i_cal_timezone_get_utc_offset (ICalTimezone *zone, ICalTime *tt, gint *is_daylight); LIBICAL_ICAL_EXPORT gint i_cal_timezone_get_utc_offset_of_utc_time (ICalTimezone *zone, ICalTime *tt, gint *is_daylight); LIBICAL_ICAL_EXPORT void i_cal_time_timezone_expand_vtimezone (ICalComponent *comp, gint end_year, ICalArray *changes); LIBICAL_ICAL_EXPORT gchar * i_cal_timezone_get_location_from_vtimezone (ICalComponent *component); LIBICAL_ICAL_EXPORT gchar * i_cal_timezone_get_tznames_from_vtimezone (ICalComponent *component); LIBICAL_ICAL_EXPORT const gchar * i_cal_timezone_get_zone_directory (void); LIBICAL_ICAL_EXPORT void i_cal_timezone_set_zone_directory (const gchar *path); LIBICAL_ICAL_EXPORT void i_cal_timezone_free_zone_directory (void); LIBICAL_ICAL_EXPORT void i_cal_timezone_set_builtin_tzdata (gboolean set); LIBICAL_ICAL_EXPORT gboolean i_cal_timezone_get_builtin_tzdata (void); LIBICAL_ICAL_EXPORT gboolean i_cal_timezone_dump_changes (ICalTimezone *zone, gint max_year, FILE *fp); LIBICAL_ICAL_EXPORT ICalTimezone * i_cal_timezone_array_element_at (ICalArray *timezones, guint index); LIBICAL_ICAL_EXPORT void i_cal_timezone_truncate_vtimezone (ICalComponent *comp, const ICalTime *start, const ICalTime *end, gboolean ms_compatible); LIBICAL_ICAL_EXPORT const gchar * i_cal_timezone_get_system_zone_directory (void); LIBICAL_ICAL_EXPORT void i_cal_timezone_set_system_zone_directory (const gchar *path); G_END_DECLS #endif /* I_CAL_TIMEZONE_H */