55 lines
1.7 KiB
C
55 lines
1.7 KiB
C
/* $XConsortium: OpenFile.h /main/4 1995/11/01 16:08:37 rswiston $ */
|
|
/******************************************************************************
|
|
OpenFile.h
|
|
This header file is included by OpenFile.c
|
|
|
|
******************************************************************************/
|
|
|
|
#ifndef _OPENFILE_H_INCLUDED
|
|
#define _OPENFILE_H_INCLUDED
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <Xm/Xm.h>
|
|
#include <Xm/MwmUtil.h>
|
|
#include <Xm/DialogS.h>
|
|
#include <Xm/MenuShell.h>
|
|
#include "UxXt.h"
|
|
|
|
#include <Xm/FileSB.h>
|
|
|
|
/******************************************************************************
|
|
The definition of the context structure:
|
|
If you create multiple copies of your interface, the context
|
|
structure ensures that your callbacks use the variables for the
|
|
correct copy.
|
|
|
|
For each swidget in the interface, each argument to the Interface
|
|
function, and each variable in the Interface Specific section of the
|
|
Declarations Editor, there is an entry in the context structure.
|
|
and a #define. The #define makes the variable name refer to the
|
|
corresponding entry in the context structure.
|
|
******************************************************************************/
|
|
|
|
typedef struct
|
|
{
|
|
Widget UxOpenFile;
|
|
} _UxCOpenFile;
|
|
|
|
#ifdef CONTEXT_MACRO_ACCESS
|
|
static _UxCOpenFile *UxOpenFileContext;
|
|
#define OpenFile UxOpenFileContext->UxOpenFile
|
|
|
|
#endif /* CONTEXT_MACRO_ACCESS */
|
|
|
|
|
|
/*******************************************************************************
|
|
Declarations of global functions.
|
|
*******************************************************************************/
|
|
|
|
|
|
Widget create_OpenFile(void);
|
|
|
|
|
|
#endif /* _OPENFILE_H_INCLUDED */
|