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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
|
/* $Xorg: TMaction.c,v 1.5 2001/02/09 02:03:58 xorgcvs Exp $ */
/*LINTLIBRARY*/
/***********************************************************
Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts
Copyright 1993 by Sun Microsystems, Inc. Mountain View, CA.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Digital or Sun not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
SUN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FIT-
NESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SUN BE LI-
ABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
THE USE OR PERFORMANCE OF THIS SOFTWARE.
******************************************************************/
/*
Copyright 1987, 1988, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*/
/* $XFree86: xc/lib/Xt/TMaction.c,v 3.7 2001/12/14 19:56:30 dawes Exp $ */
/* TMaction.c -- maintains the state table of actions for the translation
* manager.
*/
#include "IntrinsicI.h"
#include "StringDefs.h"
#if defined(__STDC__) && !defined(NORCONST)
#define RConst const
#else
#define RConst /**/
#endif
static String XtNtranslationError = "translationError";
typedef struct _CompiledAction{
XrmQuark signature;
XtActionProc proc;
}CompiledAction, *CompiledActionTable;
#define GetClassActions(wc) \
((wc->core_class.actions) \
? (((TMClassCache)wc->core_class.actions)->actions) \
: NULL)
static CompiledActionTable CompileActionTable(actions, count, stat, perm)
register struct _XtActionsRec *actions;
register Cardinal count; /* may be 0 */
Boolean stat; /* if False, copy before compiling in place */
Boolean perm; /* if False, use XrmStringToQuark */
{
register CompiledActionTable cActions;
register int i;
CompiledAction hold;
CompiledActionTable cTableHold;
XrmQuark (*func)();
if (!count)
return (CompiledActionTable) NULL;
func = (perm ? XrmPermStringToQuark : XrmStringToQuark);
if (! stat) {
cTableHold = cActions = (CompiledActionTable)
__XtMalloc(count * sizeof(CompiledAction));
for (i=count; --i >= 0; cActions++, actions++) {
cActions->proc = actions->proc;
cActions->signature = (*func)(actions->string);
}
} else {
cTableHold = (CompiledActionTable) actions;
for (i=count; --i >= 0; actions++)
((CompiledActionTable) actions)->signature =
(*func)(actions->string);
}
cActions = cTableHold;
/* Insertion sort. Whatever sort is used, it must be stable. */
for (i=1; i <= count - 1; i++) {
register int j;
hold = cActions[i];
j = i;
while (j && cActions[j-1].signature > hold.signature) {
cActions[j] = cActions[j-1];
j--;
}
cActions[j] = hold;
}
return cActions;
}
typedef struct _ActionListRec *ActionList;
typedef struct _ActionListRec {
ActionList next;
CompiledActionTable table;
TMShortCard count;
} ActionListRec;
static void ReportUnboundActions(xlations, bindData)
XtTranslations xlations;
TMBindData bindData;
{
TMSimpleStateTree stateTree = (TMSimpleStateTree)xlations->stateTreeTbl[0];
Cardinal num_unbound = 0;
Cardinal num_params = 1;
char* message;
char messagebuf[1000];
String params[1];
register Cardinal num_chars = 0;
register Cardinal i, j;
XtActionProc *procs;
for (i=0; i < xlations->numStateTrees; i++) {
if (bindData->simple.isComplex)
procs = TMGetComplexBindEntry(bindData, i)->procs;
else
procs = TMGetSimpleBindEntry(bindData, i)->procs;
stateTree = (TMSimpleStateTree)xlations->stateTreeTbl[i];
for (j=0; j < stateTree->numQuarks; j++) {
if (procs[j] == NULL) {
String s = XrmQuarkToString(stateTree->quarkTbl[j]);
if (num_unbound != 0)
num_chars += 2;
num_chars += strlen(s);
num_unbound++;
}
}
}
if (num_unbound == 0)
return;
message = XtStackAlloc (num_chars + 1, messagebuf);
if (message != NULL) {
*message = '\0';
num_unbound = 0;
stateTree = (TMSimpleStateTree)xlations->stateTreeTbl[0];
for (i=0; i < xlations->numStateTrees; i++) {
if (bindData->simple.isComplex)
procs = TMGetComplexBindEntry(bindData, i)->procs;
else
procs = TMGetSimpleBindEntry(bindData, i)->procs;
stateTree = (TMSimpleStateTree)xlations->stateTreeTbl[i];
for (j=0; j < stateTree->numQuarks; j++) {
if (procs[j] == NULL) {
String s = XrmQuarkToString(stateTree->quarkTbl[j]);
if (num_unbound != 0)
(void) strcat(message, ", ");
(void) strcat(message, s);
num_unbound++;
}
}
}
message[num_chars] = '\0';
params[0] = message;
XtWarningMsg(XtNtranslationError,"unboundActions",XtCXtToolkitError,
"Actions not found: %s",
params, &num_params);
XtStackFree (message, messagebuf);
}
}
static CompiledAction *SearchActionTable(signature, actionTable, numActions)
XrmQuark signature;
CompiledActionTable actionTable;
Cardinal numActions;
{
register int i, left, right;
left = 0;
right = numActions - 1;
while (left <= right) {
i = (left + right) >> 1;
if (signature < actionTable[i].signature)
right = i - 1;
else if (signature > actionTable[i].signature)
left = i + 1;
else {
while (i && actionTable[i - 1].signature == signature)
i--;
return &actionTable[i];
}
}
return (CompiledAction *) NULL;
}
static int BindActions(stateTree, procs, compiledActionTable, numActions, ndxP)
TMSimpleStateTree stateTree;
XtActionProc *procs;
CompiledActionTable compiledActionTable;
TMShortCard numActions;
Cardinal *ndxP;
{
register int unbound = stateTree->numQuarks - *ndxP;
CompiledAction* action;
register Cardinal ndx;
register Boolean savedNdx = False;
for (ndx = *ndxP; ndx < stateTree->numQuarks; ndx++) {
if (procs[ndx] == NULL) {
/* attempt to bind it */
XrmQuark q = stateTree->quarkTbl[ndx];
action = SearchActionTable(q, compiledActionTable, numActions);
if (action) {
procs[ndx] = action->proc;
unbound--;
} else if (!savedNdx) {
*ndxP= ndx;
savedNdx = True;
}
} else {
/* already bound, leave it alone */
unbound--;
}
}
return unbound;
}
typedef struct _TMBindCacheStatusRec{
unsigned int boundInClass:1;
unsigned int boundInHierarchy:1;
unsigned int boundInContext:1;
unsigned int notFullyBound:1;
unsigned int refCount:28;
}TMBindCacheStatusRec, *TMBindCacheStatus;
typedef struct _TMBindCacheRec{
struct _TMBindCacheRec *next;
TMBindCacheStatusRec status;
TMStateTree stateTree;
#ifdef TRACE_TM
WidgetClass widgetClass;
#endif /* TRACE_TM */
XtActionProc procs[1]; /* variable length */
}TMBindCacheRec, *TMBindCache;
typedef struct _TMClassCacheRec {
CompiledActionTable actions;
TMBindCacheRec *bindCache;
}TMClassCacheRec, *TMClassCache;
#define IsPureClassBind(bc) \
(bc->status.boundInClass && \
!(bc->status.boundInHierarchy || \
bc->status.boundInContext || \
bc->status.notFullyBound))
#define GetClassCache(w) \
((TMClassCache)w->core.widget_class->core_class.actions)
static int BindProcs(widget, stateTree, procs, bindStatus)
Widget widget;
TMSimpleStateTree stateTree;
XtActionProc *procs;
TMBindCacheStatus bindStatus;
{
register WidgetClass class;
register ActionList actionList;
int unbound = -1, newUnbound = -1;
Cardinal ndx = 0;
Widget w = widget;
LOCK_PROCESS;
do {
class = w->core.widget_class;
do {
if (class->core_class.actions != NULL)
unbound =
BindActions(stateTree,
procs,
GetClassActions(class),
class->core_class.num_actions,
&ndx);
class = class->core_class.superclass;
} while (unbound != 0 && class != NULL);
if (unbound < (int)stateTree->numQuarks)
bindStatus->boundInClass = True;
else
bindStatus->boundInClass = False;
if (newUnbound == -1)
newUnbound = unbound;
w = XtParent(w);
} while (unbound != 0 && w != NULL);
if (newUnbound > unbound)
bindStatus->boundInHierarchy = True;
else
bindStatus->boundInHierarchy = False;
if (unbound) {
XtAppContext app = XtWidgetToApplicationContext(widget);
newUnbound = unbound;
for (actionList = app->action_table;
unbound != 0 && actionList != NULL;
actionList = actionList->next) {
unbound = BindActions(stateTree,
procs,
actionList->table,
actionList->count,
&ndx);
}
if (newUnbound > unbound)
bindStatus->boundInContext = True;
else
bindStatus->boundInContext = False;
}
UNLOCK_PROCESS;
return unbound;
}
static XtActionProc *TryBindCache(widget, stateTree)
Widget widget;
TMStateTree stateTree;
{
TMClassCache classCache;
LOCK_PROCESS;
classCache = GetClassCache(widget);
if (classCache == NULL)
{
WidgetClass wc = XtClass(widget);
wc->core_class.actions = (XtActionList)
_XtInitializeActionData(NULL, 0, True);
}
else
{
TMBindCache bindCache =
(TMBindCache)(classCache->bindCache);
for (; bindCache; bindCache = bindCache->next)
{
if (IsPureClassBind(bindCache) &&
(stateTree == bindCache->stateTree))
{
bindCache->status.refCount++;
UNLOCK_PROCESS;
return &bindCache->procs[0];
}
}
}
UNLOCK_PROCESS;
return NULL;
}
/*
* The class record actions field will point to the bind cache header
* after this call is made out of coreClassPartInit.
*/
#if NeedFunctionPrototypes
XtPointer _XtInitializeActionData(
register struct _XtActionsRec *actions,
register Cardinal count,
_XtBoolean inPlace
)
#else
XtPointer _XtInitializeActionData(actions, count, inPlace)
register struct _XtActionsRec *actions;
register Cardinal count;
Boolean inPlace;
#endif
{
TMClassCache classCache;
classCache = XtNew(TMClassCacheRec);
classCache->actions = CompileActionTable(actions, count, inPlace, True);
classCache->bindCache = NULL;
return (XtPointer)classCache;
}
#define TM_BIND_CACHE_REALLOC 2
static XtActionProc *EnterBindCache(w, stateTree, procs, bindStatus)
Widget w;
TMSimpleStateTree stateTree;
XtActionProc *procs;
TMBindCacheStatus bindStatus;
{
TMClassCache classCache;
TMBindCache* bindCachePtr;
TMShortCard procsSize;
TMBindCache bindCache;
LOCK_PROCESS;
classCache = GetClassCache(w);
bindCachePtr = &classCache->bindCache;
procsSize = stateTree->numQuarks * sizeof(XtActionProc);
for (bindCache = *bindCachePtr;
(*bindCachePtr);
bindCachePtr = &(*bindCachePtr)->next, bindCache = *bindCachePtr)
{
TMBindCacheStatus cacheStatus = &bindCache->status;
if ((bindStatus->boundInClass == cacheStatus->boundInClass) &&
(bindStatus->boundInHierarchy == cacheStatus->boundInHierarchy) &&
(bindStatus->boundInContext == cacheStatus->boundInContext) &&
(bindCache->stateTree == (TMStateTree)stateTree) &&
!XtMemcmp(&bindCache->procs[0], procs, procsSize))
{
bindCache->status.refCount++;
break;
}
}
if (*bindCachePtr == NULL)
{
*bindCachePtr =
bindCache = (TMBindCache)
__XtMalloc(sizeof(TMBindCacheRec) +
(procsSize - sizeof(XtActionProc)));
bindCache->next = NULL;
bindCache->status = *bindStatus;
bindCache->status.refCount = 1;
bindCache->stateTree = (TMStateTree)stateTree;
#ifdef TRACE_TM
bindCache->widgetClass = XtClass(w);
if (_XtGlobalTM.numBindCache == _XtGlobalTM.bindCacheTblSize)
{
_XtGlobalTM.bindCacheTblSize += 16;
_XtGlobalTM.bindCacheTbl = (TMBindCache *)
XtRealloc((char *)_XtGlobalTM.bindCacheTbl,
((_XtGlobalTM.bindCacheTblSize) *
sizeof(TMBindCache)));
}
_XtGlobalTM.bindCacheTbl[_XtGlobalTM.numBindCache++] = bindCache;
#endif /* TRACE_TM */
XtMemmove((XtPointer)&bindCache->procs[0],
(XtPointer)procs, procsSize);
}
UNLOCK_PROCESS;
return &bindCache->procs[0];
}
static void RemoveFromBindCache(w,procs)
Widget w;
XtActionProc *procs;
{
TMClassCache classCache;
TMBindCache* bindCachePtr;
TMBindCache bindCache;
XtAppContext app = XtWidgetToApplicationContext (w);
LOCK_PROCESS;
classCache = GetClassCache(w);
bindCachePtr = (TMBindCache *)&classCache->bindCache;
for (bindCache = *bindCachePtr;
*bindCachePtr;
bindCachePtr = &(*bindCachePtr)->next, bindCache = *bindCachePtr)
{
if (&bindCache->procs[0] == procs)
{
if (--bindCache->status.refCount == 0)
{
#ifdef TRACE_TM
TMShortCard j;
Boolean found = False;
TMBindCache *tbl = _XtGlobalTM.bindCacheTbl;
for (j = 0; j < _XtGlobalTM.numBindCache; j++) {
if (found)
tbl[j-1] = tbl[j];
if (tbl[j] == bindCache)
found = True;
}
if (!found)
XtWarning("where's the action ??? ");
else
_XtGlobalTM.numBindCache--;
#endif /* TRACE_TM */
*bindCachePtr = bindCache->next;
bindCache->next = app->free_bindings;
app->free_bindings = bindCache;
}
break;
}
}
UNLOCK_PROCESS;
}
/* ARGSUSED */
static void RemoveAccelerators(widget,closure,data)
Widget widget;
XtPointer closure, data;
{
Widget destination = (Widget)closure;
TMComplexBindProcs bindProcs;
XtTranslations stackXlations[16];
XtTranslations *xlationsList, destXlations;
TMShortCard i, numXlations = 0;
if ((destXlations = destination->core.tm.translations) == NULL) {
XtAppWarningMsg(XtWidgetToApplicationContext(widget),
XtNtranslationError,"nullTable",XtCXtToolkitError,
"Can't remove accelerators from NULL table",
(String *)NULL, (Cardinal *)NULL);
return;
}
xlationsList = (XtTranslations *)
XtStackAlloc((destXlations->numStateTrees * sizeof(XtTranslations)),
stackXlations);
for (i = 0, bindProcs = TMGetComplexBindEntry(destination->core.tm.proc_table, i);
i < destXlations->numStateTrees;
i++, bindProcs++) {
if (bindProcs->widget == widget) {
/*
* if it's being destroyed don't do all the work
*/
if (destination->core.being_destroyed) {
bindProcs->procs = NULL;
}
else
xlationsList[numXlations] = bindProcs->aXlations;
numXlations++;
}
}
if (numXlations == 0)
XtAppWarningMsg(XtWidgetToApplicationContext(widget),
XtNtranslationError,"nullTable",XtCXtToolkitError,
"Tried to remove nonexistent accelerators",
(String *)NULL, (Cardinal *)NULL);
else {
if (!destination->core.being_destroyed)
for (i = 0; i < numXlations; i++)
_XtUnmergeTranslations(destination, xlationsList[i]);
}
XtStackFree((char *)xlationsList, stackXlations);
}
void _XtBindActions(widget, tm)
Widget widget;
XtTM tm;
{
XtTranslations xlations = tm->translations;
TMSimpleStateTree stateTree;
int globalUnbound = 0;
Cardinal i;
TMBindData bindData = (TMBindData)tm->proc_table;
TMSimpleBindProcs simpleBindProcs = NULL;
TMComplexBindProcs complexBindProcs = NULL;
XtActionProc *newProcs;
Widget bindWidget;
if ((xlations == NULL) || widget->core.being_destroyed)
return;
stateTree = (TMSimpleStateTree)xlations->stateTreeTbl[0];
for (i = 0; i < xlations->numStateTrees; i++)
{
stateTree = (TMSimpleStateTree)xlations->stateTreeTbl[i];
if (bindData->simple.isComplex) {
complexBindProcs = TMGetComplexBindEntry(bindData, i);
if (complexBindProcs->widget) {
bindWidget = complexBindProcs->widget;
if (bindWidget->core.destroy_callbacks != NULL)
_XtAddCallbackOnce((InternalCallbackList *)
&bindWidget->core.destroy_callbacks,
RemoveAccelerators,
(XtPointer)widget);
else
_XtAddCallback((InternalCallbackList *)
&bindWidget->core.destroy_callbacks,
RemoveAccelerators,
(XtPointer)widget);
}
else
bindWidget = widget;
}
else {
simpleBindProcs = TMGetSimpleBindEntry(bindData, i);
bindWidget = widget;
}
if ((newProcs =
TryBindCache(bindWidget,(TMStateTree)stateTree)) == NULL)
{
XtActionProc *procs, stackProcs[256];
int localUnbound;
TMBindCacheStatusRec bcStatusRec;
procs = (XtActionProc *)
XtStackAlloc(stateTree->numQuarks * sizeof(XtActionProc),
stackProcs);
XtBZero((XtPointer)procs,
stateTree->numQuarks * sizeof(XtActionProc));
localUnbound = BindProcs(bindWidget,
stateTree,
procs,
&bcStatusRec);
if (localUnbound)
bcStatusRec.notFullyBound = True;
else
bcStatusRec.notFullyBound = False;
newProcs =
EnterBindCache(bindWidget,
stateTree,
procs,
&bcStatusRec);
XtStackFree((XtPointer)procs, (XtPointer)stackProcs);
globalUnbound += localUnbound;
}
if (bindData->simple.isComplex)
complexBindProcs->procs = newProcs;
else
simpleBindProcs->procs = newProcs;
}
if (globalUnbound)
ReportUnboundActions(xlations,
(TMBindData)tm->proc_table);
}
void _XtUnbindActions(widget, xlations, bindData)
Widget widget;
XtTranslations xlations;
TMBindData bindData;
{
Cardinal i;
Widget bindWidget;
XtActionProc *procs;
if ((xlations == NULL) || !XtIsRealized(widget)) return;
for (i = 0; i < xlations->numStateTrees; i++) {
if (bindData->simple.isComplex) {
TMComplexBindProcs complexBindProcs;
complexBindProcs = TMGetComplexBindEntry(bindData, i);
if (complexBindProcs->widget) {
/*
* check for this being an accelerator binding whose
* source is gone ( set by RemoveAccelerators)
*/
if (complexBindProcs->procs == NULL)
continue;
XtRemoveCallback(complexBindProcs->widget,
XtNdestroyCallback,
RemoveAccelerators,
(XtPointer)widget);
bindWidget = complexBindProcs->widget;
}
else
bindWidget = widget;
procs = complexBindProcs->procs;
complexBindProcs->procs = NULL;
}
else {
TMSimpleBindProcs simpleBindProcs;
simpleBindProcs = TMGetSimpleBindEntry(bindData,i);
procs = simpleBindProcs->procs;
simpleBindProcs->procs = NULL;
bindWidget = widget;
}
RemoveFromBindCache(bindWidget, procs);
}
}
#ifdef notdef
void _XtRemoveBindProcsByIndex(w, bindData, ndx)
Widget w;
TMBindData bindData;
TMShortCard ndx;
{
TMShortCard i = ndx;
TMBindProcs bindProcs = (TMBindProcs)&bindData->bindTbl[0];
RemoveFromBindCache(bindProcs->widget ? bindProcs->widget : w,
bindProcs[i].procs);
for (; i < bindData->bindTblSize; i++)
bindProcs[i] = bindProcs[i+1];
}
#endif /* notdef */
/*
* used to free all copied action tables, called from DestroyAppContext
*/
void _XtFreeActions(actions)
ActionList actions;
{
ActionList curr, next;
for (curr = actions; curr;) {
next = curr->next;
XtFree((char *)curr->table);
XtFree((char *)curr);
curr = next;
}
}
void XtAddActions(actions, num_actions)
XtActionList actions;
Cardinal num_actions;
{
XtAppAddActions(_XtDefaultAppContext(), actions, num_actions);
}
void XtAppAddActions(app, actions, num_actions)
XtAppContext app;
XtActionList actions;
Cardinal num_actions;
{
register ActionList rec;
LOCK_APP(app);
rec = XtNew(ActionListRec);
rec->next = app->action_table;
app->action_table = rec;
rec->table = CompileActionTable(actions, num_actions, False, False);
rec->count = num_actions;
UNLOCK_APP(app);
}
void XtGetActionList(widget_class, actions_return, num_actions_return)
WidgetClass widget_class;
XtActionList* actions_return;
Cardinal* num_actions_return;
{
XtActionList list;
CompiledActionTable table;
int i;
*actions_return = NULL;
*num_actions_return = 0;
LOCK_PROCESS;
if (! widget_class->core_class.class_inited) {
UNLOCK_PROCESS;
return;
}
if (! (widget_class->core_class.class_inited & WidgetClassFlag)) {
UNLOCK_PROCESS;
return;
}
*num_actions_return = widget_class->core_class.num_actions;
if (*num_actions_return) {
list = *actions_return = (XtActionList)
__XtMalloc(*num_actions_return * sizeof(XtActionsRec));
table = GetClassActions(widget_class);
for (i= (*num_actions_return); --i >= 0; list++, table++) {
list->string = XrmQuarkToString(table->signature);
list->proc = table->proc;
}
}
UNLOCK_PROCESS;
}
/***********************************************************************
*
* Pop-up and Grab stuff
*
***********************************************************************/
static Widget _XtFindPopup(widget, name)
Widget widget;
String name;
{
register Cardinal i;
register XrmQuark q;
register Widget w;
q = XrmStringToQuark(name);
for (w=widget; w != NULL; w=w->core.parent)
for (i=0; i<w->core.num_popups; i++)
if (w->core.popup_list[i]->core.xrm_name == q)
return w->core.popup_list[i];
return NULL;
}
void XtMenuPopupAction(widget, event, params, num_params)
Widget widget;
XEvent *event;
String *params;
Cardinal *num_params;
{
Boolean spring_loaded;
register Widget popup_shell;
XtAppContext app = XtWidgetToApplicationContext(widget);
LOCK_APP(app);
if (*num_params != 1) {
XtAppWarningMsg(app,
"invalidParameters","xtMenuPopupAction",XtCXtToolkitError,
"MenuPopup wants exactly one argument",
(String *)NULL, (Cardinal *)NULL);
UNLOCK_APP(app);
return;
}
if (event->type == ButtonPress)
spring_loaded = True;
else if (event->type == KeyPress || event->type == EnterNotify)
spring_loaded = False;
else {
XtAppWarningMsg(app,
"invalidPopup","unsupportedOperation",XtCXtToolkitError,
"Pop-up menu creation is only supported on ButtonPress, KeyPress or EnterNotify events.",
(String *)NULL, (Cardinal *)NULL);
UNLOCK_APP(app);
return;
}
popup_shell = _XtFindPopup(widget, params[0]);
if (popup_shell == NULL) {
XtAppWarningMsg(app,
"invalidPopup","xtMenuPopup",XtCXtToolkitError,
"Can't find popup widget \"%s\" in XtMenuPopup",
params, num_params);
UNLOCK_APP(app);
return;
}
if (spring_loaded) _XtPopup(popup_shell, XtGrabExclusive, TRUE);
else _XtPopup(popup_shell, XtGrabNonexclusive, FALSE);
UNLOCK_APP(app);
}
/*ARGSUSED*/
static void _XtMenuPopdownAction(widget, event, params, num_params)
Widget widget;
XEvent *event;
String *params;
Cardinal *num_params;
{
Widget popup_shell;
if (*num_params == 0) {
XtPopdown(widget);
} else if (*num_params == 1) {
popup_shell = _XtFindPopup(widget, params[0]);
if (popup_shell == NULL) {
XtAppWarningMsg(XtWidgetToApplicationContext(widget),
"invalidPopup","xtMenuPopdown",XtCXtToolkitError,
"Can't find popup widget \"%s\" in XtMenuPopdown",
params, num_params);
return;
}
XtPopdown(popup_shell);
} else {
XtAppWarningMsg(XtWidgetToApplicationContext(widget),
"invalidParameters","xtMenuPopdown",XtCXtToolkitError,
"XtMenuPopdown called with num_params != 0 or 1",
(String *)NULL, (Cardinal *)NULL);
}
}
static XtActionsRec RConst tmActions[] = {
{"XtMenuPopup", XtMenuPopupAction},
{"XtMenuPopdown", _XtMenuPopdownAction},
{"MenuPopup", XtMenuPopupAction}, /* old & obsolete */
{"MenuPopdown", _XtMenuPopdownAction}, /* ditto */
#ifndef NO_MIT_HACKS
{"XtDisplayTranslations", _XtDisplayTranslations},
{"XtDisplayAccelerators", _XtDisplayAccelerators},
{"XtDisplayInstalledAccelerators", _XtDisplayInstalledAccelerators},
#endif
};
void _XtPopupInitialize(app)
XtAppContext app;
{
register ActionList rec;
/*
* The _XtGlobalTM.newMatchSemantics flag determines whether
* we support old or new matching
* behavior. This is mainly an issue of whether subsequent lhs will
* get pushed up in the match table if a lhs containing thier initial
* sequence has already been encountered. Currently inited to False;
*/
#ifdef NEW_TM
_XtGlobalTM.newMatchSemantics = True;
#else
_XtGlobalTM.newMatchSemantics = False;
#endif
rec = XtNew(ActionListRec);
rec->next = app->action_table;
app->action_table = rec;
LOCK_PROCESS;
rec->table = CompileActionTable(tmActions, XtNumber(tmActions), False,
True);
rec->count = XtNumber(tmActions);
UNLOCK_PROCESS;
_XtGrabInitialize(app);
}
#if NeedFunctionPrototypes
void XtCallActionProc(
Widget widget,
_Xconst char* action,
XEvent *event,
String *params,
Cardinal num_params
)
#else
void XtCallActionProc(widget, action, event, params, num_params)
Widget widget;
String action;
XEvent *event;
String *params;
Cardinal num_params;
#endif
{
CompiledAction* actionP;
XrmQuark q = XrmStringToQuark(action);
Widget w = widget;
XtAppContext app = XtWidgetToApplicationContext(widget);
ActionList actionList;
Cardinal i;
LOCK_APP(app);
XtCheckSubclass(widget, coreWidgetClass,
"XtCallActionProc first argument is not a subclass of Core");
LOCK_PROCESS;
do {
WidgetClass class = XtClass(w);
do {
if ((actionP = GetClassActions(class)) != NULL)
for (i = 0;
i < class->core_class.num_actions;
i++, actionP++) {
if (actionP->signature == q) {
ActionHook hook = app->action_hook_list;
while (hook != NULL) {
(*hook->proc)( widget,
hook->closure,
(String)action,
event,
params,
&num_params
);
hook= hook->next;
}
(*(actionP->proc))
(widget, event, params, &num_params);
UNLOCK_PROCESS;
UNLOCK_APP(app);
return;
}
}
class = class->core_class.superclass;
} while (class != NULL);
w = XtParent(w);
} while (w != NULL);
UNLOCK_PROCESS;
for (actionList = app->action_table;
actionList != NULL;
actionList = actionList->next) {
for (i = 0, actionP = actionList->table;
i < actionList->count;
i++, actionP++) {
if (actionP->signature == q) {
ActionHook hook = app->action_hook_list;
while (hook != NULL) {
(*hook->proc)( widget,
hook->closure,
(String)action,
event,
params,
&num_params
);
hook= hook->next;
}
(*(actionP->proc))
(widget, event, params, &num_params);
UNLOCK_APP(app);
return;
}
}
}
{
String params[2];
Cardinal num_params = 2;
params[0] = (String)action;
params[1] = XtName(widget);
XtAppWarningMsg(app,
"noActionProc", "xtCallActionProc", XtCXtToolkitError,
"No action proc named \"%s\" is registered for widget \"%s\"",
params, &num_params
);
}
UNLOCK_APP(app);
}
void _XtDoFreeBindings(app)
XtAppContext app;
{
TMBindCache bcp;
while (app->free_bindings) {
bcp = app->free_bindings->next;
XtFree ((char *) app->free_bindings);
app->free_bindings = bcp;
}
}
|