InitialI.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:12k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: InitialI.h,v 1.4 2001/02/09 02:03:55 xorgcvs Exp $ */
  2. /***********************************************************
  3. Copyright 1987, 1988, 1994, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  21.                         All Rights Reserved
  22. Permission to use, copy, modify, and distribute this software and its 
  23. documentation for any purpose and without fee is hereby granted, 
  24. provided that the above copyright notice appear in all copies and that
  25. both that copyright notice and this permission notice appear in 
  26. supporting documentation, and that the name of Digital not be
  27. used in advertising or publicity pertaining to distribution of the
  28. software without specific, written prior permission.  
  29. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  30. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  31. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  32. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  33. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  34. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  35. SOFTWARE.
  36. ******************************************************************/
  37. /* $XFree86: xc/lib/Xt/InitialI.h,v 3.10 2001/12/14 19:56:18 dawes Exp $ */
  38. #ifndef _XtinitialI_h
  39. #define _XtinitialI_h
  40. /****************************************************************
  41.  *
  42.  * Displays
  43.  *
  44.  ****************************************************************/
  45. #ifndef X_NOT_POSIX
  46. #ifdef _POSIX_SOURCE
  47. #include <limits.h>
  48. #else
  49. #define _POSIX_SOURCE
  50. #include <limits.h>
  51. #undef _POSIX_SOURCE
  52. #endif
  53. #endif
  54. #ifndef PATH_MAX
  55. #ifdef WIN32
  56. #define PATH_MAX 512
  57. #else
  58. #include <sys/param.h>
  59. #endif
  60. #ifndef PATH_MAX
  61. #ifdef MAXPATHLEN
  62. #define PATH_MAX MAXPATHLEN
  63. #else
  64. #define PATH_MAX 1024
  65. #endif
  66. #endif
  67. #endif
  68. #include <X11/Xos.h>
  69. #include <X11/Xpoll.h>
  70. typedef struct _TimerEventRec {
  71.         struct timeval        te_timer_value;
  72. struct _TimerEventRec *te_next;
  73. XtTimerCallbackProc   te_proc;
  74. XtAppContext       app;
  75. XtPointer       te_closure;
  76. } TimerEventRec;
  77. typedef struct _InputEvent {
  78. XtInputCallbackProc   ie_proc;
  79. XtPointer       ie_closure;
  80. struct _InputEvent    *ie_next;
  81. struct _InputEvent    *ie_oq;
  82. XtAppContext       app;
  83. int       ie_source;
  84. XtInputMask       ie_condition;
  85. } InputEvent;
  86. typedef struct _SignalEventRec {
  87. XtSignalCallbackProc  se_proc;
  88. XtPointer       se_closure;
  89. struct _SignalEventRec *se_next;
  90. XtAppContext       app;
  91. Boolean       se_notice;
  92. } SignalEventRec;
  93. typedef struct _WorkProcRec {
  94. XtWorkProc proc;
  95. XtPointer closure;
  96. struct _WorkProcRec *next;
  97. XtAppContext app;
  98. } WorkProcRec;
  99. typedef struct 
  100. {
  101. #ifndef USE_POLL
  102.    fd_set rmask;
  103. fd_set wmask;
  104. fd_set emask;
  105. #endif
  106. int nfds;
  107. } FdStruct;
  108. typedef struct _LangProcRec {
  109.     XtLanguageProc proc;
  110.     XtPointer closure;
  111. } LangProcRec;
  112. typedef struct _ProcessContextRec {
  113.     XtAppContext defaultAppContext;
  114.     XtAppContext appContextList;
  115.     ConverterTable globalConverterTable;
  116.     LangProcRec globalLangProcRec;
  117. } ProcessContextRec, *ProcessContext;
  118. typedef struct {
  119.     char* start;
  120.     char* current;
  121.     int bytes_remaining;
  122. } Heap;
  123. typedef struct _DestroyRec DestroyRec;
  124. typedef struct _XtAppStruct {
  125.     XtAppContext next; /* link to next app in process context */
  126.     ProcessContext process; /* back pointer to our process context */
  127.     InternalCallbackList destroy_callbacks;
  128.     Display **list;
  129.     TimerEventRec *timerQueue;
  130.     WorkProcRec *workQueue;
  131.     InputEvent **input_list;
  132.     InputEvent *outstandingQueue;
  133.     SignalEventRec *signalQueue;
  134.     XrmDatabase errorDB;
  135.     XtErrorMsgHandler errorMsgHandler, warningMsgHandler;
  136.     XtErrorHandler errorHandler, warningHandler;
  137.     struct _ActionListRec *action_table;
  138.     ConverterTable converterTable;
  139.     unsigned long selectionTimeout;
  140.     FdStruct fds;
  141.     short count; /* num of assigned entries in list */
  142.     short max; /* allocate size of list */
  143.     short last;
  144.     short input_count;
  145.     short input_max; /* elts input_list init'd with */
  146.     Boolean sync, being_destroyed, error_inited;
  147. #ifndef NO_IDENTIFY_WINDOWS
  148.     Boolean identify_windows; /* debugging hack */
  149. #endif
  150.     Heap heap;
  151.     String * fallback_resources; /* Set by XtAppSetFallbackResources. */
  152.     struct _ActionHookRec* action_hook_list;
  153.     struct _BlockHookRec* block_hook_list;
  154.     int destroy_list_size; /* state data for 2-phase destroy */
  155.     int destroy_count;
  156.     int dispatch_level;
  157.     DestroyRec* destroy_list;
  158.     Widget in_phase2_destroy;
  159.     LangProcRec langProcRec;
  160.     struct _TMBindCacheRec * free_bindings;
  161.     String display_name_tried;
  162.     Display **dpy_destroy_list;
  163.     int dpy_destroy_count;
  164.     Boolean exit_flag;
  165.     Boolean rebuild_fdlist;
  166. #ifdef XTHREADS
  167.     LockPtr lock_info;
  168.     ThreadAppProc lock;
  169.     ThreadAppProc unlock;
  170.     ThreadAppYieldLockProc yield_lock;
  171.     ThreadAppRestoreLockProc restore_lock;
  172.     ThreadAppProc free_lock;
  173. #endif
  174. } XtAppStruct;
  175. extern void _XtHeapInit(Heap* heap);
  176. extern void _XtHeapFree(Heap* heap);
  177. #ifdef XTTRACEMEMORY
  178. extern char *_XtHeapMalloc(
  179.     Heap* /* heap */,
  180.     Cardinal /* size */,
  181.     char * /* file */,
  182.     int /* line */
  183. );
  184. #define _XtHeapAlloc(heap,bytes) _XtHeapMalloc(heap, bytes, __FILE__, __LINE__)
  185. #else /* XTTRACEMEMORY */
  186. extern char* _XtHeapAlloc(
  187.     Heap* /* heap */,
  188.     Cardinal /* size */
  189. );
  190. #endif /* XTTRACEMEMORY */
  191. extern void _XtSetDefaultErrorHandlers(
  192.     XtErrorMsgHandler* /* errMsg */,
  193.     XtErrorMsgHandler* /* warnMsg */,
  194.     XtErrorHandler* /* err */,
  195.     XtErrorHandler* /* warn */
  196. );
  197. extern void _XtSetDefaultSelectionTimeout(
  198.     unsigned long* /* timeout */
  199. );
  200. extern XtAppContext _XtDefaultAppContext(
  201.     void
  202. );
  203. extern ProcessContext _XtGetProcessContext(
  204.     void
  205. );
  206. Display *
  207. _XtAppInit(
  208.     XtAppContext* /* app_context_return */,
  209.     String /* application_class */,
  210.     XrmOptionDescRec* /* options */,
  211.     Cardinal /* num_options */,
  212.     int* /* argc_in_out */,
  213.     String** /* argv_in_out */,
  214.     String* /* fallback_resources */
  215. );
  216. extern void _XtDestroyAppContexts(
  217.     void
  218. );
  219. extern void _XtCloseDisplays(
  220.     XtAppContext /* app */
  221. );
  222. extern int _XtAppDestroyCount;
  223. extern int _XtWaitForSomething(
  224.     XtAppContext /* app */,
  225.     _XtBoolean  /* ignoreEvents */,
  226.     _XtBoolean  /* ignoreTimers */,
  227.     _XtBoolean  /* ignoreInputs */,
  228.     _XtBoolean /* ignoreSignals */,
  229.     _XtBoolean  /* block */,
  230. #ifdef XTHREADS
  231.     _XtBoolean /* drop_lock */,
  232. #endif
  233.     unsigned long* /* howlong */
  234. );
  235. typedef struct _CaseConverterRec *CaseConverterPtr;
  236. typedef struct _CaseConverterRec {
  237.     KeySym start; /* first KeySym valid in converter */
  238.     KeySym stop; /* last KeySym valid in converter */
  239.     XtCaseProc proc; /* case converter function */
  240.     CaseConverterPtr next; /* next converter record */
  241. } CaseConverterRec;
  242. typedef struct _ExtensionSelectorRec {
  243.     XtExtensionSelectProc proc;
  244.     int min, max;
  245.     XtPointer client_data;
  246. } ExtSelectRec;
  247. typedef struct _XtPerDisplayStruct {
  248.     InternalCallbackList destroy_callbacks;
  249.     Region region;
  250.     CaseConverterPtr case_cvt; /* user-registered case converters */
  251.     XtKeyProc defaultKeycodeTranslator;
  252.     XtAppContext appContext;
  253.     unsigned long keysyms_serial;      /* for tracking MappingNotify events */
  254.     KeySym *keysyms;                   /* keycode to keysym table */
  255.     int keysyms_per_keycode;           /* number of keysyms for each keycode*/
  256.     int min_keycode, max_keycode;      /* range of keycodes */
  257.     KeySym *modKeysyms;                /* keysym values for modToKeysysm */
  258.     ModToKeysymTable *modsToKeysyms;   /* modifiers to Keysysms index table*/
  259.     unsigned char isModifier[32];      /* key-is-modifier-p bit table */
  260.     KeySym lock_meaning;        /* Lock modifier meaning */
  261.     Modifiers mode_switch;        /* keyboard group modifiers */
  262.     Modifiers num_lock;        /* keyboard numlock modifiers */
  263.     Boolean being_destroyed;
  264.     Boolean rv;        /* reverse_video resource */
  265.     XrmName name;        /* resolved app name */
  266.     XrmClass class;        /* application class */
  267.     Heap heap;
  268.     struct _GCrec *GClist;        /* support for XtGetGC */
  269.     Drawable **pixmap_tab;             /* ditto for XtGetGC */
  270.     String language;        /* XPG language string */
  271.     XEvent last_event;        /* last event dispatched */
  272.     Time last_timestamp;        /* from last event dispatched */
  273.     int multi_click_time;        /* for XtSetMultiClickTime */
  274.     struct _TMKeyContextRec* tm_context;     /* for XtGetActionKeysym */
  275.     InternalCallbackList mapping_callbacks;  /* special case for TM */
  276.     XtPerDisplayInputRec pdi;        /* state for modal grabs & kbd focus */
  277.     struct _WWTable *WWtable;        /* window to widget table */
  278.     XrmDatabase *per_screen_db;        /* per screen resource databases */
  279.     XrmDatabase cmd_db;        /* db from command line, if needed */
  280.     XrmDatabase server_db;        /* resource property else .Xdefaults */
  281.     XtEventDispatchProc* dispatcher_list;
  282.     ExtSelectRec* ext_select_list;
  283.     int ext_select_count;
  284.     Widget hook_object;
  285. #ifndef X_NO_RESOURCE_CONFIGURATION_MANAGEMENT
  286.     Atom rcm_init; /* ResConfig - initialize */
  287.     Atom rcm_data; /* ResConfig - data atom */
  288. #endif
  289. } XtPerDisplayStruct, *XtPerDisplay;
  290. typedef struct _PerDisplayTable {
  291. Display *dpy;
  292. XtPerDisplayStruct perDpy;
  293. struct _PerDisplayTable *next;
  294. } PerDisplayTable, *PerDisplayTablePtr;
  295. extern PerDisplayTablePtr _XtperDisplayList;
  296. extern XtPerDisplay _XtSortPerDisplayList(
  297.     Display* /* dpy */
  298. );
  299. extern XtPerDisplay _XtGetPerDisplay(
  300.     Display* /* dpy */
  301. );
  302. extern XtPerDisplayInputRec* _XtGetPerDisplayInput(
  303.     Display*  /* dpy */
  304. );
  305. #if 0
  306. #ifdef DEBUG
  307. #define _XtGetPerDisplay(display) 
  308.     ((_XtperDisplayList != NULL && (_XtperDisplayList->dpy == (display))) 
  309.      ? &_XtperDisplayList->perDpy 
  310.      : _XtSortPerDisplayList(display))
  311. #define _XtGetPerDisplayInput(display) 
  312.     ((_XtperDisplayList != NULL && (_XtperDisplayList->dpy == (display))) 
  313.      ? &_XtperDisplayList->perDpy.pdi 
  314.      : &_XtSortPerDisplayList(display)->pdi)
  315. #else
  316. #define _XtGetPerDisplay(display) 
  317.     ((_XtperDisplayList->dpy == (display)) 
  318.      ? &_XtperDisplayList->perDpy 
  319.      : _XtSortPerDisplayList(display))
  320. #define _XtGetPerDisplayInput(display) 
  321.     ((_XtperDisplayList->dpy == (display)) 
  322.      ? &_XtperDisplayList->perDpy.pdi 
  323.      : &_XtSortPerDisplayList(display)->pdi)
  324. #endif /*DEBUG*/
  325. #endif
  326. extern void _XtDisplayInitialize(
  327.     Display* /* dpy */,
  328.     XtPerDisplay /* pd */,
  329.     _Xconst char* /* name */,
  330.     XrmOptionDescRec* /* urlist */,
  331.     Cardinal  /* num_urs */,
  332.     int* /* argc */,
  333.     char**  /* argv */
  334. );
  335. extern void _XtCacheFlushTag(
  336.     XtAppContext /* app */,
  337.     XtPointer  /* tag */
  338. );
  339. extern void _XtFreeActions(
  340.     struct _ActionListRec* /* action_table */
  341. );
  342. extern void _XtDoPhase2Destroy(
  343.     XtAppContext /* app */,
  344.     int  /* dispatch_level */
  345. );
  346. extern void _XtDoFreeBindings(
  347.     XtAppContext /* app */
  348. );
  349. extern void _XtExtensionSelect(
  350.     Widget /* widget */
  351. );
  352. #define _XtSafeToDestroy(app) ((app)->dispatch_level == 0)
  353. extern void _XtAllocWWTable(
  354.     XtPerDisplay pd
  355. );
  356. extern void _XtFreeWWTable(
  357.     XtPerDisplay pd
  358. );
  359. extern String _XtGetUserName(String dest, int len);
  360. extern XrmDatabase _XtPreparseCommandLine(XrmOptionDescRec *urlist,
  361. Cardinal num_urs, int argc, String *argv,
  362. String *applName, String *displayName,
  363. String *language);
  364. #endif /* _XtinitialI_h */