Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtcm / dtcm / reminders.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 **  reminders.h
26 **
27 **  static char sccsid[] = "@(#)reminders.h 1.15 93/10/07 Copyr 1991 Sun Microsystems, Inc.";
28 **
29 **  $XConsortium: reminders.h /main/3 1995/11/03 10:32:24 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 _REMINDERS_H
53 #define _REMINDERS_H
54
55 #include <X11/Intrinsic.h>
56 #include <csa.h>
57 #include "ansi_c.h"
58 #include "misc.h"
59
60 #define REMINDER_SCOPE_LEN      5
61 #define MAILTO_LEN              100
62 #define BEEP_FLAG               "bp"
63 #define FLASH_FLAG              "fl"
64 #define MAIL_FLAG               "ml"
65 #define POPUP_FLAG              "op"
66
67 typedef enum {
68         REMINDERS_OK,
69         ADVANCE_BLANK,
70         ADVANCE_CONTAINS_BLANK,
71         ADVANCE_NONNUMERIC
72 } Reminder_val_op;
73
74
75 /*******************************************************************************
76 **
77 **  Reminders structure will hold widgets for the "Reminders Display"
78 **
79 *******************************************************************************/
80 typedef struct {
81         Boolean                 selected;
82         Time_scope_menu_op      scope;
83         int                     scope_val;
84 } Reminders_val;
85
86 typedef struct {
87         Widget                  parent;
88         Widget                  alarm_label;
89         Widget                  beep_menu;
90         Widget                  beep_text;
91         Widget                  beep_toggle;
92         Reminders_val           beep_val;
93         Widget                  bfpm_form_mgr;
94         Calendar                *cal;
95         Widget                  flash_menu;
96         Widget                  flash_text;
97         Widget                  flash_toggle;
98         Reminders_val           flash_val;
99         Widget                  mail_menu;
100         Widget                  mail_text;
101         Widget                  mail_toggle;
102         Reminders_val           mail_val;
103         Widget                  mailto_label;
104         Widget                  mailto_text;
105         char                    mailto_val[MAILTO_LEN];
106         Widget                  popup_menu;
107         Widget                  popup_text;
108         Widget                  popup_toggle;
109         Reminders_val           popup_val;
110 } Reminders;
111
112 /*******************************************************************************
113 **
114 **  Editor external function declarations
115 **
116 *******************************************************************************/
117 extern void     build_reminders         P((Reminders*, Calendar*, Widget));
118 extern Reminder_val_op  get_reminders_vals      P((Reminders*, Boolean));
119 extern Boolean  reminders_attrs_to_form P((Reminders*, Dtcm_appointment*));
120 extern Boolean  reminders_appt_to_form  P((Reminders*, CSA_entry_handle));
121 extern Boolean  reminders_form_to_appt  P((Reminders*, Dtcm_appointment*, char *));
122 extern void     set_reminders_defaults  P((Reminders*));
123 extern void     set_reminders_vals      P((Reminders*, Boolean));
124 extern void     reminders_init          P((Reminders*, Calendar*, Widget));
125
126
127 #endif