dtcm: Resolve CID 87408
[oweals/cde.git] / cde / programs / dtcm / dtcm / weekglance.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 **  weekglance.h
26 **
27 **  static char sccsid[] = "@(#)weekglance.h 1.14 94/11/07 Copyr 1991 Sun Microsystems, Inc.";
28 **
29 **  $XConsortium: weekglance.h /main/4 1996/04/12 14:58:56 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 _WEEKGLANCE_H
53 #define _WEEKGLANCE_H
54
55 #include <csa.h>
56 #include "ansi_c.h"
57
58 typedef struct week {
59         int     start_date;
60         Dimension     canvas_w;
61         Dimension     canvas_h;
62         int     width;
63         int     height;
64         int     label_height;
65         int     day_height;
66         int     day_width;
67         int     x;
68         int     y;
69         int     begin_hour;
70         int     end_hour;
71         int     chart_width;
72         int     chart_height;
73         int     chart_hour_height;
74         int     chart_day_width;
75         int     chart_x;
76         int     chart_y;
77         Cal_Font *font;
78         Cal_Font *small_font;
79         Cal_Font *small_bold_font;
80         char    *time_array;
81         int     segs_in_array;
82         caddr_t current_selection;
83         int     add_pixels;
84         Widget  *hot_button;
85 } Week;
86
87 typedef enum {okay, lower, upper} Boundary;
88
89 extern void     paint_weekview  P((Calendar*, XRectangle*));
90 extern void     print_week_range        P((Calendar*, Tick, Tick));
91 extern int      count_multi_appts       P((CSA_entry_handle*, int, Calendar*));
92 extern void     week_button             P((Widget, XtPointer, XtPointer));
93 extern void     week_event              P((XEvent*));
94 extern void     cleanup_after_weekview  P((Calendar*));
95 extern void     resize_weekview P((Calendar *, Boundary *));
96
97 #endif