gtimezone.h 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * Copyright © 2010 Codethink Limited
  3. *
  4. * This library is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU Lesser General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * licence, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  16. *
  17. * Author: Ryan Lortie <[email protected]>
  18. */
  19. #ifndef __G_TIME_ZONE_H__
  20. #define __G_TIME_ZONE_H__
  21. #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
  22. #error "Only <glib.h> can be included directly."
  23. #endif
  24. #include <glib/gtypes.h>
  25. G_BEGIN_DECLS
  26. typedef struct _GTimeZone GTimeZone;
  27. /**
  28. * GTimeType:
  29. * @G_TIME_TYPE_STANDARD: the time is in local standard time
  30. * @G_TIME_TYPE_DAYLIGHT: the time is in local daylight time
  31. * @G_TIME_TYPE_UNIVERSAL: the time is in UTC
  32. *
  33. * Disambiguates a given time in two ways.
  34. *
  35. * First, specifies if the given time is in universal or local time.
  36. *
  37. * Second, if the time is in local time, specifies if it is local
  38. * standard time or local daylight time. This is important for the case
  39. * where the same local time occurs twice (during daylight savings time
  40. * transitions, for example).
  41. */
  42. typedef enum
  43. {
  44. G_TIME_TYPE_STANDARD,
  45. G_TIME_TYPE_DAYLIGHT,
  46. G_TIME_TYPE_UNIVERSAL
  47. } GTimeType;
  48. GLIB_AVAILABLE_IN_ALL
  49. GTimeZone * g_time_zone_new (const gchar *identifier);
  50. GLIB_AVAILABLE_IN_ALL
  51. GTimeZone * g_time_zone_new_utc (void);
  52. GLIB_AVAILABLE_IN_ALL
  53. GTimeZone * g_time_zone_new_local (void);
  54. GLIB_AVAILABLE_IN_ALL
  55. GTimeZone * g_time_zone_ref (GTimeZone *tz);
  56. GLIB_AVAILABLE_IN_ALL
  57. void g_time_zone_unref (GTimeZone *tz);
  58. GLIB_AVAILABLE_IN_ALL
  59. gint g_time_zone_find_interval (GTimeZone *tz,
  60. GTimeType type,
  61. gint64 time_);
  62. GLIB_AVAILABLE_IN_ALL
  63. gint g_time_zone_adjust_time (GTimeZone *tz,
  64. GTimeType type,
  65. gint64 *time_);
  66. GLIB_AVAILABLE_IN_ALL
  67. const gchar * g_time_zone_get_abbreviation (GTimeZone *tz,
  68. gint interval);
  69. GLIB_AVAILABLE_IN_ALL
  70. gint32 g_time_zone_get_offset (GTimeZone *tz,
  71. gint interval);
  72. GLIB_AVAILABLE_IN_ALL
  73. gboolean g_time_zone_is_dst (GTimeZone *tz,
  74. gint interval);
  75. G_END_DECLS
  76. #endif /* __G_TIME_ZONE_H__ */