aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/month-view.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@nuclecu.unam.mx>1998-08-26 09:48:53 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-08-26 09:48:53 +0800
commit5d410b8d4330ea687579595b681ad91090136ea3 (patch)
treef4edecbabca9c184a42c69fda320dfa0982ad900 /calendar/gui/month-view.c
parentf6f316d74484178f136664bdf5380e3ed567ae49 (diff)
downloadgsoc2013-evolution-5d410b8d4330ea687579595b681ad91090136ea3.tar
gsoc2013-evolution-5d410b8d4330ea687579595b681ad91090136ea3.tar.gz
gsoc2013-evolution-5d410b8d4330ea687579595b681ad91090136ea3.tar.bz2
gsoc2013-evolution-5d410b8d4330ea687579595b681ad91090136ea3.tar.lz
gsoc2013-evolution-5d410b8d4330ea687579595b681ad91090136ea3.tar.xz
gsoc2013-evolution-5d410b8d4330ea687579595b681ad91090136ea3.tar.zst
gsoc2013-evolution-5d410b8d4330ea687579595b681ad91090136ea3.zip
Set the heading color of the month item.
1998-08-25 Federico Mena Quintero <federico@nuclecu.unam.mx> * goto.c (create_days): Set the heading color of the month item. * main.c: Use GNOME_STOCK_PIXMAP_JUMP_TO, now that it exists, instead of goto.xpm. Also, removed goto.xpm from cvs. * gnome-month-item.h (struct _GnomeMonthItem): Added fields for the heading and day number fonts. Added fields for heading and day number label colors. * gnome-month-item.c (gnome_month_item_class_init): ARG_DAY_NAMES should be write-only. Also, added arguments for heading and day number fonts. Added arguments for heading and day number colors. svn path=/trunk/; revision=339
Diffstat (limited to 'calendar/gui/month-view.c')
-rw-r--r--calendar/gui/month-view.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/calendar/gui/month-view.c b/calendar/gui/month-view.c
index 0abc717366..01d4391b25 100644
--- a/calendar/gui/month-view.c
+++ b/calendar/gui/month-view.c
@@ -78,10 +78,12 @@ month_view_init (MonthView *mv)
mv->mitem = gnome_month_item_new (GNOME_CANVAS_GROUP (mv->canvas.root));
gnome_canvas_item_set (mv->mitem,
"x", 0.0,
- "y", 0.0,
"anchor", GTK_ANCHOR_NW,
"day_anchor", GTK_ANCHOR_NE,
"start_on_monday", week_starts_on_monday,
+ "heading_height", 18.0,
+ "heading_font", "-*-helvetica-bold-r-normal--12-*-*-*-*-*-iso8859-1",
+ "day_font", "-*-helvetica-bold-r-normal--14-*-*-*-*-*-iso8859-1",
NULL);
}