dtcm: Resolve CID 87562
[oweals/cde.git] / cde / programs / dtcm / dtcm / dayglance.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*******************************************************************************
24 **
25 **  dayglance.h
26 **
27 **  static char sccsid[] = "@(#)dayglance.h 1.11 94/11/07 Copyr 1991 Sun Microsystems, Inc.";
28 **
29 **  $XConsortium: dayglance.h /main/5 1996/04/12 14:58:09 rswiston $
30 **
31 **  RESTRICTED CONFIDENTIAL INFORMATION:
32 **
33 **  The information in this document is subject to special
34 **  restrictions in a confidential disclosure agreement between
35 **  HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
36 **  document outside HP, IBM, Sun, USL, SCO, or Univel without
37 **  Sun's specific written approval.  This document and all copies
38 **  and derivative works thereof must be returned or destroyed at
39 **  Sun's request.
40 **
41 **  Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
42 **
43 *******************************************************************************/
44
45 /*                                                                      *
46  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
47  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
48  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
49  * (c) Copyright 1993, 1994 Novell, Inc.                                *
50  */
51
52 #ifndef _DAYGLANCE_H
53 #define _DAYGLANCE_H
54
55 #include <csa.h>
56 #include "ansi_c.h"
57 #include "props.h"
58
59 #define MOBOX_AREA_WIDTH        (int)(c->view->winw*.4)
60 #define APPT_AREA_WIDTH         (c->view->winw-MOBOX_AREA_WIDTH-2)
61 #define HRBOX_MARGIN            30
62
63 typedef struct dayglance {
64         int mobox_height1;
65         int mobox_height2;
66         int mobox_height3;
67         int month1;             /* tick in 1st mo */ 
68         int month1_y;
69         int month2;             /* tick in 2nd mo */
70         int month2_y;
71         int month3;             /* tick in 3rd mo */
72         int month3_y;
73         int col_w;              /* width of month box col */
74         int row_h;              /* height of month box row */
75         int mobox_width;        /* width of month box row */
76         int day_selected;
77         int day_selected_x;
78         int day_selected_y;
79         int day_selected_x2;
80         int day_selected_y2;
81         Widget panel_form;
82         Widget *month_panels;
83 } Day;
84
85 extern void     init_dayview            P((Calendar*));
86 extern void     day_button              P((Widget, XtPointer, XtPointer));
87 extern void     init_mo                 P((Calendar*));
88 extern void     monthbox_datetoxy       P((Calendar*));
89 extern void     monthbox_xytodate       P((Calendar*, int x, int y));
90 extern void     paint_dayview           P((Calendar*, Boolean,
91                                            XRectangle*, Boolean));
92 extern void     paint_day               P((Calendar*));
93 extern void     print_day_range         P((Calendar*, Tick, Tick));
94 extern void     day_event               P((XEvent*));
95 extern int      morning                 P((int));
96 extern void     paint_day_header        P((Calendar *, Tick, void *));
97 extern void     cleanup_after_dayview   P((Calendar *));
98 #endif