Back to home page

EIC code displayed by LXR

 
 

    


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

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 _XmDialogShellP_h
0024 #define _XmDialogShellP_h
0025 
0026 #include <Xm/XmP.h>
0027 #include <Xm/DialogS.h>
0028 #include <X11/ShellP.h>
0029 
0030 #ifdef __cplusplus
0031 extern "C" {
0032 #endif
0033 
0034 /* The DialogShell instance record */
0035 
0036 typedef struct 
0037 {
0038     /* internal fields */
0039     XtGrabKind      grab_kind;
0040     Position        old_x, old_y;
0041 } XmDialogShellPart;
0042 
0043 
0044 /* Full instance record declaration */
0045 
0046 typedef  struct _XmDialogShellRec 
0047 {   
0048     CorePart            core;
0049     CompositePart       composite;
0050     ShellPart           shell;
0051     WMShellPart         wm;
0052     VendorShellPart     vendor;
0053     TransientShellPart      transient;
0054     XmDialogShellPart       dialog;
0055 } XmDialogShellRec;
0056 
0057 typedef  struct _XmDialogShellWidgetRec /* OBSOLETE (for compatibility only).*/
0058 {   
0059     CorePart            core;
0060     CompositePart       composite;
0061     ShellPart           shell;
0062     WMShellPart         wm;
0063     VendorShellPart     vendor;
0064     TransientShellPart      transient;
0065     XmDialogShellPart       dialog;
0066 } XmDialogShellWidgetRec;
0067 
0068 
0069 
0070 /* DialogShell class structure */
0071 
0072 typedef struct 
0073 {
0074     XtPointer           extension;   /* Pointer to extension record */
0075 } XmDialogShellClassPart;
0076 
0077 
0078 /* Full class record declaration */
0079 
0080 typedef struct _XmDialogShellClassRec 
0081 {
0082     CoreClassPart       core_class;
0083     CompositeClassPart      composite_class;
0084     ShellClassPart      shell_class;
0085     WMShellClassPart            wm_shell_class;
0086     VendorShellClassPart    vendor_shell_class;
0087     TransientShellClassPart     transient_shell_class;
0088     XmDialogShellClassPart  dialog_shell_part;
0089 } XmDialogShellClassRec;
0090 
0091 
0092 externalref XmDialogShellClassRec  xmDialogShellClassRec;
0093 
0094 
0095 /********    Private Function Declarations    ********/
0096 
0097 
0098 /********    End Private Function Declarations    ********/
0099 
0100 
0101 #ifdef __cplusplus
0102 }  /* Close scope of 'extern "C"' declaration which encloses file. */
0103 #endif
0104 
0105 #endif /* _XmDialogShellP_h */
0106 /* DON'T ADD STUFF AFTER THIS #endif */