Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:15:26

0001 /* 
0002  * Motif
0003  *
0004  * Copyright (c) 1987-2012, The Open Group. All rights reserved.
0005  *
0006  * These libraries and programs are free software; you can
0007  * redistribute them and/or modify them under the terms of the GNU
0008  * Lesser General Public License as published by the Free Software
0009  * Foundation; either version 2 of the License, or (at your option)
0010  * any later version.
0011  *
0012  * These libraries and programs are distributed in the hope that
0013  * they will be useful, but WITHOUT ANY WARRANTY; without even the
0014  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
0015  * PURPOSE. See the GNU Lesser General Public License for more
0016  * details.
0017  *
0018  * You should have received a copy of the GNU Lesser General Public
0019  * License along with these librararies and programs; if not, write
0020  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
0021  * Floor, Boston, MA 02110-1301 USA
0022 */ 
0023 #ifndef _XmMessage_h
0024 #define _XmMessage_h
0025 
0026 #include <Xm/Xm.h>
0027 
0028 #ifdef __cplusplus
0029 extern "C" {
0030 #endif
0031 
0032 /* Class record constants */
0033 
0034 externalref WidgetClass xmMessageBoxWidgetClass;
0035 
0036 typedef struct _XmMessageBoxClassRec * XmMessageBoxWidgetClass;
0037 typedef struct _XmMessageBoxRec      * XmMessageBoxWidget;
0038 
0039 /* fast XtIsSubclass define */
0040 #ifndef XmIsMessageBox
0041 #define XmIsMessageBox(w) XtIsSubclass (w, xmMessageBoxWidgetClass)
0042 #endif 
0043 
0044 
0045 /********    Public Function Declarations    ********/
0046 
0047 extern Widget XmCreateMessageBox( 
0048                         Widget parent,
0049                         char *name,
0050                         ArgList al,
0051                         Cardinal ac) ;
0052 extern Widget XmCreateMessageDialog( 
0053                         Widget parent,
0054                         char *name,
0055                         ArgList al,
0056                         Cardinal ac) ;
0057 extern Widget XmCreateErrorDialog( 
0058                         Widget parent,
0059                         char *name,
0060                         ArgList al,
0061                         Cardinal ac) ;
0062 extern Widget XmCreateInformationDialog( 
0063                         Widget parent,
0064                         char *name,
0065                         ArgList al,
0066                         Cardinal ac) ;
0067 extern Widget XmCreateQuestionDialog( 
0068                         Widget parent,
0069                         char *name,
0070                         ArgList al,
0071                         Cardinal ac) ;
0072 extern Widget XmCreateWarningDialog( 
0073                         Widget parent,
0074                         char *name,
0075                         ArgList al,
0076                         Cardinal ac) ;
0077 extern Widget XmCreateWorkingDialog( 
0078                         Widget parent,
0079                         char *name,
0080                         ArgList al,
0081                         Cardinal ac) ;
0082 extern Widget XmCreateTemplateDialog( 
0083                         Widget parent,
0084                         char *name,
0085                         ArgList al,
0086                         Cardinal ac) ;
0087 extern Widget XmMessageBoxGetChild( 
0088                         Widget widget,
0089 #if NeedWidePrototypes
0090                         unsigned int child) ;
0091 #else
0092                         unsigned char child) ;
0093 #endif /* NeedWidePrototypes */
0094 
0095 /*
0096  * Variable argument list functions
0097  */
0098 
0099 extern Widget XmVaCreateMessageBox(
0100                         Widget parent,
0101                         char *name,
0102                         ...);
0103 extern Widget XmVaCreateManagedMessageBox(
0104                         Widget parent,
0105                         char *name,
0106                         ...);
0107 
0108 /********    End Public Function Declarations    ********/
0109 
0110 
0111 #ifdef __cplusplus
0112 }  /* Close scope of 'extern "C"' declaration which encloses file. */
0113 #endif
0114 
0115 #endif /* _XmMessage_h */
0116 /* DON'T ADD ANYTHING AFTER THIS #endif */