Back to home page

EIC code displayed by LXR

 
 

    


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

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  */
0024 /*
0025  * Resources:
0026  *
0027  * ---------------------------------------------------------------------------
0028  * Name            Class             Type              InitialValue
0029  * ---------------------------------------------------------------------------
0030  * 
0031  * equalSize       EqualSize         Boolean           False
0032  * fillOption      FillOption        XmFillOption     XmFillNone
0033  * marginHeight    Margin            Dimension         0
0034  * marginWidth     Margin            Dimension         0
0035  * orientation     Orientation       unsigned char     XmHORIZONTAL
0036  * 
0037  * ---------------------------------------------------------------------------
0038  * 
0039  */
0040 #ifndef _XmButtonBox_h
0041 #define _XmButtonBox_h
0042 
0043 #if defined(VMS) || defined(__VMS)
0044 #include <X11/apienvset.h>
0045 #endif
0046 
0047 #include <Xm/Ext.h>
0048 
0049 /************************************************************
0050  *       INCLUDE FILES
0051  ************************************************************/
0052 
0053 /************************************************************
0054  *       TYPEDEFS AND DEFINES
0055  ************************************************************/
0056 
0057 #if defined(__cplusplus)
0058 extern "C" {
0059 #endif
0060 
0061 typedef struct _XmButtonBoxClassRec    *XmButtonBoxWidgetClass;
0062 typedef struct _XmButtonBoxRec         *XmButtonBoxWidget;
0063 
0064 
0065 /************************************************************
0066  *       MACROS
0067  ************************************************************/
0068 
0069 /************************************************************
0070  *       GLOBAL DECLARATIONS
0071  ************************************************************/
0072 
0073 /************************************************************
0074  *       EXTERNAL DECLARATIONS
0075  ************************************************************/
0076 
0077 /*  Function Name: XmCreateButtonBox
0078  *  Description: Creation Routine for UIL and ADA.
0079  *  Arguments: parent - the parent widget.
0080  *                 name - the name of the widget.
0081  *                 args, num_args - the number and list of args.
0082  *  Returns: The Widget created.
0083  */
0084 
0085 Widget XmCreateButtonBox(
0086 #ifndef _NO_PROTO
0087 Widget, String, ArgList, Cardinal
0088 #endif
0089 );
0090 
0091 /*
0092  * Variable argument list functions
0093  */
0094 
0095 extern Widget XmVaCreateButtonBox(
0096                         Widget parent,
0097                         char *name,
0098                         ...);
0099 extern Widget XmVaCreateManagedButtonBox(
0100                         Widget parent,
0101                         char *name,
0102                         ...);
0103 
0104 extern WidgetClass xmButtonBoxWidgetClass;
0105 
0106 #if defined(__cplusplus)
0107 }
0108 #endif
0109 
0110 #if defined(VMS) || defined(__VMS)
0111 #include <X11/apienvrst.h>
0112 #endif
0113 
0114 #endif /* _XmButtonBox_h */