Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / programs / dtcm / dtcm / yearglance.h
1 /*******************************************************************************
2 **
3 **  yearglance.h
4 **
5 **  static char sccsid[] = "@(#)yearglance.h 1.13 94/12/22 Copyr 1991 Sun Microsystems, Inc."; 
6 **
7 **  $XConsortium: yearglance.h /main/4 1996/04/12 14:59:19 rswiston $
8 **
9 **  RESTRICTED CONFIDENTIAL INFORMATION:
10 **
11 **  The information in this document is subject to special
12 **  restrictions in a confidential disclosure agreement between
13 **  HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
14 **  document outside HP, IBM, Sun, USL, SCO, or Univel without
15 **  Sun's specific written approval.  This document and all copies
16 **  and derivative works thereof must be returned or destroyed at
17 **  Sun's request.
18 **
19 **  Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
20 **
21 *******************************************************************************/
22
23 /*                                                                      *
24  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
25  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
26  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
27  * (c) Copyright 1993, 1994 Novell, Inc.                                *
28  */
29
30 #ifndef _YEARGLANCE_H
31 #define _YEARGLANCE_H
32
33 extern int month_row_col[12][2];
34
35 #define ROW 0
36 #define COL 1
37
38 typedef struct year {
39         Widget  form;
40         Widget  label_form;
41         Widget  *month_panels;
42         Widget  year_label;
43         int     year_shown;
44 } Year;
45
46 extern void     cleanup_after_yearview  P((Calendar *));
47 extern void     year_button             P((Widget, XtPointer, XtPointer));
48 extern CSA_return_code paint_year       P((Calendar*));
49 extern void     print_std_year_range    P((int, int));
50
51 #endif