diff options
Diffstat (limited to 'calendar/gui/gncal-todo.h')
-rw-r--r-- | calendar/gui/gncal-todo.h | 38 |
1 files changed, 3 insertions, 35 deletions
diff --git a/calendar/gui/gncal-todo.h b/calendar/gui/gncal-todo.h index 1102e32d77..a48f8ce47d 100644 --- a/calendar/gui/gncal-todo.h +++ b/calendar/gui/gncal-todo.h @@ -1,53 +1,21 @@ /* To-do widget for gncal * - * Copyright (C) 1998 The Free Software Foundation + * Copyright (C) 2000 The Free Software Foundation * - * Author: Federico Mena <quartic@gimp.org> + * Author: Federico Mena <federico@helixcode.com> */ #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, CalComponent *comp, int flags); +void gncal_todo_edit (CalClient *client, CalComponent *comp); -void gncal_todo_edit (CalClient *client, CalComponent *comp); END_GNOME_DECLS |