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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*
* Motif Tools Library, Version 3.1
* $Id$
*
* Written by David Flanagan.
* Copyright (c) 1992-2001 by David Flanagan.
* All Rights Reserved. See the file COPYRIGHT for details.
* This is open source software. See the file LICENSE for details.
* There is no warranty for this software. See NO_WARRANTY for details.
*
* $Log$
* Revision 1.1.1.1 2001/07/18 11:06:01 root
* Initial checkin.
*
* Revision 1.1 2001/06/12 15:00:21 andre
* AA-2001-06-12-0: replaced Xmt212 by Xmt310
* (http://sourceforge.net/projects/motiftools) with
* our xmt212 patches applied
*
*
*/
#ifndef _XmtAppRes_h
#define _XmtAppRes_h
/*
* names and classes for each of these resources
*/
#ifndef XmtNbusyCursor
#define XmtNbusyCursor "busyCursor"
#endif
#ifndef XmtCBusyCursor
#define XmtCBusyCursor "BusyCursor"
#endif
#ifndef XmtNbusyCursorForeground
#define XmtNbusyCursorForeground "busyCursorForeground"
#endif
#ifndef XmtNbusyCursorBackground
#define XmtNbusyCursorBackground "busyCursorBackground"
#endif
#ifndef XmtNhelpCursor
#define XmtNhelpCursor "helpCursor"
#endif
#ifndef XmtCHelpCursor
#define XmtCHelpCursor "HelpCursor"
#endif
#ifndef XmtNhelpCursorForeground
#define XmtNhelpCursorForeground "helpCursorForeground"
#endif
#ifndef XmtNhelpCursorBackground
#define XmtNhelpCursorBackground "helpCursorBackground"
#endif
#ifndef XmtNcontextHelpPixmap
#define XmtNcontextHelpPixmap "contextHelpPixmap"
#endif
#ifndef XmtCContextHelpPixmap
#define XmtCContextHelpPixmap "ContextHelpPixmap"
#endif
#ifndef XmtNhelpFile
#define XmtNhelpFile "helpFile"
#endif
#ifndef XmtCHelpFile
#define XmtCHelpFile "HelpFile"
#endif
#ifndef XmtNcontextHelpFile
#define XmtNcontextHelpFile "contextHelpFile"
#endif
#ifndef XmtCContextHelpFile
#define XmtCContextHelpFile "ContextHelpFile"
#endif
#ifndef XmtNconfigDir
#define XmtNconfigDir "configDir"
#endif
#ifndef XmtCConfigDir
#define XmtCConfigDir "ConfigDir"
#endif
#ifndef XmtNhelpFilePath
#define XmtNhelpFilePath "helpFilePath"
#endif
#ifndef XmtNresourceFilePath
#define XmtNresourceFilePath "resourceFilePath"
#endif
#ifndef XmtNbitmapFilePath
#define XmtNbitmapFilePath "bitmapFilePath"
#endif
#ifndef XmtNpixmapFilePath
#define XmtNpixmapFilePath "pixmapFilePath"
#endif
#ifndef XmtCHelpFilePath
#define XmtCHelpFilePath "HelpFilePath"
#endif
#ifndef XmtCResourceFilePath
#define XmtCResourceFilePath "ResourceFilePath"
#endif
#ifndef XmtCBitmapFilePath
#define XmtCBitmapFilePath "BitmapFilePath"
#endif
#ifndef XmtCPixmapFilePath
#define XmtCPixmapFilePath "PixmapFilePath"
#endif
#ifndef XmtNconfigPath
#define XmtNconfigPath "configPath"
#endif
#ifndef XmtNuserConfigPath
#define XmtNuserConfigPath "userConfigPath"
#endif
#ifndef XmtCConfigPath
#define XmtCConfigPath "ConfigPath"
#endif
#ifndef XmtNcolorTable
#define XmtNcolorTable "colorTable"
#endif
#ifndef XmtCColorTable
#define XmtCColorTable "ColorTable"
#endif
#ifndef XmtNdefaultColorTable
#define XmtNdefaultColorTable "defaultColorTable"
#endif
#ifndef XmtCDefaultColorTable
#define XmtCDefaultColorTable "DefaultColorTable"
#endif
#ifndef XmtNreverseVideo
#define XmtNreverseVideo "reverseVideo"
#endif
#ifndef XmtCReverseVideo
#define XmtCReverseVideo "ReverseVideo"
#endif
#ifndef XmtNcursor
#define XmtNcursor "cursor"
#endif
#ifndef XmtCCursor
#define XmtCCursor "Cursor"
#endif
#ifndef XmtNcursorForeground
#define XmtNcursorForeground "cursorForeground"
#endif
#ifndef XmtCCursorForeground
#define XmtCCursorForeground "CursorForeground"
#endif
#ifndef XmtNcursorBackground
#define XmtNcursorBackground "cursorBackground"
#endif
#ifndef XmtCCursorBackground
#define XmtCCursorBackground "CursorBackground"
#endif
_XFUNCPROTOBEGIN
#if NeedFunctionPrototypes
extern void XmtParseCommandLine(Widget, int *, char **);
extern void XmtInitializeApplicationShell(Widget, ArgList, Cardinal);
extern void XmtSetApplicationValues(Widget, ArgList, Cardinal);
extern void XmtGetApplicationValues(Widget, ArgList, Cardinal);
extern Widget XmtLookupApplicationShell(XrmQuark);
#else
extern void XmtParseCommandLine();
extern void XmtInitializeApplicationShell();
extern void XmtSetApplicationValues();
extern void XmtGetApplicationValues();
extern Widget XmtLookupApplicationShell();
#endif
_XFUNCPROTOEND
#endif
|