diff options
Diffstat (limited to 'calendar/views.c')
-rw-r--r-- | calendar/views.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/calendar/views.c b/calendar/views.c new file mode 100644 index 0000000000..a066d789e8 --- /dev/null +++ b/calendar/views.c @@ -0,0 +1,33 @@ +/* + * Calendar views. + * Copyright (C) 1998 the Free Software Foundation + * + * Author: Miguel de Icaza (miguel@kernel.org) + */ +#include <gnome.h> +#include "calendar.h" +#include "gnome-cal.h" + +GtkWidget * +day_view_create (GnomeCalendar *gcal) +{ + return gtk_button_new_with_label ("This is supposed to be the Day View"); +} + +GtkWidget * +week_view_create (GnomeCalendar *gcal) +{ + return gtk_button_new_with_label ("This is supposed to be the Week View"); +} + +GtkWidget * +year_view_create (GnomeCalendar *gcal) +{ + return gtk_button_new_with_label ("This is supposed to be the Year View"); +} + +GtkWidget * +tasks_create (GnomeCalendar *gcal) +{ + return gtk_button_new_with_label ("This is supposed to be the Tasks View"); +} |