diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-10-15 11:20:53 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-10-15 11:20:53 +0800 |
commit | d5a94c19625d858157fdb4a66d89eaf0ee345564 (patch) | |
tree | b9397b79eeb8502a7189d02d8fc2460abae037cb /calendar/month-view.h | |
parent | b09a9a669de8909d929aee7b586805e9d753f7ff (diff) | |
download | gsoc2013-evolution-d5a94c19625d858157fdb4a66d89eaf0ee345564.tar gsoc2013-evolution-d5a94c19625d858157fdb4a66d89eaf0ee345564.tar.gz gsoc2013-evolution-d5a94c19625d858157fdb4a66d89eaf0ee345564.tar.bz2 gsoc2013-evolution-d5a94c19625d858157fdb4a66d89eaf0ee345564.tar.lz gsoc2013-evolution-d5a94c19625d858157fdb4a66d89eaf0ee345564.tar.xz gsoc2013-evolution-d5a94c19625d858157fdb4a66d89eaf0ee345564.tar.zst gsoc2013-evolution-d5a94c19625d858157fdb4a66d89eaf0ee345564.zip |
Syncety sync, work in progress for an actually useful month view - Federico
svn path=/trunk/; revision=450
Diffstat (limited to 'calendar/month-view.h')
-rw-r--r-- | calendar/month-view.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/month-view.h b/calendar/month-view.h index 300c8c5607..6e49c2f931 100644 --- a/calendar/month-view.h +++ b/calendar/month-view.h @@ -35,8 +35,9 @@ struct _MonthView { int month; /* The month we are displaying */ int old_current_index; /* The index of the day marked as current, or -1 if none */ - GList *children; /* The list of children (events) we are carrying */ - int num_slots; /* The number of slots we need to do the child layout (layout.h) */ + GnomeCanvasItem *up[42]; /* Arrows to go up in the days */ + GnomeCanvasItem *down[42]; /* Arrows to go down in the days */ + GnomeCanvasItem *text[42]; /* Text items for the events */ GnomeCanvasItem *title; /* The title heading with the month/year */ GnomeCanvasItem *mitem; /* The canvas month item used by this month view */ |