aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/gncal-day-panel.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-04-17 09:22:18 +0800
committernobody <nobody@localhost>1999-04-17 09:22:18 +0800
commit78d4e2763f6f69122b8b29cba76d56632e2a7939 (patch)
tree136c6488c85ed1361c40a50a802af3491084950c /calendar/gui/gncal-day-panel.h
parentceb6a5d36a3031895654f904b458145228e5ea1c (diff)
downloadgsoc2013-evolution-GGV_0_30.tar
gsoc2013-evolution-GGV_0_30.tar.gz
gsoc2013-evolution-GGV_0_30.tar.bz2
gsoc2013-evolution-GGV_0_30.tar.lz
gsoc2013-evolution-GGV_0_30.tar.xz
gsoc2013-evolution-GGV_0_30.tar.zst
gsoc2013-evolution-GGV_0_30.zip
This commit was manufactured by cvs2svn to create tag 'GGV_0_30'.GGV_0_30
svn path=/tags/GGV_0_30/; revision=820
Diffstat (limited to 'calendar/gui/gncal-day-panel.h')
-rw-r--r--calendar/gui/gncal-day-panel.h65
1 files changed, 0 insertions, 65 deletions
diff --git a/calendar/gui/gncal-day-panel.h b/calendar/gui/gncal-day-panel.h
deleted file mode 100644
index 6bf8768d9c..0000000000
--- a/calendar/gui/gncal-day-panel.h
+++ /dev/null
@@ -1,65 +0,0 @@
-/* Day view notebook panel for gncal
- *
- * Copyright (C) 1998 The Free Software Foundation
- *
- * Author: Federico Mena <quartic@gimp.org>
- */
-
-#ifndef GNCAL_DAY_PANEL_H
-#define GNCAL_DAY_PANEL_H
-
-#include <gtk/gtklabel.h>
-#include <gtk/gtkscrolledwindow.h>
-#include <gtk/gtktable.h>
-#include <libgnome/gnome-defs.h>
-#include "gnome-cal.h"
-#include "gncal-full-day.h"
-#include "gncal-todo.h"
-
-
-BEGIN_GNOME_DECLS
-
-
-#define GNCAL_DAY_PANEL(obj) GTK_CHECK_CAST (obj, gncal_day_panel_get_type (), GncalDayPanel)
-#define GNCAL_DAY_PANEL_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gncal_day_panel_get_type (), GncalDayPanelClass)
-#define GNCAL_IS_DAY_PANEL(obj) GTK_CHECK_TYPE (obj, gncal_day_panel_get_type ())
-
-
-typedef struct _GncalDayPanel GncalDayPanel;
-typedef struct _GncalDayPanelClass GncalDayPanelClass;
-
-struct _GncalDayPanel {
- GtkTable table;
-
- GnomeCalendar *calendar; /* the calendar we are associated to */
-
- time_t start_of_day;
-
- GtkLabel *date_label;
- GncalFullDay *fullday;
- GtkScrolledWindow *fullday_sw;
- GtkCalendar *gtk_calendar;
- GncalTodo *todo;
-
- guint day_selected_id;
-};
-
-struct _GncalDayPanelClass {
- GtkTableClass parent_class;
-};
-
-
-guint gncal_day_panel_get_type (void);
-GtkWidget *gncal_day_panel_new (GnomeCalendar *calendar, time_t start_of_day);
-
-void gncal_day_panel_update (GncalDayPanel *dpanel, iCalObject *ico, int flags);
-void gncal_day_panel_set (GncalDayPanel *dpanel, time_t start_of_day);
-void gncal_day_panel_time_format_changed (GncalDayPanel *dpanel);
-
-void todo_list_properties_changed (GncalDayPanel *dpanel);
-
-
-
-END_GNOME_DECLS
-
-#endif