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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: TranslateI.h,v 1.4 2001/02/09 02:03:59 xorgcvs Exp $ */
  2. /***********************************************************
  3. Copyright 1987, 1988, 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/TranslateI.h,v 1.3 2001/12/14 19:56:32 dawes Exp $ */
  38. /* 
  39.  * TranslateI.h - Header file private to translation management
  40.  * 
  41.  * Author: Gabe Beged-Dov, HP
  42.  *
  43.  * Former Author: Charles Haynes
  44.  *  Digital Equipment Corporation
  45.  *  Western Research Laboratory
  46.  * Date: Sat Aug 29 1987
  47.  */
  48. /*#define REFCNT_TRANSLATIONS*/
  49. #define CACHE_TRANSLATIONS
  50. #define TM_NO_MATCH (-2)
  51. #define _XtRStateTablePair "_XtStateTablePair"
  52. typedef unsigned char TMByteCard;
  53. typedef unsigned short TMShortCard;
  54. typedef unsigned long TMLongCard;
  55. typedef short TMShortInt;
  56. typedef struct _TMTypeMatchRec *TMTypeMatch;
  57. typedef struct _TMModifierMatchRec *TMModifierMatch;
  58. typedef struct _TMEventRec *TMEventPtr;
  59. typedef Boolean (*MatchProc)(TMTypeMatch typeMatch,
  60.      TMModifierMatch modMatch,
  61.      TMEventPtr eventSeq);
  62. typedef struct _ModToKeysymTable {
  63.     Modifiers mask;
  64.     int count;
  65.     int idx;
  66. } ModToKeysymTable;
  67. typedef struct _LateBindings {
  68.     unsigned int knot:1;
  69.     unsigned int pair:1;
  70.     unsigned short ref_count; /* garbage collection */
  71.     KeySym keysym;
  72. } LateBindings, *LateBindingsPtr;
  73. typedef short ModifierMask;
  74. typedef struct _ActionsRec *ActionPtr;
  75. typedef struct _ActionsRec {
  76.     int idx; /* index into quarkTable to find proc */
  77.     String *params; /* pointer to array of params */
  78.     Cardinal num_params; /* number of params */
  79.     ActionPtr next; /* next action to perform */
  80. } ActionRec;
  81. typedef struct _XtStateRec *StatePtr;
  82. typedef struct _XtStateRec {
  83.     unsigned int isCycleStart:1;
  84.     unsigned int isCycleEnd:1;
  85.     TMShortCard typeIndex;
  86.     TMShortCard modIndex;
  87.     ActionPtr actions; /* rhs list of actions to perform */
  88.     StatePtr  nextLevel;
  89. }StateRec;
  90. #define XtTableReplace 0
  91. #define XtTableAugment 1
  92. #define XtTableOverride 2
  93. #define XtTableUnmerge  3
  94. typedef unsigned int _XtTranslateOp;
  95. /*
  96.  * New Definitions
  97.  */
  98. typedef struct _TMModifierMatchRec{
  99.     TMLongCard  modifiers;
  100.     TMLongCard  modifierMask;
  101.     LateBindingsPtr lateModifiers;
  102.     Boolean  standard;
  103. }TMModifierMatchRec;
  104. typedef struct _TMTypeMatchRec{
  105.     TMLongCard  eventType;
  106.     TMLongCard  eventCode;
  107.     TMLongCard  eventCodeMask;
  108.     MatchProc  matchEvent;
  109. }TMTypeMatchRec;
  110. typedef struct _TMBranchHeadRec {
  111.     unsigned int isSimple:1;
  112.     unsigned int hasActions:1;
  113.     unsigned int hasCycles:1;
  114.     unsigned int more:13;
  115.     TMShortCard typeIndex;
  116.     TMShortCard modIndex;
  117. }TMBranchHeadRec, *TMBranchHead;
  118. /* NOTE: elements of this structure must match those of
  119.  * TMComplexStateTreeRec and TMParseStateTreeRec.
  120.  */
  121. typedef struct _TMSimpleStateTreeRec{
  122.     unsigned int isSimple:1;
  123.     unsigned int isAccelerator:1;
  124.     unsigned int mappingNotifyInterest:1;
  125.     unsigned int refCount:13;
  126.     TMShortCard numBranchHeads;
  127.     TMShortCard numQuarks;   /* # of entries in quarkTbl */
  128.     TMShortCard unused;      /* to ensure same alignment */
  129.     TMBranchHeadRec *branchHeadTbl;
  130.     XrmQuark *quarkTbl;  /* table of quarkified rhs*/
  131. }TMSimpleStateTreeRec, *TMSimpleStateTree;
  132. /* NOTE: elements of this structure must match those of
  133.  * TMSimpleStateTreeRec and TMParseStateTreeRec.
  134.  */
  135. typedef struct _TMComplexStateTreeRec{
  136.     unsigned int isSimple:1;
  137.     unsigned int isAccelerator:1;
  138.     unsigned int mappingNotifyInterest:1;
  139.     unsigned int refCount:13;
  140.     TMShortCard numBranchHeads;
  141.     TMShortCard numQuarks;   /* # of entries in quarkTbl */
  142.     TMShortCard numComplexBranchHeads;
  143.     TMBranchHeadRec *branchHeadTbl;
  144.     XrmQuark *quarkTbl;  /* table of quarkified rhs*/
  145.     StatePtr *complexBranchHeadTbl;
  146. }TMComplexStateTreeRec, *TMComplexStateTree;
  147. /* NOTE: elements of this structure must match those of
  148.  * TMSimpleStateTreeRec and TMComplexStateTreeRec.
  149.  */
  150. typedef struct _TMParseStateTreeRec{
  151.     unsigned int isSimple:1;
  152.     unsigned int isAccelerator:1;
  153.     unsigned int mappingNotifyInterest:1;
  154.     unsigned int isStackQuarks:1;
  155.     unsigned int isStackBranchHeads:1;
  156.     unsigned int isStackComplexBranchHeads:1;
  157.     unsigned int unused:10; /* to ensure correct alignment */
  158.     TMShortCard numBranchHeads;
  159.     TMShortCard numQuarks;   /* # of entries in quarkTbl */
  160.     TMShortCard numComplexBranchHeads;
  161.     TMBranchHeadRec *branchHeadTbl;
  162.     XrmQuark *quarkTbl;  /* table of quarkified rhs*/
  163.     StatePtr *complexBranchHeadTbl;
  164.     TMShortCard branchHeadTblSize;
  165.     TMShortCard quarkTblSize; /*total size of quarkTbl */
  166.     TMShortCard complexBranchHeadTblSize;
  167.     StatePtr head;
  168. }TMParseStateTreeRec, *TMParseStateTree;
  169. typedef union _TMStateTreeRec{
  170.     TMSimpleStateTreeRec simple;
  171.     TMParseStateTreeRec parse;
  172.     TMComplexStateTreeRec complex;
  173. }*TMStateTree, **TMStateTreePtr, **TMStateTreeList;
  174. typedef struct _TMSimpleBindProcsRec {
  175.     XtActionProc *procs;
  176. }TMSimpleBindProcsRec, *TMSimpleBindProcs;
  177. typedef struct _TMComplexBindProcsRec {
  178.     Widget   widget; /*widgetID to pass to action Proc*/
  179.     XtTranslations aXlations;
  180.     XtActionProc *procs;
  181. }TMComplexBindProcsRec, *TMComplexBindProcs;
  182. typedef struct _TMSimpleBindDataRec {
  183.     unsigned int isComplex:1; /* must be first */
  184.     TMSimpleBindProcsRec bindTbl[1]; /* variable length */
  185. }TMSimpleBindDataRec, *TMSimpleBindData;
  186. typedef struct _TMComplexBindDataRec {
  187.     unsigned int isComplex:1; /* must be first */
  188.     struct _ATranslationData *accel_context; /* for GetValues */
  189.     TMComplexBindProcsRec bindTbl[1];  /* variable length */
  190. }TMComplexBindDataRec, *TMComplexBindData;
  191. typedef union _TMBindDataRec{
  192.     TMSimpleBindDataRec simple;
  193.     TMComplexBindDataRec complex;
  194. }*TMBindData;
  195. typedef struct _TranslationData{
  196.     unsigned char hasBindings; /* must be first */
  197.     unsigned char operation; /*replace,augment,override*/
  198.     TMShortCard numStateTrees;
  199.     struct _TranslationData     *composers[2];
  200.     EventMask eventMask;
  201.     TMStateTree stateTreeTbl[1]; /* variable length */
  202. }TranslationData;
  203. /*
  204.  * ATranslations is returned by GetValues for translations that contain
  205.  * accelerators.  The TM can differentiate between this and TranslationData
  206.  * (that don't have a bindTbl) by looking at the first field (hasBindings)
  207.  * of either structure.  All ATranslationData structures associated with a
  208.  * widget are chained off the BindData record of the widget.
  209.  */
  210. typedef struct _ATranslationData{
  211.     unsigned char hasBindings; /* must be first */
  212.     unsigned char operation;
  213.     struct _TranslationData *xlations;  /* actual translations */
  214.     struct _ATranslationData *next;      /* chain the contexts together */
  215.     TMComplexBindProcsRec bindTbl[1]; /* accelerator bindings */
  216. }ATranslationData, *ATranslations;
  217. typedef struct _TMConvertRec {
  218.     XtTranslations old; /* table to merge into */
  219.     XtTranslations new; /* table to merge from */
  220. } TMConvertRec;
  221. #define _XtEventTimerEventType ((TMLongCard)~0L)
  222. #define KeysymModMask (1L<<27) /* private to TM */
  223. #define AnyButtonMask (1L<<28) /* private to TM */
  224. typedef struct _EventRec {
  225.     TMLongCard modifiers;
  226.     TMLongCard modifierMask;
  227.     LateBindingsPtr lateModifiers;
  228.     TMLongCard eventType;
  229.     TMLongCard eventCode;
  230.     TMLongCard eventCodeMask;
  231.     MatchProc matchEvent;
  232.     Boolean standard;
  233. } Event;
  234. typedef struct _EventSeqRec *EventSeqPtr;
  235. typedef struct _EventSeqRec {
  236.     Event event; /* X event description */
  237.     StatePtr state; /* private to state table builder */
  238.     EventSeqPtr next; /* next event on line */
  239.     ActionPtr actions; /* r.h.s.   list of actions to perform */
  240. } EventSeqRec;
  241. typedef EventSeqRec EventRec;
  242. typedef EventSeqPtr EventPtr;
  243. typedef struct _TMEventRec {
  244.     XEvent *xev;
  245.     Event event;
  246. }TMEventRec;
  247. typedef struct _ActionHookRec {
  248.     struct _ActionHookRec* next; /* must remain first */
  249.     XtAppContext app;
  250.     XtActionHookProc proc;
  251.     XtPointer closure;
  252. } ActionHookRec, *ActionHook;
  253. /* choose a number between 2 and 8 */
  254. #define TMKEYCACHELOG2 6
  255. #define TMKEYCACHESIZE (1<<TMKEYCACHELOG2)
  256. typedef struct _KeyCacheRec {
  257.     unsigned char modifiers_return[256]; /* constant per KeyCode, key proc */
  258.     KeyCode keycode[TMKEYCACHESIZE];
  259.     unsigned char modifiers[TMKEYCACHESIZE];
  260.     KeySym keysym[TMKEYCACHESIZE];
  261. } TMKeyCache;
  262. typedef struct _TMKeyContextRec {
  263.     XEvent *event;
  264.     unsigned long serial;
  265.     KeySym keysym;
  266.     Modifiers modifiers;
  267.     TMKeyCache keycache;  /* keep this last, to keep offsets to others small */
  268. } TMKeyContextRec, *TMKeyContext;
  269. typedef struct _TMGlobalRec{
  270.     TMTypeMatchRec  **typeMatchSegmentTbl;
  271.     TMShortCard numTypeMatches;
  272.     TMShortCard numTypeMatchSegments;
  273.     TMShortCard typeMatchSegmentTblSize;
  274.     TMModifierMatchRec  **modMatchSegmentTbl;
  275.     TMShortCard numModMatches;
  276.     TMShortCard numModMatchSegments;
  277.     TMShortCard modMatchSegmentTblSize;
  278.     Boolean newMatchSemantics;
  279. #ifdef TRACE_TM
  280.     XtTranslations *tmTbl;
  281.     TMShortCard numTms;
  282.     TMShortCard tmTblSize;
  283.     struct _TMBindCacheRec **bindCacheTbl;
  284.     TMShortCard numBindCache;
  285.     TMShortCard bindCacheTblSize;
  286.     TMShortCard numLateBindings;
  287.     TMShortCard numBranchHeads;
  288.     TMShortCard numComplexStates;
  289.     TMShortCard numComplexActions;
  290. #endif /* TRACE_TM */
  291. }TMGlobalRec;
  292. extern TMGlobalRec _XtGlobalTM;
  293. #define TM_MOD_SEGMENT_SIZE  16
  294. #define TM_TYPE_SEGMENT_SIZE  16
  295. #define TMGetTypeMatch(idx) 
  296.   ((TMTypeMatch) 
  297.    &((_XtGlobalTM.typeMatchSegmentTbl[((idx) >> 4)])[(idx) & 15]))
  298. #define TMGetModifierMatch(idx) 
  299.   ((TMModifierMatch) 
  300.    &((_XtGlobalTM.modMatchSegmentTbl[(idx) >> 4])[(idx) & 15]))
  301. /* Useful Access Macros */
  302. #define TMNewMatchSemantics() (_XtGlobalTM.newMatchSemantics)
  303. #define TMBranchMore(branch) (branch->more)
  304. #define TMComplexBranchHead(tree, br) 
  305.   (((TMComplexStateTree)tree)->complexBranchHeadTbl[TMBranchMore(br)])
  306. #define TMGetComplexBindEntry(bindData, idx) 
  307.   ((TMComplexBindProcs)&(((TMComplexBindData)bindData)->bindTbl[idx]))
  308. #define TMGetSimpleBindEntry(bindData, idx) 
  309.   ((TMSimpleBindProcs)&(((TMSimpleBindData)bindData)->bindTbl[idx]))
  310. #define _InitializeKeysymTables(dpy, pd) 
  311.     if (pd->keysyms == NULL) 
  312.         _XtBuildKeysymTables(dpy, pd)
  313. /*
  314.  * Internal Functions
  315.  */
  316. extern void _XtPopup(
  317.     Widget      /* widget */,
  318.     XtGrabKind  /* grab_kind */,
  319.     _XtBoolean /* spring_loaded */
  320. );
  321. extern String _XtPrintXlations(
  322.     Widget /* w */,
  323.     XtTranslations  /* xlations */,
  324.     Widget /* accelWidget */,
  325.     _XtBoolean /* includeRHS */
  326. );
  327. extern void _XtRegisterGrabs(
  328.     Widget /* widget */
  329. );
  330. extern XtPointer _XtInitializeActionData(
  331.     struct _XtActionsRec * /* actions */,
  332.     Cardinal  /* count */,
  333.     _XtBoolean /* inPlace */
  334. );
  335. extern void _XtAddEventSeqToStateTree(
  336.     EventSeqPtr /* eventSeq */,
  337.     TMParseStateTree /* stateTree */
  338. );
  339. extern Boolean _XtMatchUsingStandardMods(
  340.     TMTypeMatch /* typeMatch */,
  341.     TMModifierMatch /* modMatch */,
  342.     TMEventPtr /* eventSeq */
  343. );
  344. extern Boolean _XtMatchUsingDontCareMods(
  345.     TMTypeMatch /* typeMatch */,
  346.     TMModifierMatch /* modMatch */,
  347.     TMEventPtr /* eventSeq */
  348. );
  349. extern Boolean _XtRegularMatch(
  350.     TMTypeMatch /* typeMatch */,
  351.     TMModifierMatch /* modMatch */,
  352.     TMEventPtr /* eventSeq */
  353. );
  354. extern Boolean _XtMatchAtom(
  355.     TMTypeMatch /* typeMatch */,
  356.     TMModifierMatch /* modMatch */,
  357.     TMEventPtr /* eventSeq */
  358. );
  359. extern void _XtTranslateEvent(
  360.     Widget /* widget */,
  361.     XEvent* /* event */
  362. );
  363. #include "CallbackI.h"
  364. #include "EventI.h"
  365. #include "HookObjI.h"
  366. #include "PassivGraI.h"
  367. #include "ThreadsI.h"
  368. #include "InitialI.h"
  369. #include "ResourceI.h"
  370. #include "StringDefs.h"
  371. extern void _XtBuildKeysymTables(Display *dpy, XtPerDisplay pd);
  372. #ifndef NO_MIT_HACKS
  373. extern void  _XtDisplayTranslations(
  374.     Widget /* widget */,
  375.     XEvent* /* event */,
  376.     String* /* params */,
  377.     Cardinal* /* num_params */
  378. );
  379. extern void  _XtDisplayAccelerators(
  380.     Widget /* widget */,
  381.     XEvent* /* event */,
  382.     String* /* params */,
  383.     Cardinal* /* num_params */
  384. );
  385. extern void _XtDisplayInstalledAccelerators(
  386.     Widget /* widget */,
  387.     XEvent* /* event */,
  388.     String* /* params */,
  389.     Cardinal* /* num_params */
  390. );
  391. #endif /* ifndef NO_MIT_HACKS */
  392. extern void _XtPopupInitialize(
  393.     XtAppContext /* app_context */
  394. );
  395. extern void _XtBindActions(
  396.     Widget /* widget */,
  397.     XtTM  /* tm_rec */
  398. );
  399. extern Boolean _XtComputeLateBindings(
  400.     Display* /* dpy */,
  401.     LateBindingsPtr /* lateModifiers */,
  402.     Modifiers* /* computed */,
  403.     Modifiers* /* computedMask */
  404. );
  405. extern XtTranslations _XtCreateXlations(
  406.     TMStateTree * /* stateTrees */,
  407.     TMShortCard /* numStateTrees */,
  408.     XtTranslations  /* first */,
  409.     XtTranslations /* second */
  410. );
  411. extern Boolean _XtCvtMergeTranslations(
  412.     Display* /* dpy */,
  413.     XrmValuePtr /* args */,
  414.     Cardinal* /* num_args */,
  415.     XrmValuePtr /* from */,
  416.     XrmValuePtr /* to */,
  417.     XtPointer* /* closure_ret */
  418. );
  419. void _XtRemoveStateTreeByIndex(
  420.     XtTranslations /* xlations */,
  421.     TMShortCard /* i */);
  422. void _XtFreeTranslations(
  423.     XtAppContext /* app */,
  424.     XrmValuePtr /* toVal */,
  425.     XtPointer /* closure */,
  426.     XrmValuePtr /* args */,
  427.     Cardinal* /* num_args */
  428. );
  429. extern TMShortCard _XtGetModifierIndex(
  430.     Event* /* event */
  431. );
  432. extern TMShortCard _XtGetQuarkIndex(
  433.     TMParseStateTree /* stateTreePtr */,
  434.     XrmQuark /* quark */
  435. );
  436. extern XtTranslations _XtGetTranslationValue(
  437.     Widget /* widget */
  438. );
  439. extern TMShortCard _XtGetTypeIndex(
  440.     Event* /* event */
  441. );
  442. extern void _XtGrabInitialize(
  443.     XtAppContext /* app */
  444. );
  445. extern void _XtInstallTranslations(
  446.     Widget /* widget */
  447. );
  448. extern void _XtRemoveTranslations(
  449.     Widget /* widget */
  450. );
  451. extern void _XtDestroyTMData(
  452.     Widget /* widget */
  453. );
  454. extern void _XtMergeTranslations(
  455.     Widget /* widget */,
  456.     XtTranslations /* newXlations */,
  457.     _XtTranslateOp /* operation */
  458. );
  459. extern void _XtActionInitialize(
  460.     XtAppContext /* app */
  461. );
  462. extern TMStateTree _XtParseTreeToStateTree(
  463.     TMParseStateTree  /* parseTree */
  464. );
  465. extern String _XtPrintActions(
  466.     ActionRec* /* actions */,
  467.     XrmQuark* /* quarkTbl */
  468. );
  469. extern String _XtPrintState(
  470.     TMStateTree /* stateTree */,
  471.     TMBranchHead /* branchHead */);
  472. extern String _XtPrintEventSeq(
  473.     EventSeqPtr /* eventSeq */,
  474.     Display* /* dpy */
  475. );
  476. typedef Boolean (*_XtTraversalProc)(
  477.     StatePtr /* state */,
  478.     XtPointer /* data */
  479. );
  480. extern void _XtTraverseStateTree(
  481.     TMStateTree /* tree */,
  482.     _XtTraversalProc /* func */,
  483.     XtPointer /* data */
  484. );
  485. extern void _XtTranslateInitialize(
  486.     void
  487. );
  488. extern void _XtAddTMConverters(
  489.     ConverterTable /* table */
  490. );
  491. extern void _XtUnbindActions(
  492.     Widget /* widget */,
  493.     XtTranslations /* xlations */,
  494.     TMBindData /* bindData */
  495. );
  496. extern void _XtUnmergeTranslations(
  497.     Widget /* widget */,
  498.     XtTranslations  /* xlations */
  499. );
  500. /* TMKey.c */
  501. extern void _XtAllocTMContext(XtPerDisplay pd);