Fix warnings on FreeBSD
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / Agents / MessageAgentMotif.hh
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 /*
24  * $XConsortium: MessageAgentMotif.hh /main/7 1996/11/23 14:11:57 cde-hal $
25  *
26  * Copyright (c) 1991 HaL Computer Systems, Inc.  All rights reserved.
27  * UNPUBLISHED -- rights reserved under the Copyright Laws of the United
28  * States.  Use of a copyright notice is precautionary only and does not
29  * imply publication or disclosure.
30  * 
31  * This software contains confidential information and trade secrets of HaL
32  * Computer Systems, Inc.  Use, disclosure, or reproduction is prohibited
33  * without the prior express written permission of HaL Computer Systems, Inc.
34  * 
35  *                         RESTRICTED RIGHTS LEGEND
36  * Use, duplication, or disclosure by the Government is subject to
37  * restrictions as set forth in subparagraph (c)(l)(ii) of the Rights in
38  * Technical Data and Computer Software clause at DFARS 252.227-7013.
39  *                        HaL Computer Systems, Inc.
40  *                  1315 Dell Avenue, Campbell, CA  95008
41  * 
42  */
43
44
45 class WXmMessageDialog;
46 class WXmTextField;
47
48 class MessageAgent : public Agent
49 {
50 public: // functions
51   // Initializing
52   MessageAgent();
53
54   // Displaying
55   void displayError       (char *message_text, Widget parent);
56   void displayWarning     (char *message_text, Widget parent);
57   void displayInformation (char *message_text, Widget parent);
58   void displayQuit        (char *message_text, Widget parent);
59   void displayProgress    (char *message_text, Widget parent);
60   void undisplayProgress  ();
61   bool displayQuestion    (char *message_text, Widget parent);
62
63   int get_integer (const char* msg, const char* title, int default_value, Widget parent);
64   const char *get_string (const char* msg, const char* title, const char* default_value, Widget parent);
65
66   void setMaxLength(int, Widget parent);
67   STATIC_SENDER_HH(CancelOperation);
68
69 private: // functions
70   void create_ui          (Widget parent);
71   void ok_activate        (WCallback *wcb);
72   void position_dialog    (WCallback *wcb);
73   void cancelOperation    (WCallback *wcb);
74   void displayMessage     (char *message_text);
75   void display_it();
76   void pop_down();
77   void focus (WCallback *);
78
79   void verify_integer (WCallback *wcb);
80   void value_changed (WCallback *wcb);
81
82 private: // variables
83
84   WXmMessageDialog *f_dialog;
85   WXmTextField     *f_text;
86   Boolean           f_exit_flag;
87   Widget            f_real_parent;
88   Boolean           f_popped_up;
89   Boolean           f_pressed_ok;
90 };
91
92 // inline:
93
94 inline
95 MessageAgent::MessageAgent()
96 : f_dialog (NULL),
97   f_text(NULL),
98   f_exit_flag (False),
99   f_real_parent(NULL),
100   f_popped_up(FALSE),
101   f_pressed_ok(FALSE)
102 {
103 }