aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/gncal-todo.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-09-27 11:12:05 +0800
committernobody <nobody@localhost>1999-09-27 11:12:05 +0800
commit9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6 (patch)
tree0d7145e4b9fee9d06c7154a788e02811bb1fc20b /calendar/gui/gncal-todo.h
parentea421e8d5838d758418aa3e6fddafe593badb15f (diff)
downloadgsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar.gz
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar.bz2
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar.lz
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar.xz
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar.zst
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.zip
This commit was manufactured by cvs2svn to create tagGNOME_LIBS_1_0_42
'GNOME_LIBS_1_0_42'. svn path=/tags/GNOME_LIBS_1_0_42/; revision=1259
Diffstat (limited to 'calendar/gui/gncal-todo.h')
-rw-r--r--calendar/gui/gncal-todo.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/calendar/gui/gncal-todo.h b/calendar/gui/gncal-todo.h
deleted file mode 100644
index 51cfadea3f..0000000000
--- a/calendar/gui/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