aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/mark.h
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/mark.h')
-rw-r--r--calendar/mark.h24
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