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