dthelp: Change to ANSI function definitions
[oweals/cde.git] / cde / programs / dtmail / dtmail / DmxPrintSetup.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 libraries 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 /* $TOG: DmxPrintSetup.h /main/9 1997/08/14 15:53:59 mgreess $ */
24
25 #ifndef _DMX_PRINT_SETUP_H
26 #define _DMX_PRINT_SETUP_H
27
28 /*
29  *+SNOTICE
30  *
31  *      $:$
32  *
33  *      RESTRICTED CONFIDENTIAL INFORMATION:
34  *      
35  *      The information in this document is subject to special
36  *      restrictions in a confidential disclosure agreement between
37  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
38  *      document outside HP, IBM, Sun, USL, SCO, or Univel without
39  *      Sun's specific written approval.  This document and all copies
40  *      and derivative works thereof must be returned or destroyed at
41  *      Sun's request.
42  *
43  *      Copyright 1994 Sun Microsystems, Inc.  All rights reserved.
44  *
45  *+ENOTICE
46  */
47 /*
48  *                   Common Desktop Environment
49  *
50  *   (c) Copyright 1993, 1994, 1995 Hewlett-Packard Company
51  *   (c) Copyright 1993, 1994, 1995 International Business Machines Corp.
52  *   (c) Copyright 1993, 1994, 1995 Sun Microsystems, Inc.
53  *   (c) Copyright 1993, 1994, 1995 Novell, Inc.
54  *   (c) Copyright 1995 Digital Equipment Corp.
55  *   (c) Copyright 1995 Fujitsu Limited
56  *   (c) Copyright 1995 Hitachi, Ltd.
57  *                                                                   
58  *
59  *                     RESTRICTED RIGHTS LEGEND                              
60  *
61  *Use, duplication, or disclosure by the U.S. Government is subject to
62  *restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
63  *Technical Data and Computer Software clause in DFARS 252.227-7013.  Rights
64  *for non-DOD U.S. Government Departments and Agencies are as set forth in
65  *FAR 52.227-19(c)(1,2).
66
67  *Hewlett-Packard Company, 3000 Hanover Street, Palo Alto, CA 94304 U.S.A.
68  *International Business Machines Corp., Route 100, Somers, NY 10589 U.S.A. 
69  *Sun Microsystems, Inc., 2550 Garcia Avenue, Mountain View, CA 94043 U.S.A.
70  *Novell, Inc., 190 River Road, Summit, NJ 07901 U.S.A.
71  *Digital Equipment Corp., 111 Powdermill Road, Maynard, MA 01754, U.S.A.
72  *Fujitsu Limited, 1015, Kamikodanaka Nakahara-Ku, Kawasaki 211, Japan
73  *Hitachi, Ltd., 6, Kanda Surugadai 4-Chome, Chiyoda-ku, Tokyo 101, Japan
74  */
75
76
77 #include <stdio.h>
78 #include <stdlib.h>
79 #include <unistd.h>
80 #include <string.h>
81 #include <sys/types.h>
82 #include <ctype.h>
83 #include <Dt/Print.h>
84 #include "UIComponent.h"
85
86 class DmxPrintSetup
87 {
88 private:
89 typedef struct print_setup_widgets
90 {
91     //
92     // Widgets from the dtmail-specific portion of the PrintSetup Dialog.
93     //
94     Widget              dtprint_setup;
95     Widget              form;
96     Widget              print_separately_tb;
97     Widget              use_word_wrap_tb;
98     Widget              more_options_pb;
99
100     //
101     // Widgets from the generic portion of the PrintSetup Dialog.
102     //
103     Widget              printer_name_tf;
104     Widget              checkbox_rc;
105     Widget              checkbox_tb;
106     Widget              filename_tf;
107 } PrintSetupWidgets;
108
109     Widget              _parent;
110     Widget              _dtprint_setup;
111     PrintSetupWidgets   *_widgets;
112
113     XtCallbackProc      _printCB;
114     XtCallbackProc      _cancelCB;
115     XtCallbackProc      _closeDisplayCB;
116     XtCallbackProc      _pdmSetupCB;
117
118     XtPointer           _printClosure;
119     XtPointer           _cancelClosure;
120     XtPointer           _closeDisplayClosure;
121     XtPointer           _pdmSetupClosure;
122
123     // Print options specific to this print job.
124     DtMailBoolean       _print_separately;
125     DtMailBoolean       _use_word_wrap;
126     DtMailBoolean       _print_to_file;
127     char                *_printer_name;
128     char                *_filename;
129
130     void                attachPrintSetupDialog(void);
131     Widget              createPrintSetupDialog(Widget);
132     void                detachPrintSetupDialog(void);
133     void                savePrintSetupOptions(DtPrintSetupData*);
134
135     static void         destinationChangedCB(Widget, XtPointer, XtPointer);
136     static void         destroyPrintSetupDialogCB(Widget, XtPointer, XtPointer);
137     static void         moreOptionsCB(Widget, XtPointer, XtPointer);
138     static void         printCB(Widget, XtPointer, XtPointer);
139
140 public:
141     DmxPrintSetup (
142                         Widget,
143                         XtCallbackProc, XtPointer,
144                         XtCallbackProc, XtPointer,
145                         XtCallbackProc, XtPointer,
146                         XtCallbackProc, XtPointer
147                   );
148     ~DmxPrintSetup (void);
149
150     void                setPrintToFileName (char*);
151     void                display(void);
152     DtMailBoolean       getDefaultPrintData(DtPrintSetupData*);
153     DtMailBoolean       printSeparately(void);
154     DtMailBoolean       useWordWrap(void);
155 };
156
157 #endif // _DMX_PRINT_SETUP_H