home *** CD-ROM | disk | FTP | other *** search
- /*
- * day.h : Data types and external defs for day stuff
- *
- * $Id: day.h,v 1.1 90/11/07 11:22:41 ferguson Exp $
- *
- * Requires month.h (which is probably needed anyway).
- */
- typedef struct _DayTextData {
- Widget symbol; /* Label */
- Widget time; /* Label */
- Widget text; /* Text */
- } DayTextData;
- typedef struct _DayFormData {
- int day,month,year;
- DayTextData *items[22];
- Widget date; /* Label */
- Widget form; /* Form */
- Widget shell; /* Shell for popups */
- DayButtonData *buttonData; /* button pressed if any */
- } DayFormData;
-
- extern DayFormData *createDayFormData(),*createPopupDayFormData();
- extern void setDayFormData();
- extern void checkpointAppoints();
-
- extern DayFormData *currentDayFormData;
-