Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

210 righe
7.4 KiB

  1. /* GTK - The GIMP Toolkit
  2. * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
  3. *
  4. * GTK Calendar Widget
  5. * Copyright (C) 1998 Cesar Miquel and Shawn T. Amundson
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free
  19. * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21. /*
  22. * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
  23. * file for a list of people on the GTK+ Team. See the ChangeLog
  24. * files for a list of changes. These files are distributed with
  25. * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  26. */
  27. #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
  28. #error "Only <gtk/gtk.h> can be included directly."
  29. #endif
  30. #ifndef __GTK_CALENDAR_H__
  31. #define __GTK_CALENDAR_H__
  32. #include <gtk/gtkwidget.h>
  33. /* Not needed, retained for compatibility -Yosh */
  34. #include <gtk/gtksignal.h>
  35. G_BEGIN_DECLS
  36. #define GTK_TYPE_CALENDAR (gtk_calendar_get_type ())
  37. #define GTK_CALENDAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CALENDAR, GtkCalendar))
  38. #define GTK_CALENDAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CALENDAR, GtkCalendarClass))
  39. #define GTK_IS_CALENDAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CALENDAR))
  40. #define GTK_IS_CALENDAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CALENDAR))
  41. #define GTK_CALENDAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CALENDAR, GtkCalendarClass))
  42. typedef struct _GtkCalendar GtkCalendar;
  43. typedef struct _GtkCalendarClass GtkCalendarClass;
  44. typedef struct _GtkCalendarPrivate GtkCalendarPrivate;
  45. /**
  46. * GtkCalendarDisplayOptions:
  47. * @GTK_CALENDAR_SHOW_HEADING: Specifies that the month and year should be displayed.
  48. * @GTK_CALENDAR_SHOW_DAY_NAMES: Specifies that three letter day descriptions should be present.
  49. * @GTK_CALENDAR_NO_MONTH_CHANGE: Prevents the user from switching months with the calendar.
  50. * @GTK_CALENDAR_SHOW_WEEK_NUMBERS: Displays each week numbers of the current year, down the
  51. * left side of the calendar.
  52. * @GTK_CALENDAR_WEEK_START_MONDAY: Since GTK+ 2.4, this option is deprecated and ignored by GTK+.
  53. * The information on which day the calendar week starts is derived from the locale.
  54. * @GTK_CALENDAR_SHOW_DETAILS: Just show an indicator, not the full details
  55. * text when details are provided. See gtk_calendar_set_detail_func().
  56. *
  57. * These options can be used to influence the display and behaviour of a #GtkCalendar.
  58. */
  59. typedef enum
  60. {
  61. GTK_CALENDAR_SHOW_HEADING = 1 << 0,
  62. GTK_CALENDAR_SHOW_DAY_NAMES = 1 << 1,
  63. GTK_CALENDAR_NO_MONTH_CHANGE = 1 << 2,
  64. GTK_CALENDAR_SHOW_WEEK_NUMBERS = 1 << 3,
  65. GTK_CALENDAR_WEEK_START_MONDAY = 1 << 4,
  66. GTK_CALENDAR_SHOW_DETAILS = 1 << 5
  67. } GtkCalendarDisplayOptions;
  68. /**
  69. * GtkCalendarDetailFunc:
  70. * @calendar: a #GtkCalendar.
  71. * @year: the year for which details are needed.
  72. * @month: the month for which details are needed.
  73. * @day: the day of @month for which details are needed.
  74. * @user_data: the data passed with gtk_calendar_set_detail_func().
  75. *
  76. * This kind of functions provide Pango markup with detail information for the
  77. * specified day. Examples for such details are holidays or appointments. The
  78. * function returns %NULL when no information is available.
  79. *
  80. * Since: 2.14
  81. *
  82. * Return value: Newly allocated string with Pango markup with details
  83. * for the specified day, or %NULL.
  84. */
  85. typedef gchar* (*GtkCalendarDetailFunc) (GtkCalendar *calendar,
  86. guint year,
  87. guint month,
  88. guint day,
  89. gpointer user_data);
  90. struct _GtkCalendar
  91. {
  92. GtkWidget widget;
  93. GtkStyle *GSEAL (header_style);
  94. GtkStyle *GSEAL (label_style);
  95. gint GSEAL (month);
  96. gint GSEAL (year);
  97. gint GSEAL (selected_day);
  98. gint GSEAL (day_month[6][7]);
  99. gint GSEAL (day[6][7]);
  100. gint GSEAL (num_marked_dates);
  101. gint GSEAL (marked_date[31]);
  102. GtkCalendarDisplayOptions GSEAL (display_flags);
  103. GdkColor GSEAL (marked_date_color[31]);
  104. GdkGC *GSEAL (gc); /* unused */
  105. GdkGC *GSEAL (xor_gc); /* unused */
  106. gint GSEAL (focus_row);
  107. gint GSEAL (focus_col);
  108. gint GSEAL (highlight_row);
  109. gint GSEAL (highlight_col);
  110. GtkCalendarPrivate *GSEAL (priv);
  111. gchar GSEAL (grow_space [32]);
  112. /* Padding for future expansion */
  113. void (*_gtk_reserved1) (void);
  114. void (*_gtk_reserved2) (void);
  115. void (*_gtk_reserved3) (void);
  116. void (*_gtk_reserved4) (void);
  117. };
  118. struct _GtkCalendarClass
  119. {
  120. GtkWidgetClass parent_class;
  121. /* Signal handlers */
  122. void (* month_changed) (GtkCalendar *calendar);
  123. void (* day_selected) (GtkCalendar *calendar);
  124. void (* day_selected_double_click) (GtkCalendar *calendar);
  125. void (* prev_month) (GtkCalendar *calendar);
  126. void (* next_month) (GtkCalendar *calendar);
  127. void (* prev_year) (GtkCalendar *calendar);
  128. void (* next_year) (GtkCalendar *calendar);
  129. };
  130. GType gtk_calendar_get_type (void) G_GNUC_CONST;
  131. GtkWidget* gtk_calendar_new (void);
  132. gboolean gtk_calendar_select_month (GtkCalendar *calendar,
  133. guint month,
  134. guint year);
  135. void gtk_calendar_select_day (GtkCalendar *calendar,
  136. guint day);
  137. gboolean gtk_calendar_mark_day (GtkCalendar *calendar,
  138. guint day);
  139. gboolean gtk_calendar_unmark_day (GtkCalendar *calendar,
  140. guint day);
  141. void gtk_calendar_clear_marks (GtkCalendar *calendar);
  142. void gtk_calendar_set_display_options (GtkCalendar *calendar,
  143. GtkCalendarDisplayOptions flags);
  144. GtkCalendarDisplayOptions
  145. gtk_calendar_get_display_options (GtkCalendar *calendar);
  146. #ifndef GTK_DISABLE_DEPRECATED
  147. void gtk_calendar_display_options (GtkCalendar *calendar,
  148. GtkCalendarDisplayOptions flags);
  149. #endif
  150. void gtk_calendar_get_date (GtkCalendar *calendar,
  151. guint *year,
  152. guint *month,
  153. guint *day);
  154. void gtk_calendar_set_detail_func (GtkCalendar *calendar,
  155. GtkCalendarDetailFunc func,
  156. gpointer data,
  157. GDestroyNotify destroy);
  158. void gtk_calendar_set_detail_width_chars (GtkCalendar *calendar,
  159. gint chars);
  160. void gtk_calendar_set_detail_height_rows (GtkCalendar *calendar,
  161. gint rows);
  162. gint gtk_calendar_get_detail_width_chars (GtkCalendar *calendar);
  163. gint gtk_calendar_get_detail_height_rows (GtkCalendar *calendar);
  164. #ifndef GTK_DISABLE_DEPRECATED
  165. void gtk_calendar_freeze (GtkCalendar *calendar);
  166. void gtk_calendar_thaw (GtkCalendar *calendar);
  167. #endif
  168. G_END_DECLS
  169. #endif /* __GTK_CALENDAR_H__ */