dtcm: Resolve CID 87562
[oweals/cde.git] / cde / programs / dtcm / dtcm / find.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 **  find.h
26 **
27 **  static char sccsid[] = "@(#)find.h 1.8 94/11/07 Copyr 1991 Sun Microsystems, Inc.";
28 **
29 **  $XConsortium: find.h /main/3 1995/11/03 10:26:18 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 _FIND_H
53 #define _FIND_H
54
55 #include "ansi_c.h"
56
57 typedef struct tick_list {
58         Tick tick;
59         struct tick_list *next;
60 } Tick_list;
61
62 typedef enum {search_all, search_range} Searchset;
63
64 typedef struct {
65         Widget                  frame;
66         Widget                  form;
67         Widget                  apptstr_label;
68         Widget                  apptstr;
69         Widget                  search_rc_mgr;
70         Widget                  search_all;
71         Widget                  search_range;
72         Widget                  search_from;
73         Widget                  search_tolabel;
74         Widget                  search_to;
75         Widget                  find_button;
76         Widget                  help_button;
77         Widget                  date_label;
78         Widget                  time_label;
79         Widget                  what_label;
80         Widget                  find_list;
81         Widget                  find_list_sw;
82         Widget                  show_button;
83         Widget                  cancel_button;
84         Widget                  find_message;
85         Tick_list               *ticks;
86         Searchset               search_set;
87         Tick                    search_from_date;
88         Tick                    search_to_date;
89 }Find;
90
91 extern caddr_t  make_find       P((Calendar*));
92 static Tick f_get_searchdate    P((Widget, Props*));
93
94 #endif