remove OSF1 support
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / wwl / include / WWL / WXmMessageBox.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 /*
24  * $XConsortium: WXmMessageBox.h /main/3 1996/06/11 17:01:16 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 // This code is automatically generated in -*- C++ -*-
45 #ifndef WXmMessageBox_h
46 #define WXmMessageBox_h
47
48 #include "WXmBulletinBoard.h"
49 #include "WXmPushButton.h" /* DWC IBM */
50 #include <Xm/MessageB.h>
51 #include <Xm/DialogS.h>
52
53 class WXmPushButton;
54
55 class WXmMessageBox : public WXmBulletinBoard {
56 public :
57    DEFINE_INIT (WXmMessageBox, WXmBulletinBoard, xmMessageBoxWidgetClass)
58    DEFINE_CALLBACK      (CancelCallback,"cancelCallback")
59    DEFINE_STRING_GETSET (CancelLabelString,"cancelLabelString")
60    DEFINE_GETTER_SETTER (DefaultButtonType,unsigned char,"defaultButtonType")
61    DEFINE_GETTER_SETTER (DialogType,unsigned char,"dialogType")
62    DEFINE_STRING_GETSET (HelpLabelString,"helpLabelString")
63    DEFINE_GETTER_SETTER (MessageAlignment,unsigned char,"messageAlignment")
64    DEFINE_STRING_GETSET (MessageString,"messageString")
65    DEFINE_GETTER_SETTER (MinimizeButtons,Boolean,"minimizeButtons")
66    DEFINE_CALLBACK      (OkCallback,"okCallback")
67    DEFINE_STRING_GETSET (OkLabelString,"okLabelString")
68    DEFINE_GETTER_SETTER (SymbolPixmap,Pixmap,"symbolPixmap")
69    inline       Widget  GetChild (unsigned char child) const {
70       return XmMessageBoxGetChild (widget, child);
71    }
72 };
73
74 #define NULLWXmMessageBox               WXmMessageBox((Widget)0)
75
76 class CXmMessageBox : public CXmBulletinBoard {
77 public :
78    DEFINE_CINIT(CXmMessageBox, CXmBulletinBoard, xmMessageBoxWidgetClass)
79 };
80
81 //-----------------------------------------------------------------------------
82 // WXmMessageDialog kind of takes the place of the XmCreateMessageDialog
83 // convenience function.  This creates a dialog shell and a message box,
84 // returning the Id of the message box.
85 //
86 class WXmMessageDialog : public WXmMessageBox
87 {
88  public:
89    inline WXmMessageDialog(const WComposite& father,
90                     char*             name,
91                     ArgList           args = NULL,
92                     Cardinal          card = 0 )
93       : WXmMessageBox(XmCreateDialogShell(Widget(father),name,NULL,0),
94                       name, args, card ){};
95    inline WXmMessageDialog(const WComposite& father,
96                     char*             name,
97                     WArgList          args)
98       : WXmMessageBox(XmCreateDialogShell(Widget(father),name,NULL,0),
99                       name, args){};
100
101    inline WXmPushButton OkPB() { 
102       return WXmPushButton(GetChild(XmDIALOG_OK_BUTTON));}
103
104    inline WXmPushButton CancelPB() { 
105       return WXmPushButton(GetChild(XmDIALOG_CANCEL_BUTTON));}
106
107    inline WXmPushButton HelpPB() { 
108       return WXmPushButton(GetChild(XmDIALOG_HELP_BUTTON));}
109
110    inline WXmPushButton Separator() { 
111       return WXmPushButton(GetChild(XmDIALOG_SEPARATOR));}
112
113 };
114
115
116 #endif