diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-02 10:18:42 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-02 10:18:42 +0800 |
commit | 4750b90ad18f4f59fa19b839550d6397f5dffbfd (patch) | |
tree | a2d62941f88d3aedb6509b4883e08c82e13ed1cc /calendar/views.c | |
parent | 9bc7db5333a2319828768142c527d3fb64afd999 (diff) | |
download | gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar.gz gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar.bz2 gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar.lz gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar.xz gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.tar.zst gsoc2013-evolution-4750b90ad18f4f59fa19b839550d6397f5dffbfd.zip |
GnomeCalendar toplevel GnomeApp; versit code -mig
svn path=/trunk/; revision=89
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"); +} |