aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/mark.h
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-08-30 09:30:00 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-08-30 09:30:00 +0800
commit5f228d1144c5c6d4f65f89c733d500697fee86e0 (patch)
treeb02baa8168f5f8a95f54081190e75c9ca573490d /calendar/gui/mark.h
parente0d99122ab17d9bf356cf793b41aec6b6d6016b1 (diff)
downloadgsoc2013-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/gui/mark.h')
-rw-r--r--calendar/gui/mark.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/calendar/gui/mark.h b/calendar/gui/mark.h
new file mode 100644
index 0000000000..9ffafe20a7
--- /dev/null
+++ b/calendar/gui/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