aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gncal-todo.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@src.gnome.org>2000-03-06 07:44:52 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-03-06 07:44:52 +0800
commit70108e31eafba17f63a04375d7e4c51c7d1c35eb (patch)
tree5f2d784d69deb42cb830f20702fb6a76628f925b /calendar/gncal-todo.h
parent3de981ec78d529eb1bd9b2f98f154eae91dffc6d (diff)
downloadgsoc2013-evolution-70108e31eafba17f63a04375d7e4c51c7d1c35eb.tar
gsoc2013-evolution-70108e31eafba17f63a04375d7e4c51c7d1c35eb.tar.gz
gsoc2013-evolution-70108e31eafba17f63a04375d7e4c51c7d1c35eb.tar.bz2
gsoc2013-evolution-70108e31eafba17f63a04375d7e4c51c7d1c35eb.tar.lz
gsoc2013-evolution-70108e31eafba17f63a04375d7e4c51c7d1c35eb.tar.xz
gsoc2013-evolution-70108e31eafba17f63a04375d7e4c51c7d1c35eb.tar.zst
gsoc2013-evolution-70108e31eafba17f63a04375d7e4c51c7d1c35eb.zip
More file moving action - Federico
svn path=/trunk/; revision=2061
Diffstat (limited to 'calendar/gncal-todo.h')
-rw-r--r--calendar/gncal-todo.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/calendar/gncal-todo.h b/calendar/gncal-todo.h
deleted file mode 100644
index 51cfadea3f..0000000000
--- a/calendar/gncal-todo.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/* To-do widget for gncal
- *
- * Copyright (C) 1998 The Free Software Foundation
- *
- * Author: Federico Mena <quartic@gimp.org>
- */
-
-#ifndef GNCAL_TODO_H
-#define GNCAL_TODO_H
-
-#include <gtk/gtkclist.h>
-#include <gtk/gtkvbox.h>
-#include <libgnome/gnome-defs.h>
-#include "gnome-cal.h"
-
-
-BEGIN_GNOME_DECLS
-
-
-#define GNCAL_TODO(obj) GTK_CHECK_CAST (obj, gncal_todo_get_type (), GncalTodo)
-#define GNCAL_TODO_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gncal_todo_get_type (), GncalTodoClass)
-#define GNCAL_IS_TODO(obj) GTK_CHECK_TYPE (obj, gncal_todo_get_type ())
-
-
-typedef struct _GncalTodo GncalTodo;
-typedef struct _GncalTodoClass GncalTodoClass;
-
-struct _GncalTodo {
- GtkVBox vbox;
-
- GnomeCalendar *calendar; /* the calendar we are associated to */
-
- GtkCList *clist;
-
- GtkWidget *edit_button;
- GtkWidget *delete_button;
- GSList *data_ptrs;
-
-
-};
-
-struct _GncalTodoClass {
- GtkVBoxClass parent_class;
-};
-
-
-guint gncal_todo_get_type (void);
-GtkWidget *gncal_todo_new (GnomeCalendar *calendar);
-
-void gncal_todo_update (GncalTodo *todo, iCalObject *ico, int flags);
-
-
-END_GNOME_DECLS
-
-#endif