1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
/*******************************************************************************
topLevelShell1.h
This header file is included by topLevelShell1.c
*******************************************************************************/
#ifndef _TOPLEVELSHELL1_INCLUDED
#define _TOPLEVELSHELL1_INCLUDED
#include <stdio.h>
#include <Xm/Xm.h>
#include <Xm/MwmUtil.h>
#include <Xm/MenuShell.h>
#include "UxXt.h"
#include <Xm/Text.h>
#include <Xm/ToggleBG.h>
#include <Xm/TextF.h>
#include <Xm/LabelG.h>
#include <Xm/List.h>
#include <Xm/ScrolledW.h>
#include <Xm/BulletinB.h>
#include <Xm/CascadeB.h>
#include <Xm/PushB.h>
#include <Xm/SeparatoG.h>
#include <Xm/RowColumn.h>
#include <Xm/MainW.h>
#include <X11/Shell.h>
/*******************************************************************************
Declarations of global functions.
*******************************************************************************/
Widget create_topLevelShell1(swidget _UxUxParent);
#endif /* _TOPLEVELSHELL1_INCLUDED */
|