]> Pileus Git - ~andy/gtk/blob - gtk/gtkcalendar.c
calendar: Use the widget state flags as a base for drawing arrows
[~andy/gtk] / gtk / gtkcalendar.c
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, Shawn T. Amundson and Mattias Groenlund
6  *
7  * lib_date routines
8  * Copyright (c) 1995, 1996, 1997, 1998 by Steffen Beyer
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free
22  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */
24
25 /*
26  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
27  * file for a list of people on the GTK+ Team.  See the ChangeLog
28  * files for a list of changes.  These files are distributed with
29  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
30  */
31
32 /**
33  * SECTION:gtkcalendar
34  * @Short_description: Displays a calendar and allows the user to select a date
35  * @Title: GtkCalendar
36  *
37  * #GtkCalendar is a widget that displays a Gregorian calendar, one month
38  * at a time. It can be created with gtk_calendar_new().
39  *
40  * The month and year currently displayed can be altered with
41  * gtk_calendar_select_month(). The exact day can be selected from the
42  * displayed month using gtk_calendar_select_day().
43  *
44  * To place a visual marker on a particular day, use gtk_calendar_mark_day()
45  * and to remove the marker, gtk_calendar_unmark_day(). Alternative, all
46  * marks can be cleared with gtk_calendar_clear_marks().
47  *
48  * The way in which the calendar itself is displayed can be altered using
49  * gtk_calendar_set_display_options().
50  *
51  * The selected date can be retrieved from a #GtkCalendar using
52  * gtk_calendar_get_date().
53  *
54  * Users should be aware that, although the Gregorian calendar is the legal
55  * calendar in most countries, it was adopted progressively between 1582 and
56  * 1929. Display before these dates is likely to be historically incorrect.
57  */
58
59 #include "config.h"
60
61 #ifdef HAVE_SYS_TIME_H
62 #include <sys/time.h>
63 #endif
64 #ifdef HAVE__NL_TIME_FIRST_WEEKDAY
65 #include <langinfo.h>
66 #endif
67 #include <string.h>
68 #include <stdlib.h>
69 #include <time.h>
70
71 #include <glib.h>
72
73 #ifdef G_OS_WIN32
74 #include <windows.h>
75 #endif
76
77 #include "gtkcalendar.h"
78 #include "gtkdnd.h"
79 #include "gtkintl.h"
80 #include "gtkmain.h"
81 #include "gtkmarshalers.h"
82 #include "gtktooltip.h"
83 #include "gtkprivate.h"
84
85 /***************************************************************************/
86 /* The following date routines are taken from the lib_date package.
87  * They have been minimally edited to avoid conflict with types defined
88  * in win32 headers.
89  */
90
91 static const guint month_length[2][13] =
92 {
93   { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
94   { 0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
95 };
96
97 static const guint days_in_months[2][14] =
98 {
99   { 0, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
100   { 0, 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
101 };
102
103 static glong  calc_days(guint year, guint mm, guint dd);
104 static guint  day_of_week(guint year, guint mm, guint dd);
105 static glong  dates_difference(guint year1, guint mm1, guint dd1,
106                                guint year2, guint mm2, guint dd2);
107 static guint  weeks_in_year(guint year);
108
109 static gboolean
110 leap (guint year)
111 {
112   return((((year % 4) == 0) && ((year % 100) != 0)) || ((year % 400) == 0));
113 }
114
115 static guint
116 day_of_week (guint year, guint mm, guint dd)
117 {
118   glong  days;
119
120   days = calc_days(year, mm, dd);
121   if (days > 0L)
122     {
123       days--;
124       days %= 7L;
125       days++;
126     }
127   return( (guint) days );
128 }
129
130 static guint weeks_in_year(guint year)
131 {
132   return(52 + ((day_of_week(year,1,1)==4) || (day_of_week(year,12,31)==4)));
133 }
134
135 static gboolean
136 check_date(guint year, guint mm, guint dd)
137 {
138   if (year < 1) return FALSE;
139   if ((mm < 1) || (mm > 12)) return FALSE;
140   if ((dd < 1) || (dd > month_length[leap(year)][mm])) return FALSE;
141   return TRUE;
142 }
143
144 static guint
145 week_number(guint year, guint mm, guint dd)
146 {
147   guint first;
148
149   first = day_of_week(year,1,1) - 1;
150   return( (guint) ( (dates_difference(year,1,1, year,mm,dd) + first) / 7L ) +
151           (first < 4) );
152 }
153
154 static glong
155 year_to_days(guint year)
156 {
157   return( year * 365L + (year / 4) - (year / 100) + (year / 400) );
158 }
159
160
161 static glong
162 calc_days(guint year, guint mm, guint dd)
163 {
164   gboolean lp;
165
166   if (year < 1) return(0L);
167   if ((mm < 1) || (mm > 12)) return(0L);
168   if ((dd < 1) || (dd > month_length[(lp = leap(year))][mm])) return(0L);
169   return( year_to_days(--year) + days_in_months[lp][mm] + dd );
170 }
171
172 static gboolean
173 week_of_year(guint *week, guint *year, guint mm, guint dd)
174 {
175   if (check_date(*year,mm,dd))
176     {
177       *week = week_number(*year,mm,dd);
178       if (*week == 0)
179         *week = weeks_in_year(--(*year));
180       else if (*week > weeks_in_year(*year))
181         {
182           *week = 1;
183           (*year)++;
184         }
185       return TRUE;
186     }
187   return FALSE;
188 }
189
190 static glong
191 dates_difference(guint year1, guint mm1, guint dd1,
192                  guint year2, guint mm2, guint dd2)
193 {
194   return( calc_days(year2, mm2, dd2) - calc_days(year1, mm1, dd1) );
195 }
196
197 /*** END OF lib_date routines ********************************************/
198
199 /* Spacing around day/week headers and main area, inside those windows */
200 #define CALENDAR_MARGIN          0
201
202 #define DAY_XSEP                 0 /* not really good for small calendar */
203 #define DAY_YSEP                 0 /* not really good for small calendar */
204
205 #define SCROLL_DELAY_FACTOR      5
206
207 enum {
208   ARROW_YEAR_LEFT,
209   ARROW_YEAR_RIGHT,
210   ARROW_MONTH_LEFT,
211   ARROW_MONTH_RIGHT
212 };
213
214 enum {
215   MONTH_PREV,
216   MONTH_CURRENT,
217   MONTH_NEXT
218 };
219
220 enum {
221   MONTH_CHANGED_SIGNAL,
222   DAY_SELECTED_SIGNAL,
223   DAY_SELECTED_DOUBLE_CLICK_SIGNAL,
224   PREV_MONTH_SIGNAL,
225   NEXT_MONTH_SIGNAL,
226   PREV_YEAR_SIGNAL,
227   NEXT_YEAR_SIGNAL,
228   LAST_SIGNAL
229 };
230
231 enum
232 {
233   PROP_0,
234   PROP_YEAR,
235   PROP_MONTH,
236   PROP_DAY,
237   PROP_SHOW_HEADING,
238   PROP_SHOW_DAY_NAMES,
239   PROP_NO_MONTH_CHANGE,
240   PROP_SHOW_WEEK_NUMBERS,
241   PROP_SHOW_DETAILS,
242   PROP_DETAIL_WIDTH_CHARS,
243   PROP_DETAIL_HEIGHT_ROWS
244 };
245
246 static guint gtk_calendar_signals[LAST_SIGNAL] = { 0 };
247
248 struct _GtkCalendarPrivate
249 {
250   GtkCalendarDisplayOptions display_flags;
251
252   GdkWindow *main_win;
253   GdkWindow *arrow_win[4];
254
255   gchar grow_space [32];
256
257   gint  month;
258   gint  year;
259   gint  selected_day;
260
261   gint  day_month[6][7];
262   gint  day[6][7];
263
264   gint  num_marked_dates;
265   gint  marked_date[31];
266
267   gint  focus_row;
268   gint  focus_col;
269
270   guint header_h;
271   guint day_name_h;
272   guint main_h;
273
274   guint arrow_prelight : 4;
275   guint arrow_width;
276   guint max_month_width;
277   guint max_year_width;
278
279   guint day_width;
280   guint week_width;
281
282   guint min_day_width;
283   guint max_day_char_width;
284   guint max_day_char_ascent;
285   guint max_day_char_descent;
286   guint max_label_char_ascent;
287   guint max_label_char_descent;
288   guint max_week_char_width;
289
290   /* flags */
291   guint year_before : 1;
292
293   guint need_timer  : 1;
294
295   guint in_drag : 1;
296   guint drag_highlight : 1;
297
298   guint32 timer;
299   gint click_child;
300
301   gint week_start;
302
303   gint drag_start_x;
304   gint drag_start_y;
305
306   /* Optional callback, used to display extra information for each day. */
307   GtkCalendarDetailFunc detail_func;
308   gpointer              detail_func_user_data;
309   GDestroyNotify        detail_func_destroy;
310
311   /* Size requistion for details provided by the hook. */
312   gint detail_height_rows;
313   gint detail_width_chars;
314   gint detail_overflow[6];
315 };
316
317 #define GTK_CALENDAR_GET_PRIVATE(widget)  (GTK_CALENDAR (widget)->priv)
318
319 static void gtk_calendar_finalize     (GObject      *calendar);
320 static void gtk_calendar_destroy      (GtkWidget    *widget);
321 static void gtk_calendar_set_property (GObject      *object,
322                                        guint         prop_id,
323                                        const GValue *value,
324                                        GParamSpec   *pspec);
325 static void gtk_calendar_get_property (GObject      *object,
326                                        guint         prop_id,
327                                        GValue       *value,
328                                        GParamSpec   *pspec);
329
330 static void     gtk_calendar_realize        (GtkWidget        *widget);
331 static void     gtk_calendar_unrealize      (GtkWidget        *widget);
332 static void     gtk_calendar_map            (GtkWidget        *widget);
333 static void     gtk_calendar_unmap          (GtkWidget        *widget);
334 static void     gtk_calendar_get_preferred_width  (GtkWidget   *widget,
335                                                    gint        *minimum,
336                                                    gint        *natural);
337 static void     gtk_calendar_get_preferred_height (GtkWidget   *widget,
338                                                    gint        *minimum,
339                                                    gint        *natural);
340 static void     gtk_calendar_size_allocate  (GtkWidget        *widget,
341                                              GtkAllocation    *allocation);
342 static gboolean gtk_calendar_draw           (GtkWidget        *widget,
343                                              cairo_t          *cr);
344 static gboolean gtk_calendar_button_press   (GtkWidget        *widget,
345                                              GdkEventButton   *event);
346 static gboolean gtk_calendar_button_release (GtkWidget        *widget,
347                                              GdkEventButton   *event);
348 static gboolean gtk_calendar_motion_notify  (GtkWidget        *widget,
349                                              GdkEventMotion   *event);
350 static gboolean gtk_calendar_enter_notify   (GtkWidget        *widget,
351                                              GdkEventCrossing *event);
352 static gboolean gtk_calendar_leave_notify   (GtkWidget        *widget,
353                                              GdkEventCrossing *event);
354 static gboolean gtk_calendar_scroll         (GtkWidget        *widget,
355                                              GdkEventScroll   *event);
356 static gboolean gtk_calendar_key_press      (GtkWidget        *widget,
357                                              GdkEventKey      *event);
358 static gboolean gtk_calendar_focus_out      (GtkWidget        *widget,
359                                              GdkEventFocus    *event);
360 static void     gtk_calendar_grab_notify    (GtkWidget        *widget,
361                                              gboolean          was_grabbed);
362 static void     gtk_calendar_state_flags_changed  (GtkWidget     *widget,
363                                                    GtkStateFlags  previous_state);
364 static gboolean gtk_calendar_query_tooltip  (GtkWidget        *widget,
365                                              gint              x,
366                                              gint              y,
367                                              gboolean          keyboard_mode,
368                                              GtkTooltip       *tooltip);
369
370 static void     gtk_calendar_drag_data_get      (GtkWidget        *widget,
371                                                  GdkDragContext   *context,
372                                                  GtkSelectionData *selection_data,
373                                                  guint             info,
374                                                  guint             time);
375 static void     gtk_calendar_drag_data_received (GtkWidget        *widget,
376                                                  GdkDragContext   *context,
377                                                  gint              x,
378                                                  gint              y,
379                                                  GtkSelectionData *selection_data,
380                                                  guint             info,
381                                                  guint             time);
382 static gboolean gtk_calendar_drag_motion        (GtkWidget        *widget,
383                                                  GdkDragContext   *context,
384                                                  gint              x,
385                                                  gint              y,
386                                                  guint             time);
387 static void     gtk_calendar_drag_leave         (GtkWidget        *widget,
388                                                  GdkDragContext   *context,
389                                                  guint             time);
390 static gboolean gtk_calendar_drag_drop          (GtkWidget        *widget,
391                                                  GdkDragContext   *context,
392                                                  gint              x,
393                                                  gint              y,
394                                                  guint             time);
395
396
397 static void calendar_start_spinning (GtkCalendar *calendar,
398                                      gint         click_child);
399 static void calendar_stop_spinning  (GtkCalendar *calendar);
400
401 static void calendar_invalidate_day     (GtkCalendar *widget,
402                                          gint       row,
403                                          gint       col);
404 static void calendar_invalidate_day_num (GtkCalendar *widget,
405                                          gint       day);
406 static void calendar_invalidate_arrow   (GtkCalendar *widget,
407                                          guint      arrow);
408
409 static void calendar_compute_days      (GtkCalendar *calendar);
410 static gint calendar_get_xsep          (GtkCalendar *calendar);
411 static gint calendar_get_ysep          (GtkCalendar *calendar);
412 static gint calendar_get_inner_border  (GtkCalendar *calendar);
413
414 static char    *default_abbreviated_dayname[7];
415 static char    *default_monthname[12];
416
417 G_DEFINE_TYPE (GtkCalendar, gtk_calendar, GTK_TYPE_WIDGET)
418
419 static void
420 gtk_calendar_class_init (GtkCalendarClass *class)
421 {
422   GObjectClass   *gobject_class;
423   GtkWidgetClass *widget_class;
424
425   gobject_class = (GObjectClass*)  class;
426   widget_class = (GtkWidgetClass*) class;
427
428   gobject_class->set_property = gtk_calendar_set_property;
429   gobject_class->get_property = gtk_calendar_get_property;
430   gobject_class->finalize = gtk_calendar_finalize;
431
432   widget_class->destroy = gtk_calendar_destroy;
433   widget_class->realize = gtk_calendar_realize;
434   widget_class->unrealize = gtk_calendar_unrealize;
435   widget_class->map = gtk_calendar_map;
436   widget_class->unmap = gtk_calendar_unmap;
437   widget_class->draw = gtk_calendar_draw;
438   widget_class->get_preferred_width = gtk_calendar_get_preferred_width;
439   widget_class->get_preferred_height = gtk_calendar_get_preferred_height;
440   widget_class->size_allocate = gtk_calendar_size_allocate;
441   widget_class->button_press_event = gtk_calendar_button_press;
442   widget_class->button_release_event = gtk_calendar_button_release;
443   widget_class->motion_notify_event = gtk_calendar_motion_notify;
444   widget_class->enter_notify_event = gtk_calendar_enter_notify;
445   widget_class->leave_notify_event = gtk_calendar_leave_notify;
446   widget_class->key_press_event = gtk_calendar_key_press;
447   widget_class->scroll_event = gtk_calendar_scroll;
448   widget_class->state_flags_changed = gtk_calendar_state_flags_changed;
449   widget_class->grab_notify = gtk_calendar_grab_notify;
450   widget_class->focus_out_event = gtk_calendar_focus_out;
451   widget_class->query_tooltip = gtk_calendar_query_tooltip;
452
453   widget_class->drag_data_get = gtk_calendar_drag_data_get;
454   widget_class->drag_motion = gtk_calendar_drag_motion;
455   widget_class->drag_leave = gtk_calendar_drag_leave;
456   widget_class->drag_drop = gtk_calendar_drag_drop;
457   widget_class->drag_data_received = gtk_calendar_drag_data_received;
458
459   gtk_widget_class_set_accessible_role (widget_class, ATK_ROLE_CALENDAR);
460
461   /**
462    * GtkCalendar:year:
463    *
464    * The selected year.
465    * This property gets initially set to the current year.
466    */
467   g_object_class_install_property (gobject_class,
468                                    PROP_YEAR,
469                                    g_param_spec_int ("year",
470                                                      P_("Year"),
471                                                      P_("The selected year"),
472                                                      0, G_MAXINT >> 9, 0,
473                                                      GTK_PARAM_READWRITE));
474
475   /**
476    * GtkCalendar:month:
477    *
478    * The selected month (as a number between 0 and 11).
479    * This property gets initially set to the current month.
480    */
481   g_object_class_install_property (gobject_class,
482                                    PROP_MONTH,
483                                    g_param_spec_int ("month",
484                                                      P_("Month"),
485                                                      P_("The selected month (as a number between 0 and 11)"),
486                                                      0, 11, 0,
487                                                      GTK_PARAM_READWRITE));
488
489   /**
490    * GtkCalendar:day:
491    *
492    * The selected day (as a number between 1 and 31, or 0
493    * to unselect the currently selected day).
494    * This property gets initially set to the current day.
495    */
496   g_object_class_install_property (gobject_class,
497                                    PROP_DAY,
498                                    g_param_spec_int ("day",
499                                                      P_("Day"),
500                                                      P_("The selected day (as a number between 1 and 31, or 0 to unselect the currently selected day)"),
501                                                      0, 31, 0,
502                                                      GTK_PARAM_READWRITE));
503
504 /**
505  * GtkCalendar:show-heading:
506  *
507  * Determines whether a heading is displayed.
508  *
509  * Since: 2.4
510  */
511   g_object_class_install_property (gobject_class,
512                                    PROP_SHOW_HEADING,
513                                    g_param_spec_boolean ("show-heading",
514                                                          P_("Show Heading"),
515                                                          P_("If TRUE, a heading is displayed"),
516                                                          TRUE,
517                                                          GTK_PARAM_READWRITE));
518
519 /**
520  * GtkCalendar:show-day-names:
521  *
522  * Determines whether day names are displayed.
523  *
524  * Since: 2.4
525  */
526   g_object_class_install_property (gobject_class,
527                                    PROP_SHOW_DAY_NAMES,
528                                    g_param_spec_boolean ("show-day-names",
529                                                          P_("Show Day Names"),
530                                                          P_("If TRUE, day names are displayed"),
531                                                          TRUE,
532                                                          GTK_PARAM_READWRITE));
533 /**
534  * GtkCalendar:no-month-change:
535  *
536  * Determines whether the selected month can be changed.
537  *
538  * Since: 2.4
539  */
540   g_object_class_install_property (gobject_class,
541                                    PROP_NO_MONTH_CHANGE,
542                                    g_param_spec_boolean ("no-month-change",
543                                                          P_("No Month Change"),
544                                                          P_("If TRUE, the selected month cannot be changed"),
545                                                          FALSE,
546                                                          GTK_PARAM_READWRITE));
547
548 /**
549  * GtkCalendar:show-week-numbers:
550  *
551  * Determines whether week numbers are displayed.
552  *
553  * Since: 2.4
554  */
555   g_object_class_install_property (gobject_class,
556                                    PROP_SHOW_WEEK_NUMBERS,
557                                    g_param_spec_boolean ("show-week-numbers",
558                                                          P_("Show Week Numbers"),
559                                                          P_("If TRUE, week numbers are displayed"),
560                                                          FALSE,
561                                                          GTK_PARAM_READWRITE));
562
563 /**
564  * GtkCalendar:detail-width-chars:
565  *
566  * Width of a detail cell, in characters.
567  * A value of 0 allows any width. See gtk_calendar_set_detail_func().
568  *
569  * Since: 2.14
570  */
571   g_object_class_install_property (gobject_class,
572                                    PROP_DETAIL_WIDTH_CHARS,
573                                    g_param_spec_int ("detail-width-chars",
574                                                      P_("Details Width"),
575                                                      P_("Details width in characters"),
576                                                      0, 127, 0,
577                                                      GTK_PARAM_READWRITE));
578
579 /**
580  * GtkCalendar:detail-height-rows:
581  *
582  * Height of a detail cell, in rows.
583  * A value of 0 allows any width. See gtk_calendar_set_detail_func().
584  *
585  * Since: 2.14
586  */
587   g_object_class_install_property (gobject_class,
588                                    PROP_DETAIL_HEIGHT_ROWS,
589                                    g_param_spec_int ("detail-height-rows",
590                                                      P_("Details Height"),
591                                                      P_("Details height in rows"),
592                                                      0, 127, 0,
593                                                      GTK_PARAM_READWRITE));
594
595 /**
596  * GtkCalendar:show-details:
597  *
598  * Determines whether details are shown directly in the widget, or if they are
599  * available only as tooltip. When this property is set days with details are
600  * marked.
601  *
602  * Since: 2.14
603  */
604   g_object_class_install_property (gobject_class,
605                                    PROP_SHOW_DETAILS,
606                                    g_param_spec_boolean ("show-details",
607                                                          P_("Show Details"),
608                                                          P_("If TRUE, details are shown"),
609                                                          TRUE,
610                                                          GTK_PARAM_READWRITE));
611
612
613   /**
614    * GtkCalendar:inner-border
615    *
616    * The spacing around the day/week headers and main area.
617    */
618   gtk_widget_class_install_style_property (widget_class,
619                                            g_param_spec_int ("inner-border",
620                                                              P_("Inner border"),
621                                                              P_("Inner border space"),
622                                                              0, G_MAXINT, 4,
623                                                              GTK_PARAM_READABLE));
624
625   /**
626    * GtkCalndar:vertical-separation
627    *
628    * Separation between day headers and main area.
629    */
630   gtk_widget_class_install_style_property (widget_class,
631                                            g_param_spec_int ("vertical-separation",
632                                                              P_("Vertical separation"),
633                                                              P_("Space between day headers and main area"),
634                                                              0, G_MAXINT, 4,
635                                                              GTK_PARAM_READABLE));
636
637   /**
638    * GtkCalendar:horizontal-separation
639    *
640    * Separation between week headers and main area.
641    */
642   gtk_widget_class_install_style_property (widget_class,
643                                            g_param_spec_int ("horizontal-separation",
644                                                              P_("Horizontal separation"),
645                                                              P_("Space between week headers and main area"),
646                                                              0, G_MAXINT, 4,
647                                                              GTK_PARAM_READABLE));
648
649   /**
650    * GtkCalendar::month-changed:
651    * @calendar: the object which received the signal.
652    *
653    * Emitted when the user clicks a button to change the selected month on a
654    * calendar.
655    */
656   gtk_calendar_signals[MONTH_CHANGED_SIGNAL] =
657     g_signal_new (I_("month-changed"),
658                   G_OBJECT_CLASS_TYPE (gobject_class),
659                   G_SIGNAL_RUN_FIRST,
660                   G_STRUCT_OFFSET (GtkCalendarClass, month_changed),
661                   NULL, NULL,
662                   _gtk_marshal_VOID__VOID,
663                   G_TYPE_NONE, 0);
664
665   /**
666    * GtkCalendar::day-selected:
667    * @calendar: the object which received the signal.
668    *
669    * Emitted when the user selects a day.
670    */
671   gtk_calendar_signals[DAY_SELECTED_SIGNAL] =
672     g_signal_new (I_("day-selected"),
673                   G_OBJECT_CLASS_TYPE (gobject_class),
674                   G_SIGNAL_RUN_FIRST,
675                   G_STRUCT_OFFSET (GtkCalendarClass, day_selected),
676                   NULL, NULL,
677                   _gtk_marshal_VOID__VOID,
678                   G_TYPE_NONE, 0);
679
680   /**
681    * GtkCalendar::day-selected-double-click:
682    * @calendar: the object which received the signal.
683    *
684    * Emitted when the user double-clicks a day.
685    */
686   gtk_calendar_signals[DAY_SELECTED_DOUBLE_CLICK_SIGNAL] =
687     g_signal_new (I_("day-selected-double-click"),
688                   G_OBJECT_CLASS_TYPE (gobject_class),
689                   G_SIGNAL_RUN_FIRST,
690                   G_STRUCT_OFFSET (GtkCalendarClass, day_selected_double_click),
691                   NULL, NULL,
692                   _gtk_marshal_VOID__VOID,
693                   G_TYPE_NONE, 0);
694
695   /**
696    * GtkCalendar::prev-month:
697    * @calendar: the object which received the signal.
698    *
699    * Emitted when the user switched to the previous month.
700    */
701   gtk_calendar_signals[PREV_MONTH_SIGNAL] =
702     g_signal_new (I_("prev-month"),
703                   G_OBJECT_CLASS_TYPE (gobject_class),
704                   G_SIGNAL_RUN_FIRST,
705                   G_STRUCT_OFFSET (GtkCalendarClass, prev_month),
706                   NULL, NULL,
707                   _gtk_marshal_VOID__VOID,
708                   G_TYPE_NONE, 0);
709
710   /**
711    * GtkCalendar::next-month:
712    * @calendar: the object which received the signal.
713    *
714    * Emitted when the user switched to the next month.
715    */
716   gtk_calendar_signals[NEXT_MONTH_SIGNAL] =
717     g_signal_new (I_("next-month"),
718                   G_OBJECT_CLASS_TYPE (gobject_class),
719                   G_SIGNAL_RUN_FIRST,
720                   G_STRUCT_OFFSET (GtkCalendarClass, next_month),
721                   NULL, NULL,
722                   _gtk_marshal_VOID__VOID,
723                   G_TYPE_NONE, 0);
724
725   /**
726    * GtkCalendar::prev-year:
727    * @calendar: the object which received the signal.
728    *
729    * Emitted when user switched to the previous year.
730    */
731   gtk_calendar_signals[PREV_YEAR_SIGNAL] =
732     g_signal_new (I_("prev-year"),
733                   G_OBJECT_CLASS_TYPE (gobject_class),
734                   G_SIGNAL_RUN_FIRST,
735                   G_STRUCT_OFFSET (GtkCalendarClass, prev_year),
736                   NULL, NULL,
737                   _gtk_marshal_VOID__VOID,
738                   G_TYPE_NONE, 0);
739
740   /**
741    * GtkCalendar::next-year:
742    * @calendar: the object which received the signal.
743    *
744    * Emitted when user switched to the next year.
745    */
746   gtk_calendar_signals[NEXT_YEAR_SIGNAL] =
747     g_signal_new (I_("next-year"),
748                   G_OBJECT_CLASS_TYPE (gobject_class),
749                   G_SIGNAL_RUN_FIRST,
750                   G_STRUCT_OFFSET (GtkCalendarClass, next_year),
751                   NULL, NULL,
752                   _gtk_marshal_VOID__VOID,
753                   G_TYPE_NONE, 0);
754
755   g_type_class_add_private (gobject_class, sizeof (GtkCalendarPrivate));
756 }
757
758 static void
759 gtk_calendar_init (GtkCalendar *calendar)
760 {
761   GtkWidget *widget = GTK_WIDGET (calendar);
762   time_t secs;
763   struct tm *tm;
764   gint i;
765 #ifdef G_OS_WIN32
766   wchar_t wbuffer[100];
767 #else
768   char buffer[255];
769   time_t tmp_time;
770 #endif
771   GtkCalendarPrivate *priv;
772   gchar *year_before;
773 #ifdef HAVE__NL_TIME_FIRST_WEEKDAY
774   union { unsigned int word; char *string; } langinfo;
775   gint week_1stday = 0;
776   gint first_weekday = 1;
777   guint week_origin;
778 #else
779   gchar *week_start;
780 #endif
781
782   priv = calendar->priv = G_TYPE_INSTANCE_GET_PRIVATE (calendar,
783                                                        GTK_TYPE_CALENDAR,
784                                                        GtkCalendarPrivate);
785
786   gtk_widget_set_can_focus (widget, TRUE);
787   gtk_widget_set_has_window (widget, FALSE);
788
789   if (!default_abbreviated_dayname[0])
790     for (i=0; i<7; i++)
791       {
792 #ifndef G_OS_WIN32
793         tmp_time= (i+3)*86400;
794         strftime ( buffer, sizeof (buffer), "%a", gmtime (&tmp_time));
795         default_abbreviated_dayname[i] = g_locale_to_utf8 (buffer, -1, NULL, NULL, NULL);
796 #else
797         if (!GetLocaleInfoW (GetThreadLocale (), LOCALE_SABBREVDAYNAME1 + (i+6)%7,
798                              wbuffer, G_N_ELEMENTS (wbuffer)))
799           default_abbreviated_dayname[i] = g_strdup_printf ("(%d)", i);
800         else
801           default_abbreviated_dayname[i] = g_utf16_to_utf8 (wbuffer, -1, NULL, NULL, NULL);
802 #endif
803       }
804
805   if (!default_monthname[0])
806     for (i=0; i<12; i++)
807       {
808 #ifndef G_OS_WIN32
809         tmp_time=i*2764800;
810         strftime ( buffer, sizeof (buffer), "%B", gmtime (&tmp_time));
811         default_monthname[i] = g_locale_to_utf8 (buffer, -1, NULL, NULL, NULL);
812 #else
813         if (!GetLocaleInfoW (GetThreadLocale (), LOCALE_SMONTHNAME1 + i,
814                              wbuffer, G_N_ELEMENTS (wbuffer)))
815           default_monthname[i] = g_strdup_printf ("(%d)", i);
816         else
817           default_monthname[i] = g_utf16_to_utf8 (wbuffer, -1, NULL, NULL, NULL);
818 #endif
819       }
820
821   /* Set defaults */
822   secs = time (NULL);
823   tm = localtime (&secs);
824   priv->month = tm->tm_mon;
825   priv->year  = 1900 + tm->tm_year;
826
827   for (i=0;i<31;i++)
828     priv->marked_date[i] = FALSE;
829   priv->num_marked_dates = 0;
830   priv->selected_day = tm->tm_mday;
831
832   priv->display_flags = (GTK_CALENDAR_SHOW_HEADING |
833                              GTK_CALENDAR_SHOW_DAY_NAMES |
834                              GTK_CALENDAR_SHOW_DETAILS);
835
836   priv->focus_row = -1;
837   priv->focus_col = -1;
838
839   priv->max_year_width = 0;
840   priv->max_month_width = 0;
841   priv->max_day_char_width = 0;
842   priv->max_week_char_width = 0;
843
844   priv->max_day_char_ascent = 0;
845   priv->max_day_char_descent = 0;
846   priv->max_label_char_ascent = 0;
847   priv->max_label_char_descent = 0;
848
849   priv->arrow_width = 10;
850
851   priv->need_timer = 0;
852   priv->timer = 0;
853   priv->click_child = -1;
854
855   priv->in_drag = 0;
856   priv->drag_highlight = 0;
857
858   gtk_drag_dest_set (widget, 0, NULL, 0, GDK_ACTION_COPY);
859   gtk_drag_dest_add_text_targets (widget);
860
861   priv->year_before = 0;
862
863   /* Translate to calendar:YM if you want years to be displayed
864    * before months; otherwise translate to calendar:MY.
865    * Do *not* translate it to anything else, if it
866    * it isn't calendar:YM or calendar:MY it will not work.
867    *
868    * Note that the ordering described here is logical order, which is
869    * further influenced by BIDI ordering. Thus, if you have a default
870    * text direction of RTL and specify "calendar:YM", then the year
871    * will appear to the right of the month.
872    */
873   year_before = _("calendar:MY");
874   if (strcmp (year_before, "calendar:YM") == 0)
875     priv->year_before = 1;
876   else if (strcmp (year_before, "calendar:MY") != 0)
877     g_warning ("Whoever translated calendar:MY did so wrongly.\n");
878
879 #ifdef G_OS_WIN32
880   priv->week_start = 0;
881   week_start = NULL;
882
883   if (GetLocaleInfoW (GetThreadLocale (), LOCALE_IFIRSTDAYOFWEEK,
884                       wbuffer, G_N_ELEMENTS (wbuffer)))
885     week_start = g_utf16_to_utf8 (wbuffer, -1, NULL, NULL, NULL);
886
887   if (week_start != NULL)
888     {
889       priv->week_start = (week_start[0] - '0' + 1) % 7;
890       g_free(week_start);
891     }
892 #else
893 #ifdef HAVE__NL_TIME_FIRST_WEEKDAY
894   langinfo.string = nl_langinfo (_NL_TIME_FIRST_WEEKDAY);
895   first_weekday = langinfo.string[0];
896   langinfo.string = nl_langinfo (_NL_TIME_WEEK_1STDAY);
897   week_origin = langinfo.word;
898   if (week_origin == 19971130) /* Sunday */
899     week_1stday = 0;
900   else if (week_origin == 19971201) /* Monday */
901     week_1stday = 1;
902   else
903     g_warning ("Unknown value of _NL_TIME_WEEK_1STDAY.\n");
904
905   priv->week_start = (week_1stday + first_weekday - 1) % 7;
906 #else
907   /* Translate to calendar:week_start:0 if you want Sunday to be the
908    * first day of the week to calendar:week_start:1 if you want Monday
909    * to be the first day of the week, and so on.
910    */
911   week_start = _("calendar:week_start:0");
912
913   if (strncmp (week_start, "calendar:week_start:", 20) == 0)
914     priv->week_start = *(week_start + 20) - '0';
915   else
916     priv->week_start = -1;
917
918   if (priv->week_start < 0 || priv->week_start > 6)
919     {
920       g_warning ("Whoever translated calendar:week_start:0 did so wrongly.\n");
921       priv->week_start = 0;
922     }
923 #endif
924 #endif
925
926   calendar_compute_days (calendar);
927 }
928
929 \f
930 /****************************************
931  *          Utility Functions           *
932  ****************************************/
933
934 static void
935 calendar_queue_refresh (GtkCalendar *calendar)
936 {
937   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
938
939   if (!(priv->detail_func) ||
940       !(priv->display_flags & GTK_CALENDAR_SHOW_DETAILS) ||
941        (priv->detail_width_chars && priv->detail_height_rows))
942     gtk_widget_queue_draw (GTK_WIDGET (calendar));
943   else
944     gtk_widget_queue_resize (GTK_WIDGET (calendar));
945 }
946
947 static void
948 calendar_set_month_next (GtkCalendar *calendar)
949 {
950   gint month_len;
951   GtkCalendarPrivate *priv = calendar->priv;
952
953   if (priv->display_flags & GTK_CALENDAR_NO_MONTH_CHANGE)
954     return;
955
956   if (priv->month == 11)
957     {
958       priv->month = 0;
959       priv->year++;
960     }
961   else
962     priv->month++;
963
964   calendar_compute_days (calendar);
965   g_signal_emit (calendar,
966                  gtk_calendar_signals[NEXT_MONTH_SIGNAL],
967                  0);
968   g_signal_emit (calendar,
969                  gtk_calendar_signals[MONTH_CHANGED_SIGNAL],
970                  0);
971
972   month_len = month_length[leap (priv->year)][priv->month + 1];
973
974   if (month_len < priv->selected_day)
975     {
976       priv->selected_day = 0;
977       gtk_calendar_select_day (calendar, month_len);
978     }
979   else
980     gtk_calendar_select_day (calendar, priv->selected_day);
981
982   calendar_queue_refresh (calendar);
983 }
984
985 static void
986 calendar_set_year_prev (GtkCalendar *calendar)
987 {
988   GtkCalendarPrivate *priv = calendar->priv;
989   gint month_len;
990
991   priv->year--;
992   calendar_compute_days (calendar);
993   g_signal_emit (calendar,
994                  gtk_calendar_signals[PREV_YEAR_SIGNAL],
995                  0);
996   g_signal_emit (calendar,
997                  gtk_calendar_signals[MONTH_CHANGED_SIGNAL],
998                  0);
999
1000   month_len = month_length[leap (priv->year)][priv->month + 1];
1001
1002   if (month_len < priv->selected_day)
1003     {
1004       priv->selected_day = 0;
1005       gtk_calendar_select_day (calendar, month_len);
1006     }
1007   else
1008     gtk_calendar_select_day (calendar, priv->selected_day);
1009
1010   calendar_queue_refresh (calendar);
1011 }
1012
1013 static void
1014 calendar_set_year_next (GtkCalendar *calendar)
1015 {
1016   GtkCalendarPrivate *priv = calendar->priv;
1017   gint month_len;
1018
1019   priv->year++;
1020   calendar_compute_days (calendar);
1021   g_signal_emit (calendar,
1022                  gtk_calendar_signals[NEXT_YEAR_SIGNAL],
1023                  0);
1024   g_signal_emit (calendar,
1025                  gtk_calendar_signals[MONTH_CHANGED_SIGNAL],
1026                  0);
1027
1028   month_len = month_length[leap (priv->year)][priv->month + 1];
1029
1030   if (month_len < priv->selected_day)
1031     {
1032       priv->selected_day = 0;
1033       gtk_calendar_select_day (calendar, month_len);
1034     }
1035   else
1036     gtk_calendar_select_day (calendar, priv->selected_day);
1037
1038   calendar_queue_refresh (calendar);
1039 }
1040
1041 static void
1042 calendar_compute_days (GtkCalendar *calendar)
1043 {
1044   GtkCalendarPrivate *priv = calendar->priv;
1045   gint month;
1046   gint year;
1047   gint ndays_in_month;
1048   gint ndays_in_prev_month;
1049   gint first_day;
1050   gint row;
1051   gint col;
1052   gint day;
1053
1054   year = priv->year;
1055   month = priv->month + 1;
1056
1057   ndays_in_month = month_length[leap (year)][month];
1058
1059   first_day = day_of_week (year, month, 1);
1060   first_day = (first_day + 7 - priv->week_start) % 7;
1061
1062   /* Compute days of previous month */
1063   if (month > 1)
1064     ndays_in_prev_month = month_length[leap (year)][month-1];
1065   else
1066     ndays_in_prev_month = month_length[leap (year)][12];
1067   day = ndays_in_prev_month - first_day + 1;
1068
1069   row = 0;
1070   if (first_day > 0)
1071     {
1072       for (col = 0; col < first_day; col++)
1073         {
1074           priv->day[row][col] = day;
1075           priv->day_month[row][col] = MONTH_PREV;
1076           day++;
1077         }
1078     }
1079
1080   /* Compute days of current month */
1081   col = first_day;
1082   for (day = 1; day <= ndays_in_month; day++)
1083     {
1084       priv->day[row][col] = day;
1085       priv->day_month[row][col] = MONTH_CURRENT;
1086
1087       col++;
1088       if (col == 7)
1089         {
1090           row++;
1091           col = 0;
1092         }
1093     }
1094
1095   /* Compute days of next month */
1096   day = 1;
1097   for (; row <= 5; row++)
1098     {
1099       for (; col <= 6; col++)
1100         {
1101           priv->day[row][col] = day;
1102           priv->day_month[row][col] = MONTH_NEXT;
1103           day++;
1104         }
1105       col = 0;
1106     }
1107 }
1108
1109 static void
1110 calendar_select_and_focus_day (GtkCalendar *calendar,
1111                                guint        day)
1112 {
1113   GtkCalendarPrivate *priv = calendar->priv;
1114   gint old_focus_row = priv->focus_row;
1115   gint old_focus_col = priv->focus_col;
1116   gint row;
1117   gint col;
1118
1119   for (row = 0; row < 6; row ++)
1120     for (col = 0; col < 7; col++)
1121       {
1122         if (priv->day_month[row][col] == MONTH_CURRENT
1123             && priv->day[row][col] == day)
1124           {
1125             priv->focus_row = row;
1126             priv->focus_col = col;
1127           }
1128       }
1129
1130   if (old_focus_row != -1 && old_focus_col != -1)
1131     calendar_invalidate_day (calendar, old_focus_row, old_focus_col);
1132
1133   gtk_calendar_select_day (calendar, day);
1134 }
1135
1136 \f
1137 /****************************************
1138  *     Layout computation utilities     *
1139  ****************************************/
1140
1141 static gint
1142 calendar_row_height (GtkCalendar *calendar)
1143 {
1144   GtkCalendarPrivate *priv = calendar->priv;
1145
1146   return (GTK_CALENDAR_GET_PRIVATE (calendar)->main_h - CALENDAR_MARGIN
1147           - ((priv->display_flags & GTK_CALENDAR_SHOW_DAY_NAMES)
1148              ? calendar_get_ysep (calendar) : CALENDAR_MARGIN)) / 6;
1149 }
1150
1151
1152 /* calendar_left_x_for_column: returns the x coordinate
1153  * for the left of the column */
1154 static gint
1155 calendar_left_x_for_column (GtkCalendar *calendar,
1156                             gint         column)
1157 {
1158   GtkCalendarPrivate *priv = calendar->priv;
1159   gint width;
1160   gint x_left;
1161   gint week_width;
1162   gint calendar_xsep = calendar_get_xsep (calendar);
1163   GtkStyleContext *context;
1164   GtkStateFlags state;
1165   gint inner_border = calendar_get_inner_border (calendar);
1166   GtkBorder padding;
1167
1168   context = gtk_widget_get_style_context (GTK_WIDGET (calendar));
1169   state = gtk_widget_get_state_flags (GTK_WIDGET (calendar));
1170   gtk_style_context_get_padding (context, state, &padding);
1171
1172   week_width = priv->week_width + padding.left + inner_border;
1173
1174   if (gtk_widget_get_direction (GTK_WIDGET (calendar)) == GTK_TEXT_DIR_RTL)
1175     {
1176       column = 6 - column;
1177       week_width = 0;
1178     }
1179
1180   width = GTK_CALENDAR_GET_PRIVATE (calendar)->day_width;
1181   if (priv->display_flags & GTK_CALENDAR_SHOW_WEEK_NUMBERS)
1182     x_left = week_width + calendar_xsep + (width + DAY_XSEP) * column;
1183   else
1184     x_left = week_width + CALENDAR_MARGIN + (width + DAY_XSEP) * column;
1185
1186   return x_left;
1187 }
1188
1189 /* column_from_x: returns the column 0-6 that the
1190  * x pixel of the xwindow is in */
1191 static gint
1192 calendar_column_from_x (GtkCalendar *calendar,
1193                         gint         event_x)
1194 {
1195   gint c, column;
1196   gint x_left, x_right;
1197
1198   column = -1;
1199
1200   for (c = 0; c < 7; c++)
1201     {
1202       x_left = calendar_left_x_for_column (calendar, c);
1203       x_right = x_left + GTK_CALENDAR_GET_PRIVATE (calendar)->day_width;
1204
1205       if (event_x >= x_left && event_x < x_right)
1206         {
1207           column = c;
1208           break;
1209         }
1210     }
1211
1212   return column;
1213 }
1214
1215 /* calendar_top_y_for_row: returns the y coordinate
1216  * for the top of the row */
1217 static gint
1218 calendar_top_y_for_row (GtkCalendar *calendar,
1219                         gint         row)
1220 {
1221   GtkStyleContext *context;
1222   GtkAllocation allocation;
1223   gint inner_border = calendar_get_inner_border (calendar);
1224   GtkStateFlags state;
1225   GtkBorder padding;
1226
1227   gtk_widget_get_allocation (GTK_WIDGET (calendar), &allocation);
1228   context = gtk_widget_get_style_context (GTK_WIDGET (calendar));
1229   state = gtk_widget_get_state_flags (GTK_WIDGET (calendar));
1230
1231   gtk_style_context_get_padding (context, state, &padding);
1232
1233   return  allocation.height
1234           - padding.top - inner_border
1235           - (CALENDAR_MARGIN + (6 - row)
1236              * calendar_row_height (calendar));
1237 }
1238
1239 /* row_from_y: returns the row 0-5 that the
1240  * y pixel of the xwindow is in */
1241 static gint
1242 calendar_row_from_y (GtkCalendar *calendar,
1243                      gint         event_y)
1244 {
1245   gint r, row;
1246   gint height;
1247   gint y_top, y_bottom;
1248
1249   height = calendar_row_height (calendar);
1250   row = -1;
1251
1252   for (r = 0; r < 6; r++)
1253     {
1254       y_top = calendar_top_y_for_row (calendar, r);
1255       y_bottom = y_top + height;
1256
1257       if (event_y >= y_top && event_y < y_bottom)
1258         {
1259           row = r;
1260           break;
1261         }
1262     }
1263
1264   return row;
1265 }
1266
1267 static void
1268 calendar_arrow_rectangle (GtkCalendar  *calendar,
1269                           guint         arrow,
1270                           GdkRectangle *rect)
1271 {
1272   GtkWidget *widget = GTK_WIDGET (calendar);
1273   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
1274   GtkAllocation allocation;
1275   GtkStyleContext *context;
1276   GtkStateFlags state;
1277   GtkBorder padding;
1278   gboolean year_left;
1279
1280   gtk_widget_get_allocation (widget, &allocation);
1281   context = gtk_widget_get_style_context (widget);
1282   state = gtk_widget_get_state_flags (widget);
1283
1284   gtk_style_context_get_padding (context, state, &padding);
1285
1286   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
1287     year_left = priv->year_before;
1288   else
1289     year_left = !priv->year_before;
1290
1291   rect->y = 3;
1292   rect->width = priv->arrow_width;
1293   rect->height = priv->header_h - 7;
1294
1295   switch (arrow)
1296     {
1297     case ARROW_MONTH_LEFT:
1298       if (year_left)
1299         rect->x = (allocation.width - padding.left - padding.right
1300                    - (3 + 2 * priv->arrow_width + priv->max_month_width));
1301       else
1302         rect->x = 3;
1303       break;
1304     case ARROW_MONTH_RIGHT:
1305       if (year_left)
1306         rect->x = (allocation.width - padding.left - padding.right
1307                    - 3 - priv->arrow_width);
1308       else
1309         rect->x = (priv->arrow_width + priv->max_month_width);
1310       break;
1311     case ARROW_YEAR_LEFT:
1312       if (year_left)
1313         rect->x = 3;
1314       else
1315         rect->x = (allocation.width - padding.left - padding.right
1316                    - (3 + 2 * priv->arrow_width + priv->max_year_width));
1317       break;
1318     case ARROW_YEAR_RIGHT:
1319       if (year_left)
1320         rect->x = (priv->arrow_width + priv->max_year_width);
1321       else
1322         rect->x = (allocation.width - padding.left - padding.right
1323                    - 3 - priv->arrow_width);
1324       break;
1325     }
1326
1327   rect->x += padding.left;
1328   rect->y += padding.top;
1329 }
1330
1331 static void
1332 calendar_day_rectangle (GtkCalendar  *calendar,
1333                         gint          row,
1334                         gint          col,
1335                         GdkRectangle *rect)
1336 {
1337   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
1338
1339   rect->x = calendar_left_x_for_column (calendar, col);
1340   rect->y = calendar_top_y_for_row (calendar, row);
1341   rect->height = calendar_row_height (calendar);
1342   rect->width = priv->day_width;
1343 }
1344
1345 static void
1346 calendar_set_month_prev (GtkCalendar *calendar)
1347 {
1348   GtkCalendarPrivate *priv = calendar->priv;
1349   gint month_len;
1350
1351   if (priv->display_flags & GTK_CALENDAR_NO_MONTH_CHANGE)
1352     return;
1353
1354   if (priv->month == 0)
1355     {
1356       priv->month = 11;
1357       priv->year--;
1358     }
1359   else
1360     priv->month--;
1361
1362   month_len = month_length[leap (priv->year)][priv->month + 1];
1363
1364   calendar_compute_days (calendar);
1365
1366   g_signal_emit (calendar,
1367                  gtk_calendar_signals[PREV_MONTH_SIGNAL],
1368                  0);
1369   g_signal_emit (calendar,
1370                  gtk_calendar_signals[MONTH_CHANGED_SIGNAL],
1371                  0);
1372
1373   if (month_len < priv->selected_day)
1374     {
1375       priv->selected_day = 0;
1376       gtk_calendar_select_day (calendar, month_len);
1377     }
1378   else
1379     {
1380       if (priv->selected_day < 0)
1381         priv->selected_day = priv->selected_day + 1 + month_length[leap (priv->year)][priv->month + 1];
1382       gtk_calendar_select_day (calendar, priv->selected_day);
1383     }
1384
1385   calendar_queue_refresh (calendar);
1386 }
1387
1388 \f
1389 /****************************************
1390  *           Basic object methods       *
1391  ****************************************/
1392
1393 static void
1394 gtk_calendar_finalize (GObject *object)
1395 {
1396   G_OBJECT_CLASS (gtk_calendar_parent_class)->finalize (object);
1397 }
1398
1399 static void
1400 gtk_calendar_destroy (GtkWidget *widget)
1401 {
1402   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
1403
1404   calendar_stop_spinning (GTK_CALENDAR (widget));
1405
1406   /* Call the destroy function for the extra display callback: */
1407   if (priv->detail_func_destroy && priv->detail_func_user_data)
1408     {
1409       priv->detail_func_destroy (priv->detail_func_user_data);
1410       priv->detail_func_user_data = NULL;
1411       priv->detail_func_destroy = NULL;
1412     }
1413
1414   GTK_WIDGET_CLASS (gtk_calendar_parent_class)->destroy (widget);
1415 }
1416
1417
1418 static void
1419 calendar_set_display_option (GtkCalendar              *calendar,
1420                              GtkCalendarDisplayOptions flag,
1421                              gboolean                  setting)
1422 {
1423   GtkCalendarPrivate *priv = calendar->priv;
1424   GtkCalendarDisplayOptions flags;
1425
1426   if (setting)
1427     flags = priv->display_flags | flag;
1428   else
1429     flags = priv->display_flags & ~flag;
1430   gtk_calendar_set_display_options (calendar, flags);
1431 }
1432
1433 static gboolean
1434 calendar_get_display_option (GtkCalendar              *calendar,
1435                              GtkCalendarDisplayOptions flag)
1436 {
1437   GtkCalendarPrivate *priv = calendar->priv;
1438
1439   return (priv->display_flags & flag) != 0;
1440 }
1441
1442 static void
1443 gtk_calendar_set_property (GObject      *object,
1444                            guint         prop_id,
1445                            const GValue *value,
1446                            GParamSpec   *pspec)
1447 {
1448   GtkCalendar *calendar = GTK_CALENDAR (object);
1449   GtkCalendarPrivate *priv = calendar->priv;
1450
1451   switch (prop_id)
1452     {
1453     case PROP_YEAR:
1454       gtk_calendar_select_month (calendar,
1455                                  priv->month,
1456                                  g_value_get_int (value));
1457       break;
1458     case PROP_MONTH:
1459       gtk_calendar_select_month (calendar,
1460                                  g_value_get_int (value),
1461                                  priv->year);
1462       break;
1463     case PROP_DAY:
1464       gtk_calendar_select_day (calendar,
1465                                g_value_get_int (value));
1466       break;
1467     case PROP_SHOW_HEADING:
1468       calendar_set_display_option (calendar,
1469                                    GTK_CALENDAR_SHOW_HEADING,
1470                                    g_value_get_boolean (value));
1471       break;
1472     case PROP_SHOW_DAY_NAMES:
1473       calendar_set_display_option (calendar,
1474                                    GTK_CALENDAR_SHOW_DAY_NAMES,
1475                                    g_value_get_boolean (value));
1476       break;
1477     case PROP_NO_MONTH_CHANGE:
1478       calendar_set_display_option (calendar,
1479                                    GTK_CALENDAR_NO_MONTH_CHANGE,
1480                                    g_value_get_boolean (value));
1481       break;
1482     case PROP_SHOW_WEEK_NUMBERS:
1483       calendar_set_display_option (calendar,
1484                                    GTK_CALENDAR_SHOW_WEEK_NUMBERS,
1485                                    g_value_get_boolean (value));
1486       break;
1487     case PROP_SHOW_DETAILS:
1488       calendar_set_display_option (calendar,
1489                                    GTK_CALENDAR_SHOW_DETAILS,
1490                                    g_value_get_boolean (value));
1491       break;
1492     case PROP_DETAIL_WIDTH_CHARS:
1493       gtk_calendar_set_detail_width_chars (calendar,
1494                                            g_value_get_int (value));
1495       break;
1496     case PROP_DETAIL_HEIGHT_ROWS:
1497       gtk_calendar_set_detail_height_rows (calendar,
1498                                            g_value_get_int (value));
1499       break;
1500     default:
1501       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1502       break;
1503     }
1504 }
1505
1506 static void
1507 gtk_calendar_get_property (GObject      *object,
1508                            guint         prop_id,
1509                            GValue       *value,
1510                            GParamSpec   *pspec)
1511 {
1512   GtkCalendar *calendar = GTK_CALENDAR (object);
1513   GtkCalendarPrivate *priv = calendar->priv;
1514
1515   switch (prop_id)
1516     {
1517     case PROP_YEAR:
1518       g_value_set_int (value, priv->year);
1519       break;
1520     case PROP_MONTH:
1521       g_value_set_int (value, priv->month);
1522       break;
1523     case PROP_DAY:
1524       g_value_set_int (value, priv->selected_day);
1525       break;
1526     case PROP_SHOW_HEADING:
1527       g_value_set_boolean (value, calendar_get_display_option (calendar,
1528                                                                GTK_CALENDAR_SHOW_HEADING));
1529       break;
1530     case PROP_SHOW_DAY_NAMES:
1531       g_value_set_boolean (value, calendar_get_display_option (calendar,
1532                                                                GTK_CALENDAR_SHOW_DAY_NAMES));
1533       break;
1534     case PROP_NO_MONTH_CHANGE:
1535       g_value_set_boolean (value, calendar_get_display_option (calendar,
1536                                                                GTK_CALENDAR_NO_MONTH_CHANGE));
1537       break;
1538     case PROP_SHOW_WEEK_NUMBERS:
1539       g_value_set_boolean (value, calendar_get_display_option (calendar,
1540                                                                GTK_CALENDAR_SHOW_WEEK_NUMBERS));
1541       break;
1542     case PROP_SHOW_DETAILS:
1543       g_value_set_boolean (value, calendar_get_display_option (calendar,
1544                                                                GTK_CALENDAR_SHOW_DETAILS));
1545       break;
1546     case PROP_DETAIL_WIDTH_CHARS:
1547       g_value_set_int (value, priv->detail_width_chars);
1548       break;
1549     case PROP_DETAIL_HEIGHT_ROWS:
1550       g_value_set_int (value, priv->detail_height_rows);
1551       break;
1552     default:
1553       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1554       break;
1555     }
1556 }
1557
1558 \f
1559 /****************************************
1560  *             Realization              *
1561  ****************************************/
1562
1563 static void
1564 calendar_realize_arrows (GtkCalendar *calendar)
1565 {
1566   GtkWidget *widget = GTK_WIDGET (calendar);
1567   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
1568   GdkWindowAttr attributes;
1569   gint attributes_mask;
1570   gint i;
1571   GtkAllocation allocation;
1572
1573   if (! (priv->display_flags & GTK_CALENDAR_NO_MONTH_CHANGE)
1574       && (priv->display_flags & GTK_CALENDAR_SHOW_HEADING))
1575     {
1576       gtk_widget_get_allocation (widget, &allocation);
1577
1578       attributes.wclass = GDK_INPUT_ONLY;
1579       attributes.window_type = GDK_WINDOW_CHILD;
1580       attributes.event_mask = (gtk_widget_get_events (widget)
1581                                | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK
1582                                | GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK);
1583       attributes_mask = GDK_WA_X | GDK_WA_Y;
1584       for (i = 0; i < 4; i++)
1585         {
1586           GdkRectangle rect;
1587           calendar_arrow_rectangle (calendar, i, &rect);
1588
1589           attributes.x = allocation.x + rect.x;
1590           attributes.y = allocation.y + rect.y;
1591           attributes.width = rect.width;
1592           attributes.height = rect.height;
1593           priv->arrow_win[i] = gdk_window_new (gtk_widget_get_window (widget),
1594                                                &attributes,
1595                                                attributes_mask);
1596
1597           gdk_window_set_user_data (priv->arrow_win[i], widget);
1598         }
1599       priv->arrow_prelight = 0x0;
1600     }
1601   else
1602     {
1603       for (i = 0; i < 4; i++)
1604         priv->arrow_win[i] = NULL;
1605     }
1606 }
1607
1608 static void
1609 calendar_unrealize_arrows (GtkCalendar *calendar)
1610 {
1611   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
1612   gint i;
1613
1614   for (i = 0; i < 4; i++)
1615     {
1616       if (priv->arrow_win[i])
1617         {
1618           gdk_window_set_user_data (priv->arrow_win[i], NULL);
1619           gdk_window_destroy (priv->arrow_win[i]);
1620           priv->arrow_win[i] = NULL;
1621         }
1622     }
1623
1624 }
1625
1626 static gint
1627 calendar_get_inner_border (GtkCalendar *calendar)
1628 {
1629   gint inner_border;
1630
1631   gtk_widget_style_get (GTK_WIDGET (calendar),
1632                         "inner-border", &inner_border,
1633                         NULL);
1634
1635   return inner_border;
1636 }
1637
1638 static gint
1639 calendar_get_xsep (GtkCalendar *calendar)
1640 {
1641   gint xsep;
1642
1643   gtk_widget_style_get (GTK_WIDGET (calendar),
1644                         "horizontal-separation", &xsep,
1645                         NULL);
1646
1647   return xsep;
1648 }
1649
1650 static gint
1651 calendar_get_ysep (GtkCalendar *calendar)
1652 {
1653   gint ysep;
1654
1655   gtk_widget_style_get (GTK_WIDGET (calendar),
1656                         "vertical-separation", &ysep,
1657                         NULL);
1658
1659   return ysep;
1660 }
1661
1662 static void
1663 gtk_calendar_realize (GtkWidget *widget)
1664 {
1665   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
1666   GdkWindowAttr attributes;
1667   gint attributes_mask;
1668   gint inner_border = calendar_get_inner_border (GTK_CALENDAR (widget));
1669   GtkStyleContext *context;
1670   GtkAllocation allocation;
1671   GtkStateFlags state = 0;
1672   GtkBorder padding;
1673
1674   context = gtk_widget_get_style_context (widget);
1675   state = gtk_widget_get_state_flags (widget);
1676   gtk_style_context_get_padding (context, state, &padding);
1677
1678   gtk_widget_get_allocation (widget, &allocation);
1679
1680   GTK_WIDGET_CLASS (gtk_calendar_parent_class)->realize (widget);
1681
1682   attributes.wclass = GDK_INPUT_ONLY;
1683   attributes.window_type = GDK_WINDOW_CHILD;
1684   attributes.event_mask = (gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK
1685                            | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK
1686                            | GDK_POINTER_MOTION_MASK | GDK_LEAVE_NOTIFY_MASK);
1687
1688   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
1689     attributes.x = priv->week_width + padding.left + inner_border;
1690   else
1691     attributes.x = padding.left + inner_border;
1692
1693   attributes.y = priv->header_h + priv->day_name_h + padding.top + inner_border;
1694   attributes.width = allocation.width - attributes.x - (padding.right + inner_border);
1695
1696   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
1697     attributes.width -= priv->week_width;
1698
1699   attributes.height = priv->main_h;
1700   attributes_mask = GDK_WA_X | GDK_WA_Y;
1701
1702   attributes.x += allocation.x;
1703   attributes.y += allocation.y;
1704
1705   priv->main_win = gdk_window_new (gtk_widget_get_window (widget),
1706                                    &attributes, attributes_mask);
1707   gdk_window_set_user_data (priv->main_win, widget);
1708
1709   calendar_realize_arrows (GTK_CALENDAR (widget));
1710 }
1711
1712 static void
1713 gtk_calendar_unrealize (GtkWidget *widget)
1714 {
1715   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
1716
1717   calendar_unrealize_arrows (GTK_CALENDAR (widget));
1718
1719   if (priv->main_win)
1720     {
1721       gdk_window_set_user_data (priv->main_win, NULL);
1722       gdk_window_destroy (priv->main_win);
1723       priv->main_win = NULL;
1724     }
1725
1726   GTK_WIDGET_CLASS (gtk_calendar_parent_class)->unrealize (widget);
1727 }
1728
1729 static void
1730 calendar_map_arrows (GtkCalendar *calendar)
1731 {
1732   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
1733   gint i;
1734
1735   for (i = 0; i < 4; i++)
1736     {
1737       if (priv->arrow_win[i])
1738         gdk_window_show (priv->arrow_win[i]);
1739     }
1740 }
1741
1742 static void
1743 calendar_unmap_arrows (GtkCalendar *calendar)
1744 {
1745   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
1746   gint i;
1747
1748   for (i = 0; i < 4; i++)
1749     {
1750       if (priv->arrow_win[i])
1751         gdk_window_hide (priv->arrow_win[i]);
1752     }
1753 }
1754
1755 static void
1756 gtk_calendar_map (GtkWidget *widget)
1757 {
1758   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
1759
1760   GTK_WIDGET_CLASS (gtk_calendar_parent_class)->map (widget);
1761
1762   gdk_window_show (priv->main_win);
1763
1764   calendar_map_arrows (GTK_CALENDAR (widget));
1765 }
1766
1767 static void
1768 gtk_calendar_unmap (GtkWidget *widget)
1769 {
1770   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
1771
1772   calendar_unmap_arrows (GTK_CALENDAR (widget));
1773
1774   gdk_window_hide (priv->main_win);
1775
1776   GTK_WIDGET_CLASS (gtk_calendar_parent_class)->unmap (widget);
1777 }
1778
1779 static gchar*
1780 gtk_calendar_get_detail (GtkCalendar *calendar,
1781                          gint         row,
1782                          gint         column)
1783 {
1784   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
1785   gint year, month;
1786
1787   if (priv->detail_func == NULL)
1788     return NULL;
1789
1790   year = priv->year;
1791   month = priv->month + priv->day_month[row][column] - MONTH_CURRENT;
1792
1793   if (month < 0)
1794     {
1795       month += 12;
1796       year -= 1;
1797     }
1798   else if (month > 11)
1799     {
1800       month -= 12;
1801       year += 1;
1802     }
1803
1804   return priv->detail_func (calendar,
1805                             year, month,
1806                             priv->day[row][column],
1807                             priv->detail_func_user_data);
1808 }
1809
1810 static gboolean
1811 gtk_calendar_query_tooltip (GtkWidget  *widget,
1812                             gint        x,
1813                             gint        y,
1814                             gboolean    keyboard_mode,
1815                             GtkTooltip *tooltip)
1816 {
1817   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
1818   GtkCalendar *calendar = GTK_CALENDAR (widget);
1819   gchar *detail = NULL;
1820   GdkRectangle day_rect;
1821   gint row, col;
1822
1823   col = calendar_column_from_x (calendar, x);
1824   row = calendar_row_from_y (calendar, y);
1825
1826   if (col != -1 && row != -1 &&
1827       (0 != (priv->detail_overflow[row] & (1 << col)) ||
1828       0 == (priv->display_flags & GTK_CALENDAR_SHOW_DETAILS)))
1829     {
1830       detail = gtk_calendar_get_detail (calendar, row, col);
1831       calendar_day_rectangle (calendar, row, col, &day_rect);
1832     }
1833
1834   if (detail)
1835     {
1836       gtk_tooltip_set_tip_area (tooltip, &day_rect);
1837       gtk_tooltip_set_markup (tooltip, detail);
1838
1839       g_free (detail);
1840
1841       return TRUE;
1842     }
1843
1844   if (GTK_WIDGET_CLASS (gtk_calendar_parent_class)->query_tooltip)
1845     return GTK_WIDGET_CLASS (gtk_calendar_parent_class)->query_tooltip (widget, x, y, keyboard_mode, tooltip);
1846
1847   return FALSE;
1848 }
1849
1850 \f
1851 /****************************************
1852  *       Size Request and Allocate      *
1853  ****************************************/
1854
1855 static void
1856 gtk_calendar_size_request (GtkWidget      *widget,
1857                            GtkRequisition *requisition)
1858 {
1859   GtkCalendar *calendar = GTK_CALENDAR (widget);
1860   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
1861   GtkStyleContext *context;
1862   GtkStateFlags state;
1863   GtkBorder padding;
1864   PangoLayout *layout;
1865   PangoRectangle logical_rect;
1866
1867   gint height;
1868   gint i, r, c;
1869   gint calendar_margin = CALENDAR_MARGIN;
1870   gint header_width, main_width;
1871   gint max_header_height = 0;
1872   gint focus_width;
1873   gint focus_padding;
1874   gint max_detail_height;
1875   gint inner_border = calendar_get_inner_border (calendar);
1876   gint calendar_ysep = calendar_get_ysep (calendar);
1877   gint calendar_xsep = calendar_get_xsep (calendar);
1878
1879   gtk_widget_style_get (GTK_WIDGET (widget),
1880                         "focus-line-width", &focus_width,
1881                         "focus-padding", &focus_padding,
1882                         NULL);
1883
1884   layout = gtk_widget_create_pango_layout (widget, NULL);
1885
1886   /*
1887    * Calculate the requisition  width for the widget.
1888    */
1889
1890   /* Header width */
1891
1892   if (priv->display_flags & GTK_CALENDAR_SHOW_HEADING)
1893     {
1894       priv->max_month_width = 0;
1895       for (i = 0; i < 12; i++)
1896         {
1897           pango_layout_set_text (layout, default_monthname[i], -1);
1898           pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
1899           priv->max_month_width = MAX (priv->max_month_width,
1900                                                logical_rect.width + 8);
1901           max_header_height = MAX (max_header_height, logical_rect.height);
1902         }
1903
1904       priv->max_year_width = 0;
1905       /* Translators:  This is a text measurement template.
1906        * Translate it to the widest year text
1907        *
1908        * If you don't understand this, leave it as "2000"
1909        */
1910       pango_layout_set_text (layout, C_("year measurement template", "2000"), -1);
1911       pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
1912       priv->max_year_width = MAX (priv->max_year_width,
1913                                   logical_rect.width + 8);
1914       max_header_height = MAX (max_header_height, logical_rect.height);
1915     }
1916   else
1917     {
1918       priv->max_month_width = 0;
1919       priv->max_year_width = 0;
1920     }
1921
1922   if (priv->display_flags & GTK_CALENDAR_NO_MONTH_CHANGE)
1923     header_width = (priv->max_month_width
1924                     + priv->max_year_width
1925                     + 3 * 3);
1926   else
1927     header_width = (priv->max_month_width
1928                     + priv->max_year_width
1929                     + 4 * priv->arrow_width + 3 * 3);
1930
1931   /* Mainwindow labels width */
1932
1933   priv->max_day_char_width = 0;
1934   priv->max_day_char_ascent = 0;
1935   priv->max_day_char_descent = 0;
1936   priv->min_day_width = 0;
1937
1938   for (i = 0; i < 9; i++)
1939     {
1940       gchar buffer[32];
1941       g_snprintf (buffer, sizeof (buffer), C_("calendar:day:digits", "%d"), i * 11);
1942       pango_layout_set_text (layout, buffer, -1);
1943       pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
1944       priv->min_day_width = MAX (priv->min_day_width,
1945                                          logical_rect.width);
1946
1947       priv->max_day_char_ascent = MAX (priv->max_day_char_ascent,
1948                                                PANGO_ASCENT (logical_rect));
1949       priv->max_day_char_descent = MAX (priv->max_day_char_descent,
1950                                                 PANGO_DESCENT (logical_rect));
1951     }
1952
1953   priv->max_label_char_ascent = 0;
1954   priv->max_label_char_descent = 0;
1955   if (priv->display_flags & GTK_CALENDAR_SHOW_DAY_NAMES)
1956     for (i = 0; i < 7; i++)
1957       {
1958         pango_layout_set_text (layout, default_abbreviated_dayname[i], -1);
1959         pango_layout_line_get_pixel_extents (pango_layout_get_lines_readonly (layout)->data, NULL, &logical_rect);
1960
1961         priv->min_day_width = MAX (priv->min_day_width, logical_rect.width);
1962         priv->max_label_char_ascent = MAX (priv->max_label_char_ascent,
1963                                                    PANGO_ASCENT (logical_rect));
1964         priv->max_label_char_descent = MAX (priv->max_label_char_descent,
1965                                                     PANGO_DESCENT (logical_rect));
1966       }
1967
1968   priv->max_week_char_width = 0;
1969   if (priv->display_flags & GTK_CALENDAR_SHOW_WEEK_NUMBERS)
1970     for (i = 0; i < 9; i++)
1971       {
1972         gchar buffer[32];
1973         g_snprintf (buffer, sizeof (buffer), C_("calendar:week:digits", "%d"), i * 11);
1974         pango_layout_set_text (layout, buffer, -1);
1975         pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
1976         priv->max_week_char_width = MAX (priv->max_week_char_width,
1977                                            logical_rect.width / 2);
1978       }
1979
1980   /* Calculate detail extents. Do this as late as possible since
1981    * pango_layout_set_markup is called which alters font settings. */
1982   max_detail_height = 0;
1983
1984   if (priv->detail_func && (priv->display_flags & GTK_CALENDAR_SHOW_DETAILS))
1985     {
1986       gchar *markup, *tail;
1987
1988       if (priv->detail_width_chars || priv->detail_height_rows)
1989         {
1990           gint rows = MAX (1, priv->detail_height_rows) - 1;
1991           gsize len = priv->detail_width_chars + rows + 16;
1992
1993           markup = tail = g_alloca (len);
1994
1995           memcpy (tail,     "<small>", 7);
1996           tail += 7;
1997
1998           memset (tail, 'm', priv->detail_width_chars);
1999           tail += priv->detail_width_chars;
2000
2001           memset (tail, '\n', rows);
2002           tail += rows;
2003
2004           memcpy (tail,     "</small>", 9);
2005           tail += 9;
2006
2007           g_assert (len == (tail - markup));
2008
2009           pango_layout_set_markup (layout, markup, -1);
2010           pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
2011
2012           if (priv->detail_width_chars)
2013             priv->min_day_width = MAX (priv->min_day_width, logical_rect.width);
2014           if (priv->detail_height_rows)
2015             max_detail_height = MAX (max_detail_height, logical_rect.height);
2016         }
2017
2018       if (!priv->detail_width_chars || !priv->detail_height_rows)
2019         for (r = 0; r < 6; r++)
2020           for (c = 0; c < 7; c++)
2021             {
2022               gchar *detail = gtk_calendar_get_detail (calendar, r, c);
2023
2024               if (detail)
2025                 {
2026                   markup = g_strconcat ("<small>", detail, "</small>", NULL);
2027                   pango_layout_set_markup (layout, markup, -1);
2028
2029                   if (priv->detail_width_chars)
2030                     {
2031                       pango_layout_set_wrap (layout, PANGO_WRAP_WORD_CHAR);
2032                       pango_layout_set_width (layout, PANGO_SCALE * priv->min_day_width);
2033                     }
2034
2035                   pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
2036
2037                   if (!priv->detail_width_chars)
2038                     priv->min_day_width = MAX (priv->min_day_width, logical_rect.width);
2039                   if (!priv->detail_height_rows)
2040                     max_detail_height = MAX (max_detail_height, logical_rect.height);
2041
2042                   g_free (markup);
2043                   g_free (detail);
2044                 }
2045             }
2046     }
2047
2048   /* We add one to max_day_char_width to be able to make the marked day "bold" */
2049   priv->max_day_char_width = priv->min_day_width / 2 + 1;
2050
2051   main_width = (7 * (priv->min_day_width + (focus_padding + focus_width) * 2) + (DAY_XSEP * 6) + CALENDAR_MARGIN * 2
2052                 + (priv->max_week_char_width
2053                    ? priv->max_week_char_width * 2 + (focus_padding + focus_width) * 2 + calendar_xsep * 2
2054                    : 0));
2055
2056   context = gtk_widget_get_style_context (widget);
2057   state = gtk_widget_get_state_flags (widget);
2058   gtk_style_context_get_padding (context, state, &padding);
2059
2060   requisition->width = MAX (header_width, main_width + inner_border * 2) + padding.left + padding.right;
2061
2062   /*
2063    * Calculate the requisition height for the widget.
2064    */
2065
2066   if (priv->display_flags & GTK_CALENDAR_SHOW_HEADING)
2067     {
2068       priv->header_h = (max_header_height + calendar_ysep * 2);
2069     }
2070   else
2071     {
2072       priv->header_h = 0;
2073     }
2074
2075   if (priv->display_flags & GTK_CALENDAR_SHOW_DAY_NAMES)
2076     {
2077       priv->day_name_h = (priv->max_label_char_ascent
2078                                   + priv->max_label_char_descent
2079                                   + 2 * (focus_padding + focus_width) + calendar_margin);
2080       calendar_margin = calendar_ysep;
2081     }
2082   else
2083     {
2084       priv->day_name_h = 0;
2085     }
2086
2087   priv->main_h = (CALENDAR_MARGIN + calendar_margin
2088                           + 6 * (priv->max_day_char_ascent
2089                                  + priv->max_day_char_descent
2090                                  + max_detail_height
2091                                  + 2 * (focus_padding + focus_width))
2092                           + DAY_YSEP * 5);
2093
2094   height = priv->header_h + priv->day_name_h + priv->main_h;
2095
2096   requisition->height = height + padding.top + padding.bottom + (inner_border * 2);
2097
2098   g_object_unref (layout);
2099 }
2100
2101 static void
2102 gtk_calendar_get_preferred_width (GtkWidget *widget,
2103                                   gint      *minimum,
2104                                   gint      *natural)
2105 {
2106   GtkRequisition requisition;
2107
2108   gtk_calendar_size_request (widget, &requisition);
2109
2110   *minimum = *natural = requisition.width;
2111 }
2112
2113 static void
2114 gtk_calendar_get_preferred_height (GtkWidget *widget,
2115                                    gint      *minimum,
2116                                    gint      *natural)
2117 {
2118   GtkRequisition requisition;
2119
2120   gtk_calendar_size_request (widget, &requisition);
2121
2122   *minimum = *natural = requisition.height;
2123 }
2124
2125 static void
2126 gtk_calendar_size_allocate (GtkWidget     *widget,
2127                             GtkAllocation *allocation)
2128 {
2129   GtkCalendar *calendar = GTK_CALENDAR (widget);
2130   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
2131   GtkStyleContext *context;
2132   GtkStateFlags state;
2133   GtkBorder padding;
2134   guint i;
2135   gint inner_border = calendar_get_inner_border (calendar);
2136   gint calendar_xsep = calendar_get_xsep (calendar);
2137
2138   context = gtk_widget_get_style_context (widget);
2139   state = gtk_widget_get_state_flags (widget);
2140   gtk_style_context_get_padding (context, state, &padding);
2141
2142   gtk_widget_set_allocation (widget, allocation);
2143
2144   if (priv->display_flags & GTK_CALENDAR_SHOW_WEEK_NUMBERS)
2145     {
2146       priv->day_width = (priv->min_day_width
2147                          * ((allocation->width - (inner_border * 2) - padding.left - padding.right
2148                              - (CALENDAR_MARGIN * 2) -  (DAY_XSEP * 6) - calendar_xsep * 2))
2149                          / (7 * priv->min_day_width + priv->max_week_char_width * 2));
2150       priv->week_width = ((allocation->width - (inner_border * 2) - padding.left - padding.right
2151                            - (CALENDAR_MARGIN * 2) - (DAY_XSEP * 6) - calendar_xsep * 2 )
2152                           - priv->day_width * 7 + CALENDAR_MARGIN + calendar_xsep);
2153     }
2154   else
2155     {
2156       priv->day_width = (allocation->width
2157                          - (inner_border * 2)
2158                          - padding.left - padding.right
2159                          - (CALENDAR_MARGIN * 2)
2160                          - (DAY_XSEP * 6))/7;
2161       priv->week_width = 0;
2162     }
2163
2164   if (gtk_widget_get_realized (widget))
2165     {
2166       if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
2167         gdk_window_move_resize (priv->main_win,
2168                                 allocation->x
2169                                  + priv->week_width + padding.left + inner_border,
2170                                 allocation->y
2171                                  + priv->header_h + priv->day_name_h
2172                                  + (padding.top + inner_border),
2173                                 allocation->width - priv->week_width
2174                                 - (inner_border * 2) - padding.left - padding.right,
2175                                 priv->main_h);
2176       else
2177         gdk_window_move_resize (priv->main_win,
2178                                 allocation->x
2179                                  + padding.left + inner_border,
2180                                 allocation->y
2181                                  + priv->header_h + priv->day_name_h
2182                                  + padding.top + inner_border,
2183                                 allocation->width - priv->week_width
2184                                 - (inner_border * 2) - padding.left - padding.right,
2185                                 priv->main_h);
2186
2187       for (i = 0 ; i < 4 ; i++)
2188         {
2189           if (priv->arrow_win[i])
2190             {
2191               GdkRectangle rect;
2192               calendar_arrow_rectangle (calendar, i, &rect);
2193
2194               gdk_window_move_resize (priv->arrow_win[i],
2195                                       allocation->x + rect.x,
2196                                       allocation->y + rect.y,
2197                                       rect.width, rect.height);
2198             }
2199         }
2200     }
2201 }
2202
2203 \f
2204 /****************************************
2205  *              Repainting              *
2206  ****************************************/
2207
2208 static void
2209 calendar_paint_header (GtkCalendar *calendar, cairo_t *cr)
2210 {
2211   GtkWidget *widget = GTK_WIDGET (calendar);
2212   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
2213   GtkAllocation allocation;
2214   GtkStyleContext *context;
2215   GtkStateFlags state;
2216   GtkBorder padding;
2217   char buffer[255];
2218   gint x, y;
2219   gint header_width;
2220   gint max_month_width;
2221   gint max_year_width;
2222   PangoLayout *layout;
2223   PangoRectangle logical_rect;
2224   gboolean year_left;
2225   time_t tmp_time;
2226   struct tm *tm;
2227   gchar *str;
2228
2229   context = gtk_widget_get_style_context (widget);
2230   state = gtk_widget_get_state_flags (widget);
2231   gtk_style_context_get_padding (context, state, &padding);
2232
2233   cairo_save (cr);
2234   cairo_translate (cr, padding.left, padding.top);
2235
2236   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
2237     year_left = priv->year_before;
2238   else
2239     year_left = !priv->year_before;
2240
2241   gtk_widget_get_allocation (widget, &allocation);
2242
2243   header_width = allocation.width - padding.left - padding.right;
2244
2245   max_month_width = priv->max_month_width;
2246   max_year_width = priv->max_year_width;
2247
2248   gtk_style_context_save (context);
2249   gtk_style_context_add_class (context, GTK_STYLE_CLASS_HEADER);
2250
2251   gtk_render_background (context, cr, 0, 0, header_width, priv->header_h);
2252   gtk_render_frame (context, cr, 0, 0, header_width, priv->header_h);
2253
2254   tmp_time = 1;  /* Jan 1 1970, 00:00:01 UTC */
2255   tm = gmtime (&tmp_time);
2256   tm->tm_year = priv->year - 1900;
2257
2258   /* Translators: This dictates how the year is displayed in
2259    * gtkcalendar widget.  See strftime() manual for the format.
2260    * Use only ASCII in the translation.
2261    *
2262    * Also look for the msgid "2000".
2263    * Translate that entry to a year with the widest output of this
2264    * msgid.
2265    *
2266    * "%Y" is appropriate for most locales.
2267    */
2268   strftime (buffer, sizeof (buffer), C_("calendar year format", "%Y"), tm);
2269   str = g_locale_to_utf8 (buffer, -1, NULL, NULL, NULL);
2270   layout = gtk_widget_create_pango_layout (widget, str);
2271   g_free (str);
2272
2273   pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
2274
2275   /* Draw title */
2276   y = (priv->header_h - logical_rect.height) / 2;
2277
2278   /* Draw year and its arrows */
2279
2280   if (priv->display_flags & GTK_CALENDAR_NO_MONTH_CHANGE)
2281     if (year_left)
2282       x = 3 + (max_year_width - logical_rect.width)/2;
2283     else
2284       x = header_width - (3 + max_year_width
2285                           - (max_year_width - logical_rect.width)/2);
2286   else
2287     if (year_left)
2288       x = 3 + priv->arrow_width + (max_year_width - logical_rect.width)/2;
2289     else
2290       x = header_width - (3 + priv->arrow_width + max_year_width
2291                           - (max_year_width - logical_rect.width)/2);
2292
2293   gtk_render_layout (context, cr, x, y, layout);
2294
2295   /* Draw month */
2296   g_snprintf (buffer, sizeof (buffer), "%s", default_monthname[priv->month]);
2297   pango_layout_set_text (layout, buffer, -1);
2298   pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
2299
2300   if (priv->display_flags & GTK_CALENDAR_NO_MONTH_CHANGE)
2301     if (year_left)
2302       x = header_width - (3 + max_month_width
2303                           - (max_month_width - logical_rect.width)/2);
2304     else
2305     x = 3 + (max_month_width - logical_rect.width) / 2;
2306   else
2307     if (year_left)
2308       x = header_width - (3 + priv->arrow_width + max_month_width
2309                           - (max_month_width - logical_rect.width)/2);
2310     else
2311     x = 3 + priv->arrow_width + (max_month_width - logical_rect.width)/2;
2312
2313   gtk_render_layout (context, cr, x, y, layout);
2314   g_object_unref (layout);
2315
2316   gtk_style_context_restore (context);
2317   cairo_restore (cr);
2318 }
2319
2320 static void
2321 calendar_paint_day_names (GtkCalendar *calendar,
2322                           cairo_t     *cr)
2323 {
2324   GtkWidget *widget = GTK_WIDGET (calendar);
2325   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
2326   GtkStyleContext *context;
2327   GtkStateFlags state;
2328   GtkBorder padding;
2329   GtkAllocation allocation;
2330   char buffer[255];
2331   int day,i;
2332   int day_width, cal_width;
2333   int day_wid_sep;
2334   PangoLayout *layout;
2335   PangoRectangle logical_rect;
2336   gint focus_padding;
2337   gint focus_width;
2338   gint calendar_ysep = calendar_get_ysep (calendar);
2339   gint calendar_xsep = calendar_get_xsep (calendar);
2340   gint inner_border = calendar_get_inner_border (calendar);
2341
2342   context = gtk_widget_get_style_context (widget);
2343   state = gtk_widget_get_state_flags (widget);
2344   gtk_style_context_get_padding (context, state, &padding);
2345
2346   cairo_save (cr);
2347
2348   cairo_translate (cr,
2349                    padding.left + inner_border,
2350                    priv->header_h + padding.top + inner_border);
2351
2352   gtk_widget_style_get (GTK_WIDGET (widget),
2353                         "focus-line-width", &focus_width,
2354                         "focus-padding", &focus_padding,
2355                         NULL);
2356
2357   gtk_widget_get_allocation (widget, &allocation);
2358
2359   day_width = priv->day_width;
2360   cal_width = allocation.width - (inner_border * 2) - padding.left - padding.right;
2361   day_wid_sep = day_width + DAY_XSEP;
2362
2363   /*
2364    * Draw rectangles as inverted background for the labels.
2365    */
2366
2367   gtk_style_context_save (context);
2368   gtk_style_context_add_class (context, GTK_STYLE_CLASS_HIGHLIGHT);
2369
2370   gtk_render_background (context, cr,
2371                          CALENDAR_MARGIN, CALENDAR_MARGIN,
2372                          cal_width - CALENDAR_MARGIN * 2,
2373                          priv->day_name_h - CALENDAR_MARGIN);
2374
2375   if (priv->display_flags & GTK_CALENDAR_SHOW_WEEK_NUMBERS)
2376     gtk_render_background (context, cr,
2377                            CALENDAR_MARGIN,
2378                            priv->day_name_h - calendar_ysep,
2379                            priv->week_width - calendar_ysep - CALENDAR_MARGIN,
2380                            calendar_ysep);
2381
2382   /*
2383    * Write the labels
2384    */
2385   layout = gtk_widget_create_pango_layout (widget, NULL);
2386
2387   for (i = 0; i < 7; i++)
2388     {
2389       if (gtk_widget_get_direction (GTK_WIDGET (calendar)) == GTK_TEXT_DIR_RTL)
2390         day = 6 - i;
2391       else
2392         day = i;
2393       day = (day + priv->week_start) % 7;
2394       g_snprintf (buffer, sizeof (buffer), "%s", default_abbreviated_dayname[day]);
2395
2396       pango_layout_set_text (layout, buffer, -1);
2397       pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
2398
2399       gtk_render_layout (context, cr,
2400                          (CALENDAR_MARGIN +
2401                           + (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR ?
2402                              (priv->week_width + (priv->week_width ? calendar_xsep : 0))
2403                              : 0)
2404                           + day_wid_sep * i
2405                           + (day_width - logical_rect.width)/2),
2406                          CALENDAR_MARGIN + focus_width + focus_padding + logical_rect.y,
2407                          layout);
2408     }
2409
2410   g_object_unref (layout);
2411
2412   gtk_style_context_restore (context);
2413   cairo_restore (cr);
2414 }
2415
2416 static void
2417 calendar_paint_week_numbers (GtkCalendar *calendar,
2418                              cairo_t     *cr)
2419 {
2420   GtkWidget *widget = GTK_WIDGET (calendar);
2421   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
2422   GtkStyleContext *context;
2423   GtkStateFlags state;
2424   GtkBorder padding;
2425   guint week = 0, year;
2426   gint row, x_loc, y_loc;
2427   gint day_height;
2428   char buffer[32];
2429   PangoLayout *layout;
2430   PangoRectangle logical_rect;
2431   gint focus_padding;
2432   gint focus_width;
2433   gint calendar_xsep = calendar_get_xsep (calendar);
2434   gint inner_border = calendar_get_inner_border (calendar);
2435   gint x, y;
2436
2437   context = gtk_widget_get_style_context (widget);
2438   state = gtk_widget_get_state_flags (widget);
2439   gtk_style_context_get_padding (context, state, &padding);
2440
2441   cairo_save (cr);
2442
2443   y = priv->header_h + priv->day_name_h + (padding.top + inner_border);
2444   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
2445     x = padding.left + inner_border;
2446   else
2447     x = gtk_widget_get_allocated_width (widget) - priv->week_width - (padding.right + inner_border);
2448
2449   gtk_widget_style_get (GTK_WIDGET (widget),
2450                         "focus-line-width", &focus_width,
2451                         "focus-padding", &focus_padding,
2452                         NULL);
2453
2454   gtk_style_context_save (context);
2455   gtk_style_context_add_class (context, GTK_STYLE_CLASS_HIGHLIGHT);
2456
2457   if (priv->display_flags & GTK_CALENDAR_SHOW_DAY_NAMES)
2458     gtk_render_background (context, cr,
2459                            x + CALENDAR_MARGIN, y,
2460                            priv->week_width - CALENDAR_MARGIN,
2461                            priv->main_h - CALENDAR_MARGIN);
2462   else
2463     gtk_render_background (context, cr,
2464                            x + CALENDAR_MARGIN,
2465                            y + CALENDAR_MARGIN,
2466                            priv->week_width - CALENDAR_MARGIN,
2467                            priv->main_h - 2 * CALENDAR_MARGIN);
2468
2469   /*
2470    * Write the labels
2471    */
2472
2473   layout = gtk_widget_create_pango_layout (widget, NULL);
2474   day_height = calendar_row_height (calendar);
2475
2476   for (row = 0; row < 6; row++)
2477     {
2478       gboolean result;
2479
2480       year = priv->year;
2481       if (priv->day[row][6] < 15 && row > 3 && priv->month == 11)
2482         year++;
2483
2484       result = week_of_year (&week, &year,
2485                              ((priv->day[row][6] < 15 && row > 3 ? 1 : 0)
2486                               + priv->month) % 12 + 1, priv->day[row][6]);
2487       g_return_if_fail (result);
2488
2489       /* Translators: this defines whether the week numbers should use
2490        * localized digits or the ones used in English (0123...).
2491        *
2492        * Translate to "%Id" if you want to use localized digits, or
2493        * translate to "%d" otherwise.
2494        *
2495        * Note that translating this doesn't guarantee that you get localized
2496        * digits. That needs support from your system and locale definition
2497        * too.
2498        */
2499       g_snprintf (buffer, sizeof (buffer), C_("calendar:week:digits", "%d"), week);
2500       pango_layout_set_text (layout, buffer, -1);
2501       pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
2502
2503       y_loc = calendar_top_y_for_row (calendar, row) + (day_height - logical_rect.height) / 2;
2504
2505       x_loc = x + (priv->week_width
2506                    - logical_rect.width
2507                    - calendar_xsep - focus_padding - focus_width);
2508
2509       gtk_render_layout (context, cr, x_loc, y_loc, layout);
2510     }
2511
2512   g_object_unref (layout);
2513
2514   gtk_style_context_restore (context);
2515   cairo_restore (cr);
2516 }
2517
2518 static void
2519 calendar_invalidate_day_num (GtkCalendar *calendar,
2520                              gint         day)
2521 {
2522   GtkCalendarPrivate *priv = calendar->priv;
2523   gint r, c, row, col;
2524
2525   row = -1;
2526   col = -1;
2527   for (r = 0; r < 6; r++)
2528     for (c = 0; c < 7; c++)
2529       if (priv->day_month[r][c] == MONTH_CURRENT &&
2530           priv->day[r][c] == day)
2531         {
2532           row = r;
2533           col = c;
2534         }
2535
2536   g_return_if_fail (row != -1);
2537   g_return_if_fail (col != -1);
2538
2539   calendar_invalidate_day (calendar, row, col);
2540 }
2541
2542 static void
2543 calendar_invalidate_day (GtkCalendar *calendar,
2544                          gint         row,
2545                          gint         col)
2546 {
2547   GdkRectangle day_rect;
2548   GtkAllocation allocation;
2549
2550   gtk_widget_get_allocation (GTK_WIDGET (calendar), &allocation);
2551   calendar_day_rectangle (calendar, row, col, &day_rect);
2552   gtk_widget_queue_draw_area (GTK_WIDGET (calendar),
2553                               allocation.x + day_rect.x,
2554                               allocation.y + day_rect.y,
2555                               day_rect.width, day_rect.height);
2556 }
2557
2558 static gboolean
2559 is_color_attribute (PangoAttribute *attribute,
2560                     gpointer        data)
2561 {
2562   return (attribute->klass->type == PANGO_ATTR_FOREGROUND ||
2563           attribute->klass->type == PANGO_ATTR_BACKGROUND);
2564 }
2565
2566 static void
2567 calendar_paint_day (GtkCalendar *calendar,
2568                     cairo_t     *cr,
2569                     gint         row,
2570                     gint         col)
2571 {
2572   GtkWidget *widget = GTK_WIDGET (calendar);
2573   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
2574   GtkStyleContext *context;
2575   GtkStateFlags state = 0;
2576   gchar *detail;
2577   gchar buffer[32];
2578   gint day;
2579   gint x_loc, y_loc;
2580   GdkRectangle day_rect;
2581
2582   PangoLayout *layout;
2583   PangoRectangle logical_rect;
2584   gboolean overflow = FALSE;
2585   gboolean show_details;
2586
2587   g_return_if_fail (row < 6);
2588   g_return_if_fail (col < 7);
2589
2590   context = gtk_widget_get_style_context (widget);
2591   state = gtk_widget_get_state_flags (widget);
2592
2593   day = priv->day[row][col];
2594   show_details = (priv->display_flags & GTK_CALENDAR_SHOW_DETAILS);
2595
2596   calendar_day_rectangle (calendar, row, col, &day_rect);
2597
2598   gtk_style_context_save (context);
2599
2600   state &= ~(GTK_STATE_FLAG_INCONSISTENT | GTK_STATE_FLAG_ACTIVE | GTK_STATE_FLAG_SELECTED);
2601
2602   if (priv->day_month[row][col] == MONTH_PREV ||
2603       priv->day_month[row][col] == MONTH_NEXT)
2604     state |= GTK_STATE_FLAG_INCONSISTENT;
2605   else
2606     {
2607       if (priv->marked_date[day-1])
2608         state |= GTK_STATE_FLAG_ACTIVE;
2609
2610       if (priv->selected_day == day)
2611         {
2612           state |= GTK_STATE_FLAG_SELECTED;
2613
2614           gtk_style_context_set_state (context, state);
2615           gtk_render_background (context, cr,
2616                                  day_rect.x, day_rect.y,
2617                                  day_rect.width, day_rect.height);
2618         }
2619     }
2620
2621   gtk_style_context_set_state (context, state);
2622
2623   /* Translators: this defines whether the day numbers should use
2624    * localized digits or the ones used in English (0123...).
2625    *
2626    * Translate to "%Id" if you want to use localized digits, or
2627    * translate to "%d" otherwise.
2628    *
2629    * Note that translating this doesn't guarantee that you get localized
2630    * digits. That needs support from your system and locale definition
2631    * too.
2632    */
2633   g_snprintf (buffer, sizeof (buffer), C_("calendar:day:digits", "%d"), day);
2634
2635   /* Get extra information to show, if any: */
2636
2637   detail = gtk_calendar_get_detail (calendar, row, col);
2638
2639   layout = gtk_widget_create_pango_layout (widget, buffer);
2640   pango_layout_set_alignment (layout, PANGO_ALIGN_CENTER);
2641   pango_layout_get_pixel_extents (layout, NULL, &logical_rect);
2642
2643   x_loc = day_rect.x + (day_rect.width - logical_rect.width) / 2;
2644   y_loc = day_rect.y;
2645
2646   gtk_render_layout (context, cr, x_loc, y_loc, layout);
2647
2648   if (priv->day_month[row][col] == MONTH_CURRENT &&
2649      (priv->marked_date[day-1] || (detail && !show_details)))
2650     gtk_render_layout (context, cr, x_loc - 1, y_loc, layout);
2651
2652   y_loc += priv->max_day_char_descent;
2653
2654   if (priv->detail_func && show_details)
2655     {
2656       GdkRGBA color;
2657
2658       cairo_save (cr);
2659
2660       gtk_style_context_get_color (context, state, &color);
2661       gdk_cairo_set_source_rgba (cr, &color);
2662
2663       cairo_set_line_width (cr, 1);
2664       cairo_move_to (cr, day_rect.x + 2, y_loc + 0.5);
2665       cairo_line_to (cr, day_rect.x + day_rect.width - 2, y_loc + 0.5);
2666       cairo_stroke (cr);
2667
2668       cairo_restore (cr);
2669
2670       y_loc += 2;
2671     }
2672
2673   if (detail && show_details)
2674     {
2675       gchar *markup = g_strconcat ("<small>", detail, "</small>", NULL);
2676       pango_layout_set_markup (layout, markup, -1);
2677       g_free (markup);
2678
2679       if (day == priv->selected_day)
2680         {
2681           /* Stripping colors as they conflict with selection marking. */
2682
2683           PangoAttrList *attrs = pango_layout_get_attributes (layout);
2684           PangoAttrList *colors = NULL;
2685
2686           if (attrs)
2687             colors = pango_attr_list_filter (attrs, is_color_attribute, NULL);
2688           if (colors)
2689             pango_attr_list_unref (colors);
2690         }
2691
2692       pango_layout_set_wrap (layout, PANGO_WRAP_WORD_CHAR);
2693       pango_layout_set_width (layout, PANGO_SCALE * day_rect.width);
2694
2695       if (priv->detail_height_rows)
2696         {
2697           gint dy = day_rect.height - (y_loc - day_rect.y);
2698           pango_layout_set_height (layout, PANGO_SCALE * dy);
2699           pango_layout_set_ellipsize (layout, PANGO_ELLIPSIZE_END);
2700         }
2701
2702       cairo_move_to (cr, day_rect.x, y_loc);
2703       pango_cairo_show_layout (cr, layout);
2704     }
2705
2706   if (gtk_widget_has_visible_focus (widget) &&
2707       priv->focus_row == row && priv->focus_col == col)
2708     gtk_render_focus (context, cr,
2709                       day_rect.x, day_rect.y,
2710                       day_rect.width, day_rect.height);
2711
2712   if (overflow)
2713     priv->detail_overflow[row] |= (1 << col);
2714   else
2715     priv->detail_overflow[row] &= ~(1 << col);
2716
2717   gtk_style_context_restore (context);
2718   g_object_unref (layout);
2719   g_free (detail);
2720 }
2721
2722 static void
2723 calendar_paint_main (GtkCalendar *calendar,
2724                      cairo_t     *cr)
2725 {
2726   gint row, col;
2727
2728   cairo_save (cr);
2729
2730   for (col = 0; col < 7; col++)
2731     for (row = 0; row < 6; row++)
2732       calendar_paint_day (calendar, cr, row, col);
2733
2734   cairo_restore (cr);
2735 }
2736
2737 static void
2738 calendar_invalidate_arrow (GtkCalendar *calendar,
2739                            guint        arrow)
2740 {
2741   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
2742
2743   if (priv->display_flags & GTK_CALENDAR_SHOW_HEADING &&
2744       priv->arrow_win[arrow])
2745     {
2746       GdkRectangle rect;
2747       GtkAllocation allocation;
2748
2749       calendar_arrow_rectangle (calendar, arrow, &rect);
2750       gtk_widget_get_allocation (GTK_WIDGET (calendar), &allocation);
2751       gtk_widget_queue_draw_area (GTK_WIDGET (calendar),
2752                                   allocation.x + rect.x,
2753                                   allocation.y + rect.y,
2754                                   rect.width, rect.height);
2755     }
2756 }
2757
2758 static void
2759 calendar_paint_arrow (GtkCalendar *calendar,
2760                       cairo_t     *cr,
2761                       guint        arrow)
2762 {
2763   GtkWidget *widget = GTK_WIDGET (calendar);
2764   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
2765   GtkStyleContext *context;
2766   GtkStateFlags state;
2767   GdkRectangle rect;
2768   gdouble angle;
2769
2770   if (!priv->arrow_win[arrow])
2771     return;
2772
2773   calendar_arrow_rectangle (calendar, arrow, &rect);
2774
2775   cairo_save (cr);
2776
2777   context = gtk_widget_get_style_context (widget);
2778   state = gtk_widget_get_state_flags (widget);
2779
2780   if (priv->arrow_prelight & (1 << arrow))
2781     state |= GTK_STATE_FLAG_PRELIGHT;
2782   else
2783     state &= ~(GTK_STATE_FLAG_PRELIGHT);
2784
2785   gtk_style_context_save (context);
2786   gtk_style_context_set_state (context, state);
2787   gtk_style_context_add_class (context, GTK_STYLE_CLASS_BUTTON);
2788
2789   gtk_render_background (context, cr,
2790                          rect.x, rect.y,
2791                          rect.width, rect.height);
2792
2793   if (arrow == ARROW_MONTH_LEFT || arrow == ARROW_YEAR_LEFT)
2794     angle = 3 * (G_PI / 2);
2795   else
2796     angle = G_PI / 2;
2797
2798   gtk_render_arrow (context, cr, angle,
2799                     rect.x + (rect.width - 8) / 2,
2800                     rect.y + (rect.height - 8) / 2,
2801                     8);
2802
2803   gtk_style_context_restore (context);
2804   cairo_restore (cr);
2805 }
2806
2807 static gboolean
2808 gtk_calendar_draw (GtkWidget *widget,
2809                    cairo_t   *cr)
2810 {
2811   GtkCalendar *calendar = GTK_CALENDAR (widget);
2812   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
2813   int i;
2814
2815   if (gtk_cairo_should_draw_window (cr, gtk_widget_get_window (widget)))
2816     {
2817       GtkStyleContext *context;
2818
2819       context = gtk_widget_get_style_context (widget);
2820
2821       gtk_style_context_save (context);
2822       gtk_style_context_add_class (context, GTK_STYLE_CLASS_VIEW);
2823
2824       gtk_render_background (context, cr, 0, 0,
2825                              gtk_widget_get_allocated_width (widget),
2826                              gtk_widget_get_allocated_height (widget));
2827       gtk_render_frame (context, cr, 0, 0,
2828                         gtk_widget_get_allocated_width (widget),
2829                         gtk_widget_get_allocated_height (widget));
2830
2831       gtk_style_context_restore (context);
2832     }
2833
2834   calendar_paint_main (calendar, cr);
2835
2836   if (priv->display_flags & GTK_CALENDAR_SHOW_HEADING)
2837     {
2838       calendar_paint_header (calendar, cr);
2839       for (i = 0; i < 4; i++)
2840         calendar_paint_arrow (calendar, cr, i);
2841     }
2842
2843   if (priv->display_flags & GTK_CALENDAR_SHOW_DAY_NAMES)
2844     calendar_paint_day_names (calendar, cr);
2845
2846   if (priv->display_flags & GTK_CALENDAR_SHOW_WEEK_NUMBERS)
2847     calendar_paint_week_numbers (calendar, cr);
2848
2849   return FALSE;
2850 }
2851
2852
2853 /****************************************
2854  *           Mouse handling             *
2855  ****************************************/
2856
2857 static void
2858 calendar_arrow_action (GtkCalendar *calendar,
2859                        guint        arrow)
2860 {
2861   switch (arrow)
2862     {
2863     case ARROW_YEAR_LEFT:
2864       calendar_set_year_prev (calendar);
2865       break;
2866     case ARROW_YEAR_RIGHT:
2867       calendar_set_year_next (calendar);
2868       break;
2869     case ARROW_MONTH_LEFT:
2870       calendar_set_month_prev (calendar);
2871       break;
2872     case ARROW_MONTH_RIGHT:
2873       calendar_set_month_next (calendar);
2874       break;
2875     default:;
2876       /* do nothing */
2877     }
2878 }
2879
2880 static gboolean
2881 calendar_timer (gpointer data)
2882 {
2883   GtkCalendar *calendar = data;
2884   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
2885   gboolean retval = FALSE;
2886
2887   if (priv->timer)
2888     {
2889       calendar_arrow_action (calendar, priv->click_child);
2890
2891       if (priv->need_timer)
2892         {
2893           GtkSettings *settings;
2894           guint        timeout;
2895
2896           settings = gtk_widget_get_settings (GTK_WIDGET (calendar));
2897           g_object_get (settings, "gtk-timeout-repeat", &timeout, NULL);
2898
2899           priv->need_timer = FALSE;
2900           priv->timer = gdk_threads_add_timeout_full (G_PRIORITY_DEFAULT_IDLE,
2901                                             timeout * SCROLL_DELAY_FACTOR,
2902                                             (GSourceFunc) calendar_timer,
2903                                             (gpointer) calendar, NULL);
2904         }
2905       else
2906         retval = TRUE;
2907     }
2908
2909   return retval;
2910 }
2911
2912 static void
2913 calendar_start_spinning (GtkCalendar *calendar,
2914                          gint         click_child)
2915 {
2916   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
2917
2918   priv->click_child = click_child;
2919
2920   if (!priv->timer)
2921     {
2922       GtkSettings *settings;
2923       guint        timeout;
2924
2925       settings = gtk_widget_get_settings (GTK_WIDGET (calendar));
2926       g_object_get (settings, "gtk-timeout-initial", &timeout, NULL);
2927
2928       priv->need_timer = TRUE;
2929       priv->timer = gdk_threads_add_timeout_full (G_PRIORITY_DEFAULT_IDLE,
2930                                         timeout,
2931                                         (GSourceFunc) calendar_timer,
2932                                         (gpointer) calendar, NULL);
2933     }
2934 }
2935
2936 static void
2937 calendar_stop_spinning (GtkCalendar *calendar)
2938 {
2939   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
2940
2941   if (priv->timer)
2942     {
2943       g_source_remove (priv->timer);
2944       priv->timer = 0;
2945       priv->need_timer = FALSE;
2946     }
2947 }
2948
2949 static void
2950 calendar_main_button_press (GtkCalendar    *calendar,
2951                             GdkEventButton *event)
2952 {
2953   GtkWidget *widget = GTK_WIDGET (calendar);
2954   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
2955   gint x, y;
2956   gint win_x, win_y;
2957   gint row, col;
2958   gint day_month;
2959   gint day;
2960   GtkAllocation allocation;
2961
2962   x = (gint) (event->x);
2963   y = (gint) (event->y);
2964
2965   gdk_window_get_position (priv->main_win, &win_x, &win_y);
2966   gtk_widget_get_allocation (widget, &allocation);
2967
2968   row = calendar_row_from_y (calendar, y + win_y - allocation.y);
2969   col = calendar_column_from_x (calendar, x + win_x - allocation.x);
2970
2971   /* If row or column isn't found, just return. */
2972   if (row == -1 || col == -1)
2973     return;
2974
2975   day_month = priv->day_month[row][col];
2976
2977   if (event->type == GDK_BUTTON_PRESS)
2978     {
2979       day = priv->day[row][col];
2980
2981       if (day_month == MONTH_PREV)
2982         calendar_set_month_prev (calendar);
2983       else if (day_month == MONTH_NEXT)
2984         calendar_set_month_next (calendar);
2985
2986       if (!gtk_widget_has_focus (widget))
2987         gtk_widget_grab_focus (widget);
2988
2989       if (event->button == 1)
2990         {
2991           priv->in_drag = 1;
2992           priv->drag_start_x = x;
2993           priv->drag_start_y = y;
2994         }
2995
2996       calendar_select_and_focus_day (calendar, day);
2997     }
2998   else if (event->type == GDK_2BUTTON_PRESS)
2999     {
3000       priv->in_drag = 0;
3001       if (day_month == MONTH_CURRENT)
3002         g_signal_emit (calendar,
3003                        gtk_calendar_signals[DAY_SELECTED_DOUBLE_CLICK_SIGNAL],
3004                        0);
3005     }
3006 }
3007
3008 static gboolean
3009 gtk_calendar_button_press (GtkWidget      *widget,
3010                            GdkEventButton *event)
3011 {
3012   GtkCalendar *calendar = GTK_CALENDAR (widget);
3013   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
3014   gint arrow = -1;
3015
3016   if (event->window == priv->main_win)
3017     calendar_main_button_press (calendar, event);
3018
3019   if (!gtk_widget_has_focus (widget))
3020     gtk_widget_grab_focus (widget);
3021
3022   for (arrow = ARROW_YEAR_LEFT; arrow <= ARROW_MONTH_RIGHT; arrow++)
3023     {
3024       if (event->window == priv->arrow_win[arrow])
3025         {
3026
3027           /* only call the action on single click, not double */
3028           if (event->type == GDK_BUTTON_PRESS)
3029             {
3030               if (event->button == 1)
3031                 calendar_start_spinning (calendar, arrow);
3032
3033               calendar_arrow_action (calendar, arrow);
3034             }
3035
3036           return TRUE;
3037         }
3038     }
3039
3040   return FALSE;
3041 }
3042
3043 static gboolean
3044 gtk_calendar_button_release (GtkWidget    *widget,
3045                              GdkEventButton *event)
3046 {
3047   GtkCalendar *calendar = GTK_CALENDAR (widget);
3048   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
3049
3050   if (event->button == 1)
3051     {
3052       calendar_stop_spinning (calendar);
3053
3054       if (priv->in_drag)
3055         priv->in_drag = 0;
3056     }
3057
3058   return TRUE;
3059 }
3060
3061 static gboolean
3062 gtk_calendar_motion_notify (GtkWidget      *widget,
3063                             GdkEventMotion *event)
3064 {
3065   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
3066
3067   if (priv->in_drag)
3068     {
3069       if (gtk_drag_check_threshold (widget,
3070                                     priv->drag_start_x, priv->drag_start_y,
3071                                     event->x, event->y))
3072         {
3073           GdkDragContext *context;
3074           GtkTargetList *target_list = gtk_target_list_new (NULL, 0);
3075           gtk_target_list_add_text_targets (target_list, 0);
3076           context = gtk_drag_begin (widget, target_list, GDK_ACTION_COPY,
3077                                     1, (GdkEvent *)event);
3078
3079           priv->in_drag = 0;
3080           gtk_target_list_unref (target_list);
3081           gtk_drag_set_icon_default (context);
3082         }
3083     }
3084
3085   return TRUE;
3086 }
3087
3088 static gboolean
3089 gtk_calendar_enter_notify (GtkWidget        *widget,
3090                            GdkEventCrossing *event)
3091 {
3092   GtkCalendar *calendar = GTK_CALENDAR (widget);
3093   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
3094
3095   if (event->window == priv->arrow_win[ARROW_MONTH_LEFT])
3096     {
3097       priv->arrow_prelight |= (1 << ARROW_MONTH_LEFT);
3098       calendar_invalidate_arrow (calendar, ARROW_MONTH_LEFT);
3099     }
3100
3101   if (event->window == priv->arrow_win[ARROW_MONTH_RIGHT])
3102     {
3103       priv->arrow_prelight |= (1 << ARROW_MONTH_RIGHT);
3104       calendar_invalidate_arrow (calendar, ARROW_MONTH_RIGHT);
3105     }
3106
3107   if (event->window == priv->arrow_win[ARROW_YEAR_LEFT])
3108     {
3109       priv->arrow_prelight |= (1 << ARROW_YEAR_LEFT);
3110       calendar_invalidate_arrow (calendar, ARROW_YEAR_LEFT);
3111     }
3112
3113   if (event->window == priv->arrow_win[ARROW_YEAR_RIGHT])
3114     {
3115       priv->arrow_prelight |= (1 << ARROW_YEAR_RIGHT);
3116       calendar_invalidate_arrow (calendar, ARROW_YEAR_RIGHT);
3117     }
3118
3119   return TRUE;
3120 }
3121
3122 static gboolean
3123 gtk_calendar_leave_notify (GtkWidget        *widget,
3124                            GdkEventCrossing *event)
3125 {
3126   GtkCalendar *calendar = GTK_CALENDAR (widget);
3127   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
3128
3129   if (event->window == priv->arrow_win[ARROW_MONTH_LEFT])
3130     {
3131       priv->arrow_prelight &= ~(1 << ARROW_MONTH_LEFT);
3132       calendar_invalidate_arrow (calendar, ARROW_MONTH_LEFT);
3133     }
3134
3135   if (event->window == priv->arrow_win[ARROW_MONTH_RIGHT])
3136     {
3137       priv->arrow_prelight &= ~(1 << ARROW_MONTH_RIGHT);
3138       calendar_invalidate_arrow (calendar, ARROW_MONTH_RIGHT);
3139     }
3140
3141   if (event->window == priv->arrow_win[ARROW_YEAR_LEFT])
3142     {
3143       priv->arrow_prelight &= ~(1 << ARROW_YEAR_LEFT);
3144       calendar_invalidate_arrow (calendar, ARROW_YEAR_LEFT);
3145     }
3146
3147   if (event->window == priv->arrow_win[ARROW_YEAR_RIGHT])
3148     {
3149       priv->arrow_prelight &= ~(1 << ARROW_YEAR_RIGHT);
3150       calendar_invalidate_arrow (calendar, ARROW_YEAR_RIGHT);
3151     }
3152
3153   return TRUE;
3154 }
3155
3156 static gboolean
3157 gtk_calendar_scroll (GtkWidget      *widget,
3158                      GdkEventScroll *event)
3159 {
3160   GtkCalendar *calendar = GTK_CALENDAR (widget);
3161
3162   if (event->direction == GDK_SCROLL_UP)
3163     {
3164       if (!gtk_widget_has_focus (widget))
3165         gtk_widget_grab_focus (widget);
3166       calendar_set_month_prev (calendar);
3167     }
3168   else if (event->direction == GDK_SCROLL_DOWN)
3169     {
3170       if (!gtk_widget_has_focus (widget))
3171         gtk_widget_grab_focus (widget);
3172       calendar_set_month_next (calendar);
3173     }
3174   else
3175     return FALSE;
3176
3177   return TRUE;
3178 }
3179
3180 \f
3181 /****************************************
3182  *             Key handling              *
3183  ****************************************/
3184
3185 static void
3186 move_focus (GtkCalendar *calendar,
3187             gint         direction)
3188 {
3189   GtkCalendarPrivate *priv = calendar->priv;
3190   GtkTextDirection text_dir = gtk_widget_get_direction (GTK_WIDGET (calendar));
3191
3192   if ((text_dir == GTK_TEXT_DIR_LTR && direction == -1) ||
3193       (text_dir == GTK_TEXT_DIR_RTL && direction == 1))
3194     {
3195       if (priv->focus_col > 0)
3196           priv->focus_col--;
3197       else if (priv->focus_row > 0)
3198         {
3199           priv->focus_col = 6;
3200           priv->focus_row--;
3201         }
3202
3203       if (priv->focus_col < 0)
3204         priv->focus_col = 6;
3205       if (priv->focus_row < 0)
3206         priv->focus_row = 5;
3207     }
3208   else
3209     {
3210       if (priv->focus_col < 6)
3211         priv->focus_col++;
3212       else if (priv->focus_row < 5)
3213         {
3214           priv->focus_col = 0;
3215           priv->focus_row++;
3216         }
3217
3218       if (priv->focus_col < 0)
3219         priv->focus_col = 0;
3220       if (priv->focus_row < 0)
3221         priv->focus_row = 0;
3222     }
3223 }
3224
3225 static gboolean
3226 gtk_calendar_key_press (GtkWidget   *widget,
3227                         GdkEventKey *event)
3228 {
3229   GtkCalendar *calendar = GTK_CALENDAR (widget);
3230   GtkCalendarPrivate *priv = calendar->priv;
3231   gint return_val;
3232   gint old_focus_row;
3233   gint old_focus_col;
3234   gint row, col, day;
3235
3236   return_val = FALSE;
3237
3238   old_focus_row = priv->focus_row;
3239   old_focus_col = priv->focus_col;
3240
3241   switch (event->keyval)
3242     {
3243     case GDK_KEY_KP_Left:
3244     case GDK_KEY_Left:
3245       return_val = TRUE;
3246       if (event->state & GDK_CONTROL_MASK)
3247         calendar_set_month_prev (calendar);
3248       else
3249         {
3250           move_focus (calendar, -1);
3251           calendar_invalidate_day (calendar, old_focus_row, old_focus_col);
3252           calendar_invalidate_day (calendar, priv->focus_row,
3253                                    priv->focus_col);
3254         }
3255       break;
3256     case GDK_KEY_KP_Right:
3257     case GDK_KEY_Right:
3258       return_val = TRUE;
3259       if (event->state & GDK_CONTROL_MASK)
3260         calendar_set_month_next (calendar);
3261       else
3262         {
3263           move_focus (calendar, 1);
3264           calendar_invalidate_day (calendar, old_focus_row, old_focus_col);
3265           calendar_invalidate_day (calendar, priv->focus_row,
3266                                    priv->focus_col);
3267         }
3268       break;
3269     case GDK_KEY_KP_Up:
3270     case GDK_KEY_Up:
3271       return_val = TRUE;
3272       if (event->state & GDK_CONTROL_MASK)
3273         calendar_set_year_prev (calendar);
3274       else
3275         {
3276           if (priv->focus_row > 0)
3277             priv->focus_row--;
3278           if (priv->focus_row < 0)
3279             priv->focus_row = 5;
3280           if (priv->focus_col < 0)
3281             priv->focus_col = 6;
3282           calendar_invalidate_day (calendar, old_focus_row, old_focus_col);
3283           calendar_invalidate_day (calendar, priv->focus_row,
3284                                    priv->focus_col);
3285         }
3286       break;
3287     case GDK_KEY_KP_Down:
3288     case GDK_KEY_Down:
3289       return_val = TRUE;
3290       if (event->state & GDK_CONTROL_MASK)
3291         calendar_set_year_next (calendar);
3292       else
3293         {
3294           if (priv->focus_row < 5)
3295             priv->focus_row++;
3296           if (priv->focus_col < 0)
3297             priv->focus_col = 0;
3298           calendar_invalidate_day (calendar, old_focus_row, old_focus_col);
3299           calendar_invalidate_day (calendar, priv->focus_row,
3300                                    priv->focus_col);
3301         }
3302       break;
3303     case GDK_KEY_KP_Space:
3304     case GDK_KEY_space:
3305       row = priv->focus_row;
3306       col = priv->focus_col;
3307
3308       if (row > -1 && col > -1)
3309         {
3310           return_val = TRUE;
3311
3312           day = priv->day[row][col];
3313           if (priv->day_month[row][col] == MONTH_PREV)
3314             calendar_set_month_prev (calendar);
3315           else if (priv->day_month[row][col] == MONTH_NEXT)
3316             calendar_set_month_next (calendar);
3317
3318           calendar_select_and_focus_day (calendar, day);
3319         }
3320     }
3321
3322   return return_val;
3323 }
3324
3325 \f
3326 /****************************************
3327  *           Misc widget methods        *
3328  ****************************************/
3329
3330 static void
3331 gtk_calendar_state_flags_changed (GtkWidget     *widget,
3332                                   GtkStateFlags  previous_state)
3333 {
3334   GtkCalendar *calendar = GTK_CALENDAR (widget);
3335   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
3336
3337   if (!gtk_widget_is_sensitive (widget))
3338     {
3339       priv->in_drag = 0;
3340       calendar_stop_spinning (calendar);
3341     }
3342 }
3343
3344 static void
3345 gtk_calendar_grab_notify (GtkWidget *widget,
3346                           gboolean   was_grabbed)
3347 {
3348   if (!was_grabbed)
3349     calendar_stop_spinning (GTK_CALENDAR (widget));
3350 }
3351
3352 static gboolean
3353 gtk_calendar_focus_out (GtkWidget     *widget,
3354                         GdkEventFocus *event)
3355 {
3356   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
3357   GtkCalendar *calendar = GTK_CALENDAR (widget);
3358
3359   calendar_queue_refresh (calendar);
3360   calendar_stop_spinning (calendar);
3361
3362   priv->in_drag = 0;
3363
3364   return FALSE;
3365 }
3366
3367 \f
3368 /****************************************
3369  *          Drag and Drop               *
3370  ****************************************/
3371
3372 static void
3373 gtk_calendar_drag_data_get (GtkWidget        *widget,
3374                             GdkDragContext   *context,
3375                             GtkSelectionData *selection_data,
3376                             guint             info,
3377                             guint             time)
3378 {
3379   GtkCalendar *calendar = GTK_CALENDAR (widget);
3380   GtkCalendarPrivate *priv = calendar->priv;
3381   GDate *date;
3382   gchar str[128];
3383   gsize len;
3384
3385   date = g_date_new_dmy (priv->selected_day, priv->month + 1, priv->year);
3386   len = g_date_strftime (str, 127, "%x", date);
3387   gtk_selection_data_set_text (selection_data, str, len);
3388
3389   g_free (date);
3390 }
3391
3392 /* Get/set whether drag_motion requested the drag data and
3393  * drag_data_received should thus not actually insert the data,
3394  * since the data doesn't result from a drop.
3395  */
3396 static void
3397 set_status_pending (GdkDragContext *context,
3398                     GdkDragAction   suggested_action)
3399 {
3400   g_object_set_data (G_OBJECT (context),
3401                      I_("gtk-calendar-status-pending"),
3402                      GINT_TO_POINTER (suggested_action));
3403 }
3404
3405 static GdkDragAction
3406 get_status_pending (GdkDragContext *context)
3407 {
3408   return GPOINTER_TO_INT (g_object_get_data (G_OBJECT (context),
3409                                              "gtk-calendar-status-pending"));
3410 }
3411
3412 static void
3413 gtk_calendar_drag_leave (GtkWidget      *widget,
3414                          GdkDragContext *context,
3415                          guint           time)
3416 {
3417   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
3418
3419   priv->drag_highlight = 0;
3420   gtk_drag_unhighlight (widget);
3421
3422 }
3423
3424 static gboolean
3425 gtk_calendar_drag_motion (GtkWidget      *widget,
3426                           GdkDragContext *context,
3427                           gint            x,
3428                           gint            y,
3429                           guint           time)
3430 {
3431   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget);
3432   GdkAtom target;
3433
3434   if (!priv->drag_highlight)
3435     {
3436       priv->drag_highlight = 1;
3437       gtk_drag_highlight (widget);
3438     }
3439
3440   target = gtk_drag_dest_find_target (widget, context, NULL);
3441   if (target == GDK_NONE || gdk_drag_context_get_suggested_action (context) == 0)
3442     gdk_drag_status (context, 0, time);
3443   else
3444     {
3445       set_status_pending (context, gdk_drag_context_get_suggested_action (context));
3446       gtk_drag_get_data (widget, context, target, time);
3447     }
3448
3449   return TRUE;
3450 }
3451
3452 static gboolean
3453 gtk_calendar_drag_drop (GtkWidget      *widget,
3454                         GdkDragContext *context,
3455                         gint            x,
3456                         gint            y,
3457                         guint           time)
3458 {
3459   GdkAtom target;
3460
3461   target = gtk_drag_dest_find_target (widget, context, NULL);
3462   if (target != GDK_NONE)
3463     {
3464       gtk_drag_get_data (widget, context,
3465                          target,
3466                          time);
3467       return TRUE;
3468     }
3469
3470   return FALSE;
3471 }
3472
3473 static void
3474 gtk_calendar_drag_data_received (GtkWidget        *widget,
3475                                  GdkDragContext   *context,
3476                                  gint              x,
3477                                  gint              y,
3478                                  GtkSelectionData *selection_data,
3479                                  guint             info,
3480                                  guint             time)
3481 {
3482   GtkCalendar *calendar = GTK_CALENDAR (widget);
3483   GtkCalendarPrivate *priv = calendar->priv;
3484   guint day, month, year;
3485   gchar *str;
3486   GDate *date;
3487   GdkDragAction suggested_action;
3488
3489   suggested_action = get_status_pending (context);
3490
3491   if (suggested_action)
3492     {
3493       set_status_pending (context, 0);
3494
3495       /* We are getting this data due to a request in drag_motion,
3496        * rather than due to a request in drag_drop, so we are just
3497        * supposed to call drag_status, not actually paste in the
3498        * data.
3499        */
3500       str = (gchar*) gtk_selection_data_get_text (selection_data);
3501
3502       if (str)
3503         {
3504           date = g_date_new ();
3505           g_date_set_parse (date, str);
3506           if (!g_date_valid (date))
3507               suggested_action = 0;
3508           g_date_free (date);
3509           g_free (str);
3510         }
3511       else
3512         suggested_action = 0;
3513
3514       gdk_drag_status (context, suggested_action, time);
3515
3516       return;
3517     }
3518
3519   date = g_date_new ();
3520   str = (gchar*) gtk_selection_data_get_text (selection_data);
3521   if (str)
3522     {
3523       g_date_set_parse (date, str);
3524       g_free (str);
3525     }
3526
3527   if (!g_date_valid (date))
3528     {
3529       g_warning ("Received invalid date data\n");
3530       g_date_free (date);
3531       gtk_drag_finish (context, FALSE, FALSE, time);
3532       return;
3533     }
3534
3535   day = g_date_get_day (date);
3536   month = g_date_get_month (date);
3537   year = g_date_get_year (date);
3538   g_date_free (date);
3539
3540   gtk_drag_finish (context, TRUE, FALSE, time);
3541
3542
3543   g_object_freeze_notify (G_OBJECT (calendar));
3544   if (!(priv->display_flags & GTK_CALENDAR_NO_MONTH_CHANGE)
3545       && (priv->display_flags & GTK_CALENDAR_SHOW_HEADING))
3546     gtk_calendar_select_month (calendar, month - 1, year);
3547   gtk_calendar_select_day (calendar, day);
3548   g_object_thaw_notify (G_OBJECT (calendar));
3549 }
3550
3551 \f
3552 /****************************************
3553  *              Public API              *
3554  ****************************************/
3555
3556 /**
3557  * gtk_calendar_new:
3558  *
3559  * Creates a new calendar, with the current date being selected.
3560  *
3561  * Return value: a newly #GtkCalendar widget
3562  **/
3563 GtkWidget*
3564 gtk_calendar_new (void)
3565 {
3566   return g_object_new (GTK_TYPE_CALENDAR, NULL);
3567 }
3568
3569 /**
3570  * gtk_calendar_get_display_options:
3571  * @calendar: a #GtkCalendar
3572  *
3573  * Returns the current display options of @calendar.
3574  *
3575  * Return value: the display options.
3576  *
3577  * Since: 2.4
3578  **/
3579 GtkCalendarDisplayOptions
3580 gtk_calendar_get_display_options (GtkCalendar         *calendar)
3581 {
3582   g_return_val_if_fail (GTK_IS_CALENDAR (calendar), 0);
3583
3584   return calendar->priv->display_flags;
3585 }
3586
3587 /**
3588  * gtk_calendar_set_display_options:
3589  * @calendar: a #GtkCalendar
3590  * @flags: the display options to set
3591  *
3592  * Sets display options (whether to display the heading and the month
3593  * headings).
3594  *
3595  * Since: 2.4
3596  **/
3597 void
3598 gtk_calendar_set_display_options (GtkCalendar          *calendar,
3599                                   GtkCalendarDisplayOptions flags)
3600 {
3601   GtkWidget *widget = GTK_WIDGET (calendar);
3602   GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (calendar);
3603   gint resize = 0;
3604   GtkCalendarDisplayOptions old_flags;
3605
3606   g_return_if_fail (GTK_IS_CALENDAR (calendar));
3607
3608   old_flags = priv->display_flags;
3609
3610   if (gtk_widget_get_realized (widget))
3611     {
3612       if ((flags ^ priv->display_flags) & GTK_CALENDAR_NO_MONTH_CHANGE)
3613         {
3614           resize ++;
3615           if (! (flags & GTK_CALENDAR_NO_MONTH_CHANGE)
3616               && (priv->display_flags & GTK_CALENDAR_SHOW_HEADING))
3617             {
3618               priv->display_flags &= ~GTK_CALENDAR_NO_MONTH_CHANGE;
3619               calendar_realize_arrows (calendar);
3620               if (gtk_widget_get_mapped (widget))
3621                 calendar_map_arrows (calendar);
3622             }
3623           else
3624             {
3625               calendar_unrealize_arrows (calendar);
3626             }
3627         }
3628
3629       if ((flags ^ priv->display_flags) & GTK_CALENDAR_SHOW_HEADING)
3630         {
3631           resize++;
3632
3633           if (flags & GTK_CALENDAR_SHOW_HEADING)
3634             {
3635               priv->display_flags |= GTK_CALENDAR_SHOW_HEADING;
3636               calendar_realize_arrows (calendar);
3637               if (gtk_widget_get_mapped (widget))
3638                 calendar_map_arrows (calendar);
3639             }
3640           else
3641             {
3642               calendar_unrealize_arrows (calendar);
3643             }
3644         }
3645
3646       if ((flags ^ priv->display_flags) & GTK_CALENDAR_SHOW_DAY_NAMES)
3647         {
3648           resize++;
3649
3650           if (flags & GTK_CALENDAR_SHOW_DAY_NAMES)
3651             priv->display_flags |= GTK_CALENDAR_SHOW_DAY_NAMES;
3652         }
3653
3654       if ((flags ^ priv->display_flags) & GTK_CALENDAR_SHOW_WEEK_NUMBERS)
3655         {
3656           resize++;
3657
3658           if (flags & GTK_CALENDAR_SHOW_WEEK_NUMBERS)
3659             priv->display_flags |= GTK_CALENDAR_SHOW_WEEK_NUMBERS;
3660         }
3661
3662       if ((flags ^ priv->display_flags) & GTK_CALENDAR_SHOW_DETAILS)
3663         resize++;
3664
3665       priv->display_flags = flags;
3666       if (resize)
3667         gtk_widget_queue_resize (GTK_WIDGET (calendar));
3668     }
3669   else
3670     priv->display_flags = flags;
3671
3672   g_object_freeze_notify (G_OBJECT (calendar));
3673   if ((old_flags ^ priv->display_flags) & GTK_CALENDAR_SHOW_HEADING)
3674     g_object_notify (G_OBJECT (calendar), "show-heading");
3675   if ((old_flags ^ priv->display_flags) & GTK_CALENDAR_SHOW_DAY_NAMES)
3676     g_object_notify (G_OBJECT (calendar), "show-day-names");
3677   if ((old_flags ^ priv->display_flags) & GTK_CALENDAR_NO_MONTH_CHANGE)
3678     g_object_notify (G_OBJECT (calendar), "no-month-change");
3679   if ((old_flags ^ priv->display_flags) & GTK_CALENDAR_SHOW_WEEK_NUMBERS)
3680     g_object_notify (G_OBJECT (calendar), "show-week-numbers");
3681   g_object_thaw_notify (G_OBJECT (calendar));
3682 }
3683
3684 /**
3685  * gtk_calendar_select_month:
3686  * @calendar: a #GtkCalendar
3687  * @month: a month number between 0 and 11.
3688  * @year: the year the month is in.
3689  *
3690  * Shifts the calendar to a different month.
3691  **/
3692 void
3693 gtk_calendar_select_month (GtkCalendar *calendar,
3694                            guint        month,
3695                            guint        year)
3696 {
3697   GtkCalendarPrivate *priv;
3698
3699   g_return_if_fail (GTK_IS_CALENDAR (calendar));
3700   g_return_if_fail (month <= 11);
3701
3702   priv = calendar->priv;
3703
3704   priv->month = month;
3705   priv->year  = year;
3706
3707   calendar_compute_days (calendar);
3708   calendar_queue_refresh (calendar);
3709
3710   g_object_freeze_notify (G_OBJECT (calendar));
3711   g_object_notify (G_OBJECT (calendar), "month");
3712   g_object_notify (G_OBJECT (calendar), "year");
3713   g_object_thaw_notify (G_OBJECT (calendar));
3714
3715   g_signal_emit (calendar,
3716                  gtk_calendar_signals[MONTH_CHANGED_SIGNAL],
3717                  0);
3718 }
3719
3720 /**
3721  * gtk_calendar_select_day:
3722  * @calendar: a #GtkCalendar.
3723  * @day: the day number between 1 and 31, or 0 to unselect
3724  *   the currently selected day.
3725  *
3726  * Selects a day from the current month.
3727  **/
3728 void
3729 gtk_calendar_select_day (GtkCalendar *calendar,
3730                          guint        day)
3731 {
3732   GtkCalendarPrivate *priv;
3733
3734   g_return_if_fail (GTK_IS_CALENDAR (calendar));
3735   g_return_if_fail (day <= 31);
3736
3737   priv = calendar->priv;
3738
3739   /* Deselect the old day */
3740   if (priv->selected_day > 0)
3741     {
3742       gint selected_day;
3743
3744       selected_day = priv->selected_day;
3745       priv->selected_day = 0;
3746       if (gtk_widget_is_drawable (GTK_WIDGET (calendar)))
3747         calendar_invalidate_day_num (calendar, selected_day);
3748     }
3749
3750   priv->selected_day = day;
3751
3752   /* Select the new day */
3753   if (day != 0)
3754     {
3755       if (gtk_widget_is_drawable (GTK_WIDGET (calendar)))
3756         calendar_invalidate_day_num (calendar, day);
3757     }
3758
3759   g_object_notify (G_OBJECT (calendar), "day");
3760
3761   g_signal_emit (calendar,
3762                  gtk_calendar_signals[DAY_SELECTED_SIGNAL],
3763                  0);
3764 }
3765
3766 /**
3767  * gtk_calendar_clear_marks:
3768  * @calendar: a #GtkCalendar
3769  *
3770  * Remove all visual markers.
3771  **/
3772 void
3773 gtk_calendar_clear_marks (GtkCalendar *calendar)
3774 {
3775   GtkCalendarPrivate *priv;
3776   guint day;
3777
3778   g_return_if_fail (GTK_IS_CALENDAR (calendar));
3779
3780   priv = calendar->priv;
3781
3782   for (day = 0; day < 31; day++)
3783     {
3784       priv->marked_date[day] = FALSE;
3785     }
3786
3787   priv->num_marked_dates = 0;
3788   calendar_queue_refresh (calendar);
3789 }
3790
3791 /**
3792  * gtk_calendar_mark_day:
3793  * @calendar: a #GtkCalendar
3794  * @day: the day number to mark between 1 and 31.
3795  *
3796  * Places a visual marker on a particular day.
3797  */
3798 void
3799 gtk_calendar_mark_day (GtkCalendar *calendar,
3800                        guint        day)
3801 {
3802   GtkCalendarPrivate *priv;
3803
3804   g_return_if_fail (GTK_IS_CALENDAR (calendar));
3805
3806   priv = calendar->priv;
3807
3808   if (day >= 1 && day <= 31 && !priv->marked_date[day-1])
3809     {
3810       priv->marked_date[day - 1] = TRUE;
3811       priv->num_marked_dates++;
3812       calendar_invalidate_day_num (calendar, day);
3813     }
3814 }
3815
3816 /**
3817  * gtk_calendar_get_day_is_marked:
3818  * @calendar: a #GtkCalendar
3819  * @day: the day number between 1 and 31.
3820  *
3821  * Returns if the @day of the @calendar is already marked.
3822  *
3823  * Returns: whether the day is marked.
3824  *
3825  * Since: 3.0
3826  */
3827 gboolean
3828 gtk_calendar_get_day_is_marked (GtkCalendar *calendar,
3829                                 guint        day)
3830 {
3831   GtkCalendarPrivate *priv;
3832
3833   g_return_val_if_fail (GTK_IS_CALENDAR (calendar), FALSE);
3834
3835   priv = calendar->priv;
3836
3837   if (day >= 1 && day <= 31)
3838     return priv->marked_date[day - 1];
3839
3840   return FALSE;
3841 }
3842
3843 /**
3844  * gtk_calendar_unmark_day:
3845  * @calendar: a #GtkCalendar.
3846  * @day: the day number to unmark between 1 and 31.
3847  *
3848  * Removes the visual marker from a particular day.
3849  */
3850 void
3851 gtk_calendar_unmark_day (GtkCalendar *calendar,
3852                          guint        day)
3853 {
3854   GtkCalendarPrivate *priv;
3855
3856   g_return_if_fail (GTK_IS_CALENDAR (calendar));
3857
3858   priv = calendar->priv;
3859
3860   if (day >= 1 && day <= 31 && priv->marked_date[day-1])
3861     {
3862       priv->marked_date[day - 1] = FALSE;
3863       priv->num_marked_dates--;
3864       calendar_invalidate_day_num (calendar, day);
3865     }
3866 }
3867
3868 /**
3869  * gtk_calendar_get_date:
3870  * @calendar: a #GtkCalendar
3871  * @year: (out) (allow-none): location to store the year as a decimal
3872  *     number (e.g. 2011), or %NULL
3873  * @month: (out) (allow-none): location to store the month number
3874  *     (between 0 and 11), or %NULL
3875  * @day: (out) (allow-none): location to store the day number (between
3876  *     1 and 31), or %NULL
3877  *
3878  * Obtains the selected date from a #GtkCalendar.
3879  */
3880 void
3881 gtk_calendar_get_date (GtkCalendar *calendar,
3882                        guint       *year,
3883                        guint       *month,
3884                        guint       *day)
3885 {
3886   GtkCalendarPrivate *priv;
3887
3888   g_return_if_fail (GTK_IS_CALENDAR (calendar));
3889
3890   priv = calendar->priv;
3891
3892   if (year)
3893     *year = priv->year;
3894
3895   if (month)
3896     *month = priv->month;
3897
3898   if (day)
3899     *day = priv->selected_day;
3900 }
3901
3902 /**
3903  * gtk_calendar_set_detail_func:
3904  * @calendar: a #GtkCalendar.
3905  * @func: a function providing details for each day.
3906  * @data: data to pass to @func invokations.
3907  * @destroy: a function for releasing @data.
3908  *
3909  * Installs a function which provides Pango markup with detail information
3910  * for each day. Examples for such details are holidays or appointments. That
3911  * information is shown below each day when #GtkCalendar:show-details is set.
3912  * A tooltip containing with full detail information is provided, if the entire
3913  * text should not fit into the details area, or if #GtkCalendar:show-details
3914  * is not set.
3915  *
3916  * The size of the details area can be restricted by setting the
3917  * #GtkCalendar:detail-width-chars and #GtkCalendar:detail-height-rows
3918  * properties.
3919  *
3920  * Since: 2.14
3921  */
3922 void
3923 gtk_calendar_set_detail_func (GtkCalendar           *calendar,
3924                               GtkCalendarDetailFunc  func,
3925                               gpointer               data,
3926                               GDestroyNotify         destroy)
3927 {
3928   GtkCalendarPrivate *priv;
3929
3930   g_return_if_fail (GTK_IS_CALENDAR (calendar));
3931
3932   priv = GTK_CALENDAR_GET_PRIVATE (calendar);
3933
3934   if (priv->detail_func_destroy)
3935     priv->detail_func_destroy (priv->detail_func_user_data);
3936
3937   priv->detail_func = func;
3938   priv->detail_func_user_data = data;
3939   priv->detail_func_destroy = destroy;
3940
3941   gtk_widget_set_has_tooltip (GTK_WIDGET (calendar),
3942                               NULL != priv->detail_func);
3943   gtk_widget_queue_resize (GTK_WIDGET (calendar));
3944 }
3945
3946 /**
3947  * gtk_calendar_set_detail_width_chars:
3948  * @calendar: a #GtkCalendar.
3949  * @chars: detail width in characters.
3950  *
3951  * Updates the width of detail cells.
3952  * See #GtkCalendar:detail-width-chars.
3953  *
3954  * Since: 2.14
3955  */
3956 void
3957 gtk_calendar_set_detail_width_chars (GtkCalendar *calendar,
3958                                      gint         chars)
3959 {
3960   GtkCalendarPrivate *priv;
3961
3962   g_return_if_fail (GTK_IS_CALENDAR (calendar));
3963
3964   priv = GTK_CALENDAR_GET_PRIVATE (calendar);
3965
3966   if (chars != priv->detail_width_chars)
3967     {
3968       priv->detail_width_chars = chars;
3969       g_object_notify (G_OBJECT (calendar), "detail-width-chars");
3970       gtk_widget_queue_resize_no_redraw (GTK_WIDGET (calendar));
3971     }
3972 }
3973
3974 /**
3975  * gtk_calendar_set_detail_height_rows:
3976  * @calendar: a #GtkCalendar.
3977  * @rows: detail height in rows.
3978  *
3979  * Updates the height of detail cells.
3980  * See #GtkCalendar:detail-height-rows.
3981  *
3982  * Since: 2.14
3983  */
3984 void
3985 gtk_calendar_set_detail_height_rows (GtkCalendar *calendar,
3986                                      gint         rows)
3987 {
3988   GtkCalendarPrivate *priv;
3989
3990   g_return_if_fail (GTK_IS_CALENDAR (calendar));
3991
3992   priv = GTK_CALENDAR_GET_PRIVATE (calendar);
3993
3994   if (rows != priv->detail_height_rows)
3995     {
3996       priv->detail_height_rows = rows;
3997       g_object_notify (G_OBJECT (calendar), "detail-height-rows");
3998       gtk_widget_queue_resize_no_redraw (GTK_WIDGET (calendar));
3999     }
4000 }
4001
4002 /**
4003  * gtk_calendar_get_detail_width_chars:
4004  * @calendar: a #GtkCalendar.
4005  *
4006  * Queries the width of detail cells, in characters.
4007  * See #GtkCalendar:detail-width-chars.
4008  *
4009  * Since: 2.14
4010  *
4011  * Return value: The width of detail cells, in characters.
4012  */
4013 gint
4014 gtk_calendar_get_detail_width_chars (GtkCalendar *calendar)
4015 {
4016   g_return_val_if_fail (GTK_IS_CALENDAR (calendar), 0);
4017   return GTK_CALENDAR_GET_PRIVATE (calendar)->detail_width_chars;
4018 }
4019
4020 /**
4021  * gtk_calendar_get_detail_height_rows:
4022  * @calendar: a #GtkCalendar.
4023  *
4024  * Queries the height of detail cells, in rows.
4025  * See #GtkCalendar:detail-width-chars.
4026  *
4027  * Since: 2.14
4028  *
4029  * Return value: The height of detail cells, in rows.
4030  */
4031 gint
4032 gtk_calendar_get_detail_height_rows (GtkCalendar *calendar)
4033 {
4034   g_return_val_if_fail (GTK_IS_CALENDAR (calendar), 0);
4035   return GTK_CALENDAR_GET_PRIVATE (calendar)->detail_height_rows;
4036 }