home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 2 / 2057 / day.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-28  |  714 b   |  27 lines

  1. /*
  2.  *    day.h : Data types and external defs for day stuff
  3.  *
  4.  *    $Id: day.h,v 1.1 90/11/07 11:22:41 ferguson Exp $
  5.  *
  6.  *    Requires month.h (which is probably needed anyway).
  7.  */
  8. typedef struct _DayTextData {
  9.     Widget symbol;        /* Label */
  10.     Widget time;        /* Label */
  11.     Widget text;        /* Text */
  12. } DayTextData;
  13. typedef struct _DayFormData {
  14.     int day,month,year;
  15.     DayTextData *items[22];
  16.     Widget date;        /* Label */
  17.     Widget form;        /* Form */
  18.     Widget shell;        /* Shell for popups */
  19.     DayButtonData *buttonData;    /* button pressed if any */
  20. } DayFormData;
  21.  
  22. extern DayFormData *createDayFormData(),*createPopupDayFormData();
  23. extern void setDayFormData();
  24. extern void checkpointAppoints();
  25.  
  26. extern DayFormData *currentDayFormData;
  27.