diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-08-30 09:30:00 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-08-30 09:30:00 +0800 |
commit | 5f228d1144c5c6d4f65f89c733d500697fee86e0 (patch) | |
tree | b02baa8168f5f8a95f54081190e75c9ca573490d /calendar/mark.h | |
parent | e0d99122ab17d9bf356cf793b41aec6b6d6016b1 (diff) | |
download | gsoc2013-evolution-5f228d1144c5c6d4f65f89c733d500697fee86e0.tar gsoc2013-evolution-5f228d1144c5c6d4f65f89c733d500697fee86e0.tar.gz gsoc2013-evolution-5f228d1144c5c6d4f65f89c733d500697fee86e0.tar.bz2 gsoc2013-evolution-5f228d1144c5c6d4f65f89c733d500697fee86e0.tar.lz gsoc2013-evolution-5f228d1144c5c6d4f65f89c733d500697fee86e0.tar.xz gsoc2013-evolution-5f228d1144c5c6d4f65f89c733d500697fee86e0.tar.zst gsoc2013-evolution-5f228d1144c5c6d4f65f89c733d500697fee86e0.zip |
It helps to add the new files - Federico
svn path=/trunk/; revision=352
Diffstat (limited to 'calendar/mark.h')
-rw-r--r-- | calendar/mark.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/calendar/mark.h b/calendar/mark.h new file mode 100644 index 0000000000..9ffafe20a7 --- /dev/null +++ b/calendar/mark.h @@ -0,0 +1,24 @@ +/* Functions to mark calendars + * + * Copyright (C) 1998 Red Hat Software, Inc. + * + * Author: Federico Mena <federico@nuclecu.unam.mx> + */ + +#ifndef MARK_H +#define MARK_H + +#include "calendar.h" +#include "gnome-month-item.h" + + +/* Takes a monthly calendar item and marks the days that have events scheduled for them in the + * specified calendar. It also highlights the current day. + */ +void mark_month_item (GnomeMonthItem *mitem, Calendar *cal); + +/* Unmarks all the days in the specified month item */ +void unmark_month_item (GnomeMonthItem *mitem); + + +#endif |