diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-08-12 11:55:15 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-08-12 11:55:15 +0800 |
commit | d4e52567181dd4fa1bfcf928ce1151928d25ded2 (patch) | |
tree | 83e0eb4bce853850fcf5479359431a62de3fcb42 /calendar/gnome-month-item.h | |
parent | 4131f00f3470804d007194f2a0c71446074db5bc (diff) | |
download | gsoc2013-evolution-d4e52567181dd4fa1bfcf928ce1151928d25ded2.tar gsoc2013-evolution-d4e52567181dd4fa1bfcf928ce1151928d25ded2.tar.gz gsoc2013-evolution-d4e52567181dd4fa1bfcf928ce1151928d25ded2.tar.bz2 gsoc2013-evolution-d4e52567181dd4fa1bfcf928ce1151928d25ded2.tar.lz gsoc2013-evolution-d4e52567181dd4fa1bfcf928ce1151928d25ded2.tar.xz gsoc2013-evolution-d4e52567181dd4fa1bfcf928ce1151928d25ded2.tar.zst gsoc2013-evolution-d4e52567181dd4fa1bfcf928ce1151928d25ded2.zip |
More work on the month view item - Federico
svn path=/trunk/; revision=311
Diffstat (limited to 'calendar/gnome-month-item.h')
-rw-r--r-- | calendar/gnome-month-item.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/calendar/gnome-month-item.h b/calendar/gnome-month-item.h index 2260186c6d..f6523aff94 100644 --- a/calendar/gnome-month-item.h +++ b/calendar/gnome-month-item.h @@ -36,13 +36,16 @@ struct _GnomeMonthItem { double width, height; /* Size of calendar */ GtkAnchorType anchor; /* Anchor side for calendar */ - double padding; /* Padding to use between division lines and text */ + double head_padding; /* Padding to use between heading lines and text */ + double day_padding; /* Padding to use between day number lines and text */ char *day_names[7]; /* Names to use for the day labels, starting from Sunday */ double head_height; /* Height of the headings row */ GtkAnchorType head_anchor; /* Anchor side for the heading labels */ + GtkAnchorType day_anchor; /* Anchor side for the day number labels */ + GnomeCanvasItem **items; /* All the items that make up the calendar */ int start_on_monday : 1; /* Start the week on Monday? If false, then start from Sunday */ |