]> Pileus Git - ~andy/gtk/blob - gtk/gtkcalendar.h
Deprecation cleanup
[~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 #ifdef __cplusplus
40 extern "C" {
41 #endif /* __cplusplus */
42
43
44 #define GTK_TYPE_CALENDAR                  (gtk_calendar_get_type ())
45 #define GTK_CALENDAR(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CALENDAR, GtkCalendar))
46 #define GTK_CALENDAR_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CALENDAR, GtkCalendarClass))
47 #define GTK_IS_CALENDAR(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CALENDAR))
48 #define GTK_IS_CALENDAR_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CALENDAR))
49 #define GTK_CALENDAR_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CALENDAR, GtkCalendarClass))
50
51
52 typedef struct _GtkCalendar            GtkCalendar;
53 typedef struct _GtkCalendarClass       GtkCalendarClass;
54
55 typedef enum
56 {
57   GTK_CALENDAR_SHOW_HEADING             = 1 << 0,
58   GTK_CALENDAR_SHOW_DAY_NAMES           = 1 << 1,
59   GTK_CALENDAR_NO_MONTH_CHANGE          = 1 << 2,
60   GTK_CALENDAR_SHOW_WEEK_NUMBERS        = 1 << 3,
61   GTK_CALENDAR_WEEK_START_MONDAY        = 1 << 4
62 } GtkCalendarDisplayOptions;
63
64 struct _GtkCalendar
65 {
66   GtkWidget widget;
67   
68   GtkStyle  *header_style;
69   GtkStyle  *label_style;
70   
71   gint month;
72   gint year;
73   gint selected_day;
74   
75   gint day_month[6][7];
76   gint day[6][7];
77   
78   gint num_marked_dates;
79   gint marked_date[31];
80   GtkCalendarDisplayOptions  display_flags;
81   GdkColor marked_date_color[31];
82   
83   GdkGC *gc;
84   GdkGC *xor_gc;
85
86   gint focus_row;
87   gint focus_col;
88
89   gint highlight_row;
90   gint highlight_col;
91   
92   gpointer private_data;
93   gchar grow_space [32];
94
95   /* Padding for future expansion */
96   void (*_gtk_reserved1) (void);
97   void (*_gtk_reserved2) (void);
98   void (*_gtk_reserved3) (void);
99   void (*_gtk_reserved4) (void);
100 };
101
102 struct _GtkCalendarClass
103 {
104   GtkWidgetClass parent_class;
105   
106   /* Signal handlers */
107   void (* month_changed)                (GtkCalendar *calendar);
108   void (* day_selected)                 (GtkCalendar *calendar);
109   void (* day_selected_double_click)    (GtkCalendar *calendar);
110   void (* prev_month)                   (GtkCalendar *calendar);
111   void (* next_month)                   (GtkCalendar *calendar);
112   void (* prev_year)                    (GtkCalendar *calendar);
113   void (* next_year)                    (GtkCalendar *calendar);
114   
115 };
116
117
118 GType      gtk_calendar_get_type        (void) G_GNUC_CONST;
119 GtkWidget* gtk_calendar_new             (void);
120
121 gboolean   gtk_calendar_select_month    (GtkCalendar *calendar, 
122                                          guint        month,
123                                          guint        year);
124 void       gtk_calendar_select_day      (GtkCalendar *calendar,
125                                          guint        day);
126
127 gboolean   gtk_calendar_mark_day        (GtkCalendar *calendar,
128                                          guint        day);
129 gboolean   gtk_calendar_unmark_day      (GtkCalendar *calendar,
130                                          guint        day);
131 void       gtk_calendar_clear_marks     (GtkCalendar *calendar);
132
133
134 void       gtk_calendar_display_options (GtkCalendar              *calendar,
135                                          GtkCalendarDisplayOptions flags);
136
137 void       gtk_calendar_get_date        (GtkCalendar *calendar, 
138                                          guint       *year,
139                                          guint       *month,
140                                          guint       *day);
141 void       gtk_calendar_freeze          (GtkCalendar *calendar);
142 void       gtk_calendar_thaw            (GtkCalendar *calendar);
143
144
145
146
147 #ifdef __cplusplus
148 }
149 #endif /* __cplusplus */
150
151 #endif /* __GTK_CALENDAR_H__ */