aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/mark.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1998-10-01 16:56:39 +0800
committernobody <nobody@localhost>1998-10-01 16:56:39 +0800
commitaae3a37cb11759f99268f86e0c37fd72ef5be232 (patch)
tree23e6dba03d3654ee9649835b0486dadab49110c5 /calendar/gui/mark.h
parente94162c0a48defcaa3869dc9b82638170a62bab2 (diff)
downloadgsoc2013-evolution-aae3a37cb11759f99268f86e0c37fd72ef5be232.tar
gsoc2013-evolution-aae3a37cb11759f99268f86e0c37fd72ef5be232.tar.gz
gsoc2013-evolution-aae3a37cb11759f99268f86e0c37fd72ef5be232.tar.bz2
gsoc2013-evolution-aae3a37cb11759f99268f86e0c37fd72ef5be232.tar.lz
gsoc2013-evolution-aae3a37cb11759f99268f86e0c37fd72ef5be232.tar.xz
gsoc2013-evolution-aae3a37cb11759f99268f86e0c37fd72ef5be232.tar.zst
gsoc2013-evolution-aae3a37cb11759f99268f86e0c37fd72ef5be232.zip
This commit was manufactured by cvs2svn to create tag 'WITHXMHTML'.WITHXMHTML
svn path=/tags/WITHXMHTML/; revision=422
Diffstat (limited to 'calendar/gui/mark.h')
-rw-r--r--calendar/gui/mark.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/calendar/gui/mark.h b/calendar/gui/mark.h
deleted file mode 100644
index 0d9491e0a5..0000000000
--- a/calendar/gui/mark.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/* 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"
-
-
-/* These are the fonts used for the montly calendars */
-
-#define NORMAL_DAY_FONT "-adobe-helvetica-medium-r-normal--10-*-72-72-p-*-iso8859-1"
-#define CURRENT_DAY_FONT "-adobe-helvetica-bold-r-normal--12-*-72-72-p-*-iso8859-1"
-
-
-/* Functions of this type are used by the marking functions to fetch color specifications. Such
- * a function must return a color spec based on the property passed to it.
- */
-typedef char * (* GetColorFunc) (ColorProp propnum, gpointer data);
-
-
-/* Sets the user-configured colors and font for a month item. It also tags the days as unmarked. */
-void colorify_month_item (GnomeMonthItem *month, GetColorFunc func, gpointer func_data);
-
-/* 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);
-
-/* Marks a day specified by index, not by day number */
-void mark_month_item_index (GnomeMonthItem *mitem, int index, GetColorFunc func, gpointer func_data);
-
-/* Unmarks all the days in the specified month item */
-void unmark_month_item (GnomeMonthItem *mitem);
-
-/* Prepares a monthly calendar item to prelight when the mouse goes over the days. */
-
-void month_item_prepare_prelight (GnomeMonthItem *mitem, GetColorFunc func, gpointer func_data);
-
-/* This is the default prelight function you can use for most puposes. You can use NULL as the
- * func_data.
- */
-char *default_color_func (ColorProp prop_num, gpointer data);
-
-
-#endif