1 /*
2  * FIG : Facility for Interactive Generation of figures
3  * Copyright (c) 1985-1988 by Supoj Sutanthavibul
4  * Parts Copyright (c) 1989-2015 by Brian V. Smith
5  * Parts Copyright (c) 1991 by Paul King
6  * Parts Copyright (c) 2016-2020 by Thomas Loimer
7  *
8  * Any party obtaining a copy of these files is granted, free of charge, a
9  * full and unrestricted irrevocable, world-wide, paid up, royalty-free,
10  * nonexclusive right and license to deal in this software and documentation
11  * files (the "Software"), including without limitation the rights to use,
12  * copy, modify, merge, publish, distribute, sublicense and/or sell copies of
13  * the Software, and to permit persons who receive copies from any such
14  * party to do so, with the only requirement being that the above copyright
15  * and this permission notice remain intact.
16  *
17  */
18 
19 #ifndef FIGX_H
20 #define FIGX_H
21 
22 #if defined HAVE_CONFIG_H && !defined VERSION
23 #include "config.h"
24 #endif
25 
26 #include <X11/cursorfont.h>
27 #include <X11/StringDefs.h>
28 #include <X11/Shell.h>
29 #include <X11/Xatom.h>
30 
31 #ifdef XAW3D
32 #include <X11/Xaw3d/Command.h>
33 #include <X11/Xaw3d/Label.h>
34 #include <X11/Xaw3d/Dialog.h>
35 #include <X11/Xaw3d/Box.h>
36 #include <X11/Xaw3d/Form.h>
37 #include <X11/Xaw3d/Cardinals.h>
38 #include <X11/Xaw3d/Text.h>
39 #include <X11/Xaw3d/AsciiText.h>
40 #include <X11/Xaw3d/MenuButton.h>
41 #include <X11/Xaw3d/Scrollbar.h>
42 #include <X11/Xaw3d/Simple.h>
43 #include <X11/Xaw3d/SimpleMenu.h>
44 #include <X11/Xaw3d/Sme.h>
45 #include <X11/Xaw3d/SmeLine.h>
46 #ifdef XAW3D1_5E
47 #include <X11/Xaw3d/Tip.h>
48 #endif /* XAW3D1_5E */
49 #include <X11/Xaw3d/Toggle.h>
50 #include <X11/Xaw3d/Paned.h>
51 #include <X11/Xaw3d/Viewport.h>
52 #include <X11/Xaw3d/List.h>
53 #include <X11/Xaw3d/SmeBSB.h>
54 #else /* XAW3D */
55 #include <X11/Xaw/Command.h>
56 #include <X11/Xaw/Label.h>
57 #include <X11/Xaw/Dialog.h>
58 #include <X11/Xaw/Box.h>
59 #include <X11/Xaw/Form.h>
60 #include <X11/Xaw/Cardinals.h>
61 #include <X11/Xaw/Text.h>
62 #include <X11/Xaw/AsciiText.h>
63 #include <X11/Xaw/MenuButton.h>
64 #include <X11/Xaw/Scrollbar.h>
65 #include <X11/Xaw/Simple.h>
66 #include <X11/Xaw/SimpleMenu.h>
67 #include <X11/Xaw/Sme.h>
68 #include <X11/Xaw/SmeLine.h>
69 #include <X11/Xaw/Toggle.h>
70 #include <X11/Xaw/Paned.h>
71 #include <X11/Xaw/Viewport.h>
72 #include <X11/Xaw/List.h>
73 #include <X11/Xaw/SmeBSB.h>
74 /* #include "SmeBSB.h" */
75 #endif /* XAW3D */
76 
77 #endif /* FIGX_H */
78