aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/views.c
blob: a066d789e81afb56ab972009e4621f51976c20f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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");
}