Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtcm / dtcm / select.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 **  select.h
26 **
27 **  static char sccsid[] = "@(#)select.h 1.6 94/11/07 Copyr 1991 Sun Microsystems, Inc.";
28 **
29 **  $XConsortium: select.h /main/3 1995/11/03 10:33:23 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 _SELECT_H
53 #define _SELECT_H
54
55 #include "ansi_c.h"
56 #include "browser.h"
57 #include "calendar.h"
58
59 typedef enum {
60         daySelect,
61         weekSelect,
62         monthSelect,
63         hourSelect,
64         weekdaySelect,
65         weekhotboxSelect 
66 } Selection_unit;
67
68 typedef struct {
69         int row;
70         int col;
71         int nunits;
72         int active;
73         int boxw;
74         int boxh;
75 } Selection;
76
77 typedef struct {
78         int     x;
79         int     y;
80 } pr_pos;
81
82 extern void     activate_selection      P((Selection*));
83 extern void     browser_deselect        P((Calendar *, Browser*));      
84 extern void     browser_select          P((Calendar *, Browser*, pr_pos*));     
85 extern void     calendar_deselect       P((Calendar*));
86 extern void     calendar_select         P((Calendar*, Selection_unit, caddr_t));
87 extern void     deactivate_selection    P((Selection *));
88 extern void     monthbox_deselect       P((Calendar*)); 
89 extern void     monthbox_select         P((Calendar*));
90 extern void     paint_selection         P((Calendar*));
91 extern int      selection_active        P((Selection*));
92 extern void     weekchart_select        P((Calendar*)); 
93
94 #endif