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 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
|
/* $XConsortium: SimpleMenu.c,v 1.44 94/04/17 20:12:45 kaleb Exp $ */
/* MODIFIED FOR N*XTSTEP LOOK */
/* Modifications Copyright (c) 1996 by Alfredo Kojima */
/***********************************************************/
/*
Copyright (c) 1989, 1994 X Consortium
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
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
X CONSORTIUM 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 X Consortium 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 X Consortium.
*/
/* $XFree86: xc/lib/Xaw/SimpleMenu.c,v 3.1.6.3 1998/05/20 05:06:17 dawes Exp $ */
/*
* SimpleMenu.c - Source code file for SimpleMenu widget.
*
* Date: April 3, 1989
*
* By: Chris D. Peterson
* MIT X Consortium
* kit@expo.lcs.mit.edu
*/
#include <stdio.h>
#include <X11/IntrinsicP.h>
#include <X11/StringDefs.h>
#include <X11/neXtaw/XawInit.h>
#include <X11/neXtaw/SimpleMenP.h>
#include <X11/neXtaw/SmeBSB.h>
#include <X11/neXtaw/Cardinals.h>
#include <X11/neXtaw/ThreeDP.h>
#include <X11/neXtaw/Misc.h>
#include <X11/Xmu/Initer.h>
#include <X11/Xmu/CharSet.h>
#include "XawAlloc.h"
#define streq(a, b) ( strcmp((a), (b)) == 0 )
#define offset(field) XtOffsetOf(SimpleMenuRec, simple_menu.field)
static XtResource resources[] = {
/*
* Label Resources.
*/
{XtNlabel, XtCLabel, XtRString, sizeof(String),
offset(label_string), XtRString, NULL},
{XtNlabelClass, XtCLabelClass, XtRPointer, sizeof(WidgetClass),
offset(label_class), XtRImmediate, (XtPointer) NULL},
/*
* Layout Resources.
*/
{XtNrowHeight, XtCRowHeight, XtRDimension, sizeof(Dimension),
offset(row_height), XtRImmediate, (XtPointer) 0},
{XtNtopMargin, XtCVerticalMargins, XtRDimension, sizeof(Dimension),
offset(top_margin), XtRImmediate, (XtPointer) 0},
{XtNbottomMargin, XtCVerticalMargins, XtRDimension, sizeof(Dimension),
offset(bottom_margin), XtRImmediate, (XtPointer) 0},
/*
* Misc. Resources
*/
{ XtNallowShellResize, XtCAllowShellResize, XtRBoolean, sizeof(Boolean),
XtOffsetOf(SimpleMenuRec, shell.allow_shell_resize),
XtRImmediate, (XtPointer) TRUE },
{XtNcursor, XtCCursor, XtRCursor, sizeof(Cursor),
offset(cursor), XtRImmediate, (XtPointer) None},
{XtNmenuOnScreen, XtCMenuOnScreen, XtRBoolean, sizeof(Boolean),
offset(menu_on_screen), XtRImmediate, (XtPointer) TRUE},
{XtNpopupOnEntry, XtCPopupOnEntry, XtRWidget, sizeof(Widget),
offset(popup_entry), XtRWidget, NULL},
{XtNbackingStore, XtCBackingStore, XtRBackingStore, sizeof (int),
offset(backing_store),
XtRImmediate, (XtPointer) (Always + WhenMapped + NotUseful)},
};
#undef offset
static char defaultTranslations[] =
":<EnterWindow>: highlight() \n\
:<LeaveWindow>: unhighlight() \n\
:<BtnMotion>: highlight() \n\
:<BtnUp>: MenuPopdown() notify() unhighlight()";
/*
* Semi Public function definitions.
*/
static void Redisplay(), Realize(), Resize(), ChangeManaged();
static void Initialize(), ClassInitialize(), ClassPartInitialize();
static Boolean SetValues(), SetValuesHook();
static XtGeometryResult GeometryManager();
/*
* Action Routine Definitions
*/
static void Highlight(), Unhighlight(), Notify(), PositionMenuAction();
/*
* Private Function Definitions.
*/
static void MakeSetValuesRequest(), CreateLabel(), Layout();
static void AddPositionAction(), PositionMenu(), ChangeCursorOnGrab();
static Dimension GetMenuWidth(), GetMenuHeight();
static Widget FindMenu();
static SmeObject GetEventEntry();
static void MoveMenu();
static XtActionsRec actionsList[] =
{
{"notify", Notify},
{"highlight", Highlight},
{"unhighlight", Unhighlight},
};
static CompositeClassExtensionRec extension_rec = {
/* next_extension */ NULL,
/* record_type */ NULLQUARK,
/* version */ XtCompositeExtensionVersion,
/* record_size */ sizeof(CompositeClassExtensionRec),
/* accepts_objects */ TRUE,
};
#define superclass (&overrideShellClassRec)
SimpleMenuClassRec simpleMenuClassRec = {
{
/* superclass */ (WidgetClass) superclass,
/* class_name */ "SimpleMenu",
/* size */ sizeof(SimpleMenuRec),
/* class_initialize */ ClassInitialize,
/* class_part_initialize*/ ClassPartInitialize,
/* Class init'ed */ FALSE,
/* initialize */ Initialize,
/* initialize_hook */ NULL,
/* realize */ Realize,
/* actions */ actionsList,
/* num_actions */ XtNumber(actionsList),
/* resources */ resources,
/* resource_count */ XtNumber(resources),
/* xrm_class */ NULLQUARK,
/* compress_motion */ TRUE,
/* compress_exposure */ TRUE,
/* compress_enterleave*/ TRUE,
/* visible_interest */ FALSE,
/* destroy */ NULL,
/* resize */ Resize,
/* expose */ Redisplay,
/* set_values */ SetValues,
/* set_values_hook */ SetValuesHook,
/* set_values_almost */ XtInheritSetValuesAlmost,
/* get_values_hook */ NULL,
/* accept_focus */ NULL,
/* intrinsics version */ XtVersion,
/* callback offsets */ NULL,
/* tm_table */ defaultTranslations,
/* query_geometry */ NULL,
/* display_accelerator*/ NULL,
/* extension */ NULL
},{
/* geometry_manager */ GeometryManager,
/* change_managed */ ChangeManaged,
/* insert_child */ XtInheritInsertChild,
/* delete_child */ XtInheritDeleteChild,
/* extension */ NULL
},{
/* Shell extension */ NULL
},{
/* Override extension */ NULL
},{
/* Simple Menu extension*/ NULL
}
};
WidgetClass simpleMenuWidgetClass = (WidgetClass)&simpleMenuClassRec;
#define ForAllChildren(smw, childP) \
for ( (childP) = (SmeObject *) (smw)->composite.children ; \
(childP) < (SmeObject *) ( (smw)->composite.children + \
(smw)->composite.num_children ) ; \
(childP)++ )
/************************************************************
*
* Semi-Public Functions.
*
************************************************************/
/* Function Name: ClassInitialize
* Description: Class Initialize routine, called only once.
* Arguments: none.
* Returns: none.
*/
static void
ClassInitialize()
{
XawInitializeWidgetSet();
XtAddConverter( XtRString, XtRBackingStore, XmuCvtStringToBackingStore,
(XtConvertArgList)NULL, (Cardinal)0 );
XmuAddInitializer( AddPositionAction, NULL);
}
/* Function Name: ClassInitialize
* Description: Class Part Initialize routine, called for every
* subclass. Makes sure that the subclasses pick up
* the extension record.
* Arguments: wc - the widget class of the subclass.
* Returns: none.
*/
static void
ClassPartInitialize(wc)
WidgetClass wc;
{
SimpleMenuWidgetClass smwc = (SimpleMenuWidgetClass) wc;
/*
* Make sure that our subclass gets the extension rec too.
*/
extension_rec.next_extension = smwc->composite_class.extension;
smwc->composite_class.extension = (XtPointer) &extension_rec;
}
/* Function Name: Initialize
* Description: Initializes the simple menu widget
* Arguments: request - the widget requested by the argument list.
* new - the new widget with both resource and non
* resource values.
* Returns: none.
*/
/* ARGSUSED */
static void
Initialize(request, new, args, num_args)
Widget request, new;
ArgList args;
Cardinal *num_args;
{
SimpleMenuWidget smw = (SimpleMenuWidget) new;
XmuCallInitializers(XtWidgetToApplicationContext(new));
if (smw->simple_menu.label_class == NULL)
smw->simple_menu.label_class = smeBSBObjectClass;
smw->simple_menu.label = NULL;
smw->simple_menu.entry_set = NULL;
smw->simple_menu.recursive_set_values = FALSE;
smw->simple_menu.first_entry = NULL;
smw->simple_menu.current_first = NULL;
smw->simple_menu.first_y = 0;
if (smw->simple_menu.label_string != NULL)
CreateLabel(new);
smw->simple_menu.menu_width = TRUE;
if (smw->core.width == 0) {
smw->simple_menu.menu_width = FALSE;
smw->core.width = GetMenuWidth(new, (Widget)NULL);
}
smw->simple_menu.menu_height = TRUE;
if (smw->core.height == 0) {
smw->simple_menu.menu_height = FALSE;
smw->core.height = GetMenuHeight(new);
}
smw->simple_menu.threeD=XtVaCreateWidget("threeD",threeDWidgetClass,new,
XtNx, 0, XtNy, 0,
XtNwidth, 10, XtNheight, 10, /* dummy */
NULL);
/*
* Add a popup_callback routine for changing the cursor.
*/
XtAddCallback(new, XtNpopupCallback, ChangeCursorOnGrab, (XtPointer)NULL);
}
/* Function Name: Redisplay
* Description: Redisplays the contents of the widget.
* Arguments: w - the simple menu widget.
* event - the X event that caused this redisplay.
* region - the region the needs to be repainted.
* Returns: none.
*/
/* ARGSUSED */
static void
Redisplay(w, event, region)
Widget w;
XEvent * event;
Region region;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
SmeObject * entry;
SmeObjectClass class;
ThreeDWidget tdw = (ThreeDWidget)smw->simple_menu.threeD;
Display *dpy = XtDisplay(w);
Window win = XtWindow(w);
int x,y,xf, max_y;
int new_y;
int s = tdw->threeD.shadow_width;
Boolean can_paint;
if (region == NULL)
XClearWindow(dpy, win);
/*
* Check and Paint each of the entries - including the label.
*/
if (XtIsRealized((Widget)smw)) {
neXtawDrawShadowBox((Widget)smw,tdw,0,0,smw->core.width,
smw->core.height,True);
}
smw->simple_menu.didnt_fit = False;
y=0;
max_y = HeightOfScreen(XtScreen(w))-s;
new_y = -(*(SmeObject *) (smw)->composite.children)->rectangle.y;
can_paint = False;
ForAllChildren(smw, entry) {
RectObjPart old_pos;
int dy=0;
if (!XtIsManaged ( (Widget) *entry)) continue;
if (smw->simple_menu.first_entry==NULL) {
smw->simple_menu.first_entry=entry;
smw->simple_menu.current_first=entry;
}
if (smw->simple_menu.too_tall) {
if (entry==(smw->simple_menu.current_first)) {
new_y = (*entry)->rectangle.y-1;
if (smw->simple_menu.current_first!=smw->simple_menu.first_entry) {
XPoint point[3];
point[0].x = (*entry)->rectangle.width/2;
point[0].y = s+1;
point[1].x = (*entry)->rectangle.width/2-4;
point[1].y = s+8;
point[2].x = (*entry)->rectangle.width/2+4;
point[2].y = s+8;
XFillPolygon(XtDisplay(w), smw->core.window,
tdw->threeD.bot_half_shadow_GC, point, 3, Convex,
CoordModeOrigin);
new_y -= 8;
dy = 8;
}
smw->simple_menu.first_y = new_y;
can_paint = True;
} else if (!can_paint) {
continue;
}
old_pos = (*entry)->rectangle;
(*entry)->rectangle.y -= new_y;
if ((*entry)->rectangle.y+(*entry)->rectangle.height+dy > max_y) {
XPoint point[3];
smw->simple_menu.last_y = (*entry)->rectangle.y;
point[0].x = (*entry)->rectangle.width/2;
point[0].y = max_y-1;
point[1].x = (*entry)->rectangle.width/2-4;
point[1].y = max_y-8;
point[2].x = (*entry)->rectangle.width/2+4;
point[2].y = max_y-8;
XFillPolygon(XtDisplay(w), smw->core.window,
tdw->threeD.bot_half_shadow_GC, point, 3, Convex,
CoordModeOrigin);
smw->simple_menu.didnt_fit = True;
(*entry)->rectangle = old_pos;
break;
}
}
/*
if (region != NULL)
switch(XRectInRegion(region, (int) (*entry)->rectangle.x,
(int) (*entry)->rectangle.y,
(unsigned int) (*entry)->rectangle.width,
(unsigned int) (*entry)->rectangle.height)) {
case RectangleIn:
case RectanglePart:
break;
default:
continue;
}
*/
class = (SmeObjectClass) (*entry)->object.widget_class;
if (class->rect_class.expose != NULL)
(class->rect_class.expose)( (Widget) *entry, NULL, NULL);
if (smw->simple_menu.too_tall)
(*entry)->rectangle = old_pos;
#ifndef NO_MENU_LINES
x = 0;
xf = smw->core.width;
if (y>0) {
XDrawLine(dpy,win,tdw->threeD.top_half_shadow_GC,x,y+3,xf,y+3);
XDrawLine(dpy,win,tdw->threeD.bot_shadow_GC,x,y+1,xf,y+1);
XDrawLine(dpy,win,tdw->threeD.bot_half_shadow_GC,x,y+2,xf,y+2);
}
#endif
y += (*entry)->rectangle.height;
}
}
/* Function Name: Realize
* Description: Realizes the widget.
* Arguments: w - the simple menu widget.
* mask - value mask for the window to create.
* attrs - attributes for the window to create.
* Returns: none
*/
static void
Realize(w, mask, attrs)
Widget w;
XtValueMask * mask;
XSetWindowAttributes * attrs;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
attrs->cursor = smw->simple_menu.cursor;
*mask |= CWCursor;
if ((smw->simple_menu.backing_store == Always) ||
(smw->simple_menu.backing_store == NotUseful) ||
(smw->simple_menu.backing_store == WhenMapped) ) {
*mask |= CWBackingStore;
attrs->backing_store = smw->simple_menu.backing_store;
}
else
*mask &= ~CWBackingStore;
/* check if the menu is too big */
if (smw->core.height>=HeightOfScreen(XtScreen(w))) {
smw->simple_menu.too_tall = True;
smw->core.height = HeightOfScreen(XtScreen(w))-1;
}
(*superclass->core_class.realize) (w, mask, attrs);
}
/* Function Name: Resize
* Description: Handle the menu being resized bigger.
* Arguments: w - the simple menu widget.
* Returns: none.
*/
static void
Resize(w)
Widget w;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
ThreeDWidget tdw = (ThreeDWidget) smw->simple_menu.threeD;
SmeObject * entry;
if ( !XtIsRealized(w) ) return;
ForAllChildren(smw, entry) /* reset width of all entries. */
if (XtIsManaged( (Widget) *entry))
(*entry)->rectangle.width = smw->core.width-2*tdw->threeD.shadow_width;
Redisplay(w, (XEvent *) NULL, (Region) NULL);
}
/* Function Name: SetValues
* Description: Relayout the menu when one of the resources is changed.
* Arguments: current - current state of the widget.
* request - what was requested.
* new - what the widget will become.
* Returns: none
*/
/* ARGSUSED */
static Boolean
SetValues(current, request, new, args, num_args)
Widget current, request, new;
ArgList args;
Cardinal *num_args;
{
SimpleMenuWidget smw_old = (SimpleMenuWidget) current;
SimpleMenuWidget smw_new = (SimpleMenuWidget) new;
Boolean ret_val = FALSE, layout = FALSE;
if (!XtIsRealized(current)) return(FALSE);
if (!smw_new->simple_menu.recursive_set_values) {
if (smw_new->core.width != smw_old->core.width) {
smw_new->simple_menu.menu_width = (smw_new->core.width != 0);
layout = TRUE;
}
if (smw_new->core.height != smw_old->core.height) {
smw_new->simple_menu.menu_height = (smw_new->core.height != 0);
layout = TRUE;
}
}
if (smw_old->simple_menu.cursor != smw_new->simple_menu.cursor)
XDefineCursor(XtDisplay(new),
XtWindow(new), smw_new->simple_menu.cursor);
if (smw_old->simple_menu.label_string !=smw_new->simple_menu.label_string)
if (smw_new->simple_menu.label_string == NULL) /* Destroy. */
XtDestroyWidget((Widget) smw_old->simple_menu.label);
else if (smw_old->simple_menu.label_string == NULL) /* Create. */
CreateLabel(new);
else { /* Change. */
Arg arglist[1];
XtSetArg(arglist[0], XtNlabel, smw_new->simple_menu.label_string);
XtSetValues((Widget) smw_new->simple_menu.label, arglist, ONE);
}
if (smw_old->simple_menu.label_class != smw_new->simple_menu.label_class)
XtAppWarning(XtWidgetToApplicationContext(new),
"No Dynamic class change of the SimpleMenu Label.");
if ((smw_old->simple_menu.top_margin != smw_new->simple_menu.top_margin) ||
(smw_old->simple_menu.bottom_margin !=
smw_new->simple_menu.bottom_margin) /* filler................. */ ) {
layout = TRUE;
ret_val = TRUE;
}
if (layout)
Layout(new, (Dimension *)NULL, (Dimension *)NULL);
return(ret_val);
}
/* Function Name: SetValuesHook
* Description: To handle a special case, this is passed the
* actual arguments.
* Arguments: w - the menu widget.
* arglist - the argument list passed to XtSetValues.
* num_args - the number of args.
* Returns: none
*/
/*
* If the user actually passed a width and height to the widget
* then this MUST be used, rather than our newly calculated width and
* height.
*/
static Boolean
SetValuesHook(w, arglist, num_args)
Widget w;
ArgList arglist;
Cardinal *num_args;
{
Cardinal i;
Dimension width, height;
width = w->core.width;
height = w->core.height;
for ( i = 0 ; i < *num_args ; i++) {
if ( streq(arglist[i].name, XtNwidth) )
width = (Dimension) arglist[i].value;
if ( streq(arglist[i].name, XtNheight) )
height = (Dimension) arglist[i].value;
}
if ((width != w->core.width) || (height != w->core.height))
MakeSetValuesRequest(w, width, height);
return(FALSE);
}
/************************************************************
*
* Geometry Management routines.
*
************************************************************/
/* Function Name: GeometryManager
* Description: This is the SimpleMenu Widget's Geometry Manager.
* Arguments: w - the Menu Entry making the request.
* request - requested new geometry.
* reply - the allowed geometry.
* Returns: XtGeometry{Yes, No, Almost}.
*/
static XtGeometryResult
GeometryManager(w, request, reply)
Widget w;
XtWidgetGeometry * request, * reply;
{
SimpleMenuWidget smw = (SimpleMenuWidget) XtParent(w);
SmeObject entry = (SmeObject) w;
XtGeometryMask mode = request->request_mode;
XtGeometryResult answer;
Dimension old_height, old_width;
if ( !(mode & CWWidth) && !(mode & CWHeight) )
return(XtGeometryNo);
reply->width = request->width;
reply->height = request->height;
old_width = entry->rectangle.width;
old_height = entry->rectangle.height;
Layout(w, &(reply->width), &(reply->height) );
/*
* Since we are an override shell and have no parent there is no one to
* ask to see if this geom change is okay, so I am just going to assume
* we can do whatever we want. If you subclass be very careful with this
* assumption, it could bite you.
*
* Chris D. Peterson - Sept. 1989.
*/
if ( (reply->width == request->width) &&
(reply->height == request->height) ) {
if ( mode & XtCWQueryOnly ) { /* Actually perform the layout. */
entry->rectangle.width = old_width;
entry->rectangle.height = old_height;
}
else {
Layout(( Widget) smw, (Dimension *)NULL, (Dimension *)NULL);
}
answer = XtGeometryDone;
}
else {
entry->rectangle.width = old_width;
entry->rectangle.height = old_height;
if ( ((reply->width == request->width) && !(mode & CWHeight)) ||
((reply->height == request->height) && !(mode & CWWidth)) ||
((reply->width == request->width) &&
(reply->height == request->height)) )
answer = XtGeometryNo;
else {
answer = XtGeometryAlmost;
reply->request_mode = 0;
if (reply->width != request->width)
reply->request_mode |= CWWidth;
if (reply->height != request->height)
reply->request_mode |= CWHeight;
}
}
return(answer);
}
/* Function Name: ChangeManaged
* Description: called whenever a new child is managed.
* Arguments: w - the simple menu widget.
* Returns: none.
*/
static void
ChangeManaged(w)
Widget w;
{
/*?*/
SimpleMenuWidget smw = (SimpleMenuWidget)w;
Layout(w, (Dimension *)NULL, (Dimension *)NULL);
}
/************************************************************
*
* Global Action Routines.
*
* These actions routines will be added to the application's
* global action list.
*
************************************************************/
/* Function Name: PositionMenuAction
* Description: Positions the simple menu widget.
* Arguments: w - a widget (no the simple menu widget.)
* event - the event that caused this action.
* params, num_params - parameters passed to the routine.
* we expect the name of the menu here.
* Returns: none
*/
/* ARGSUSED */
static void
PositionMenuAction(w, event, params, num_params)
Widget w;
XEvent * event;
String * params;
Cardinal * num_params;
{
Widget menu;
XPoint loc;
if (*num_params != 1) {
char error_buf[BUFSIZ];
(void) sprintf(error_buf, "%s %s",
"Xaw - SimpleMenuWidget: position menu action expects only one",
"parameter which is the name of the menu.");
XtAppWarning(XtWidgetToApplicationContext(w), error_buf);
return;
}
if ( (menu = FindMenu(w, params[0])) == NULL) {
char error_buf[BUFSIZ];
char *err1 = "Xaw - SimpleMenuWidget: could not find menu named: ";
char *perr;
int len;
len = strlen(err1) + strlen(params[0]) + 2 + 1;
perr = XtStackAlloc(len, error_buf);
if (perr == NULL)
return;
sprintf(perr, "%s'%s'", err1, params[0]);
XtAppWarning(XtWidgetToApplicationContext(w), perr);
XtStackFree(perr, error_buf);
return;
}
switch (event->type) {
case ButtonPress:
case ButtonRelease:
loc.x = event->xbutton.x_root;
loc.y = event->xbutton.y_root;
PositionMenu(menu, &loc);
break;
case EnterNotify:
case LeaveNotify:
loc.x = event->xcrossing.x_root;
loc.y = event->xcrossing.y_root;
PositionMenu(menu, &loc);
break;
case MotionNotify:
loc.x = event->xmotion.x_root;
loc.y = event->xmotion.y_root;
PositionMenu(menu, &loc);
break;
default:
PositionMenu(menu, (XPoint *)NULL);
break;
}
}
/************************************************************
*
* Widget Action Routines.
*
************************************************************/
/* Function Name: Unhighlight
* Description: Unhighlights current entry.
* Arguments: w - the simple menu widget.
* event - the event that caused this action.
* params, num_params - ** NOT USED **
* Returns: none
*/
/* ARGSUSED */
static void
Unhighlight(w, event, params, num_params)
Widget w;
XEvent * event;
String * params;
Cardinal * num_params;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
SmeObject entry = smw->simple_menu.entry_set;
SmeObjectClass class;
int old_pos;
if ( entry == NULL) return;
/* backup original position of the entry */
old_pos = entry->rectangle.y;
entry->rectangle.y -= smw->simple_menu.first_y;
smw->simple_menu.entry_set = NULL;
class = (SmeObjectClass) entry->object.widget_class;
(class->sme_class.unhighlight) ( (Widget) entry);
entry->rectangle.y = old_pos;
}
/* Function Name: Highlight
* Description: Highlights current entry.
* Arguments: w - the simple menu widget.
* event - the event that caused this action.
* params, num_params - ** NOT USED **
* Returns: none
*/
/* ARGSUSED */
static void
Highlight(w, event, params, num_params)
Widget w;
XEvent * event;
String * params;
Cardinal * num_params;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
SmeObject entry;
SmeObjectClass class;
int old_pos;
if ( !XtIsSensitive(w) ) return;
entry = GetEventEntry(w, event);
if (entry == smw->simple_menu.entry_set) return;
Unhighlight(w, event, params, num_params);
if (entry == NULL) return;
if ( !XtIsSensitive( (Widget) entry)) {
smw->simple_menu.entry_set = NULL;
return;
}
/* backup original position of the entry */
old_pos = entry->rectangle.y;
entry->rectangle.y -= smw->simple_menu.first_y;
smw->simple_menu.entry_set = entry;
class = (SmeObjectClass) entry->object.widget_class;
(class->sme_class.highlight) ( (Widget) entry);
entry->rectangle.y = old_pos;
}
/* Function Name: Notify
* Description: Notify user of current entry.
* Arguments: w - the simple menu widget.
* event - the event that caused this action.
* params, num_params - ** NOT USED **
* Returns: none
*/
/* ARGSUSED */
static void
Notify(w, event, params, num_params)
Widget w;
XEvent * event;
String * params;
Cardinal * num_params;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
SmeObject entry = smw->simple_menu.entry_set;
SmeObjectClass class;
if ( (entry == NULL) || !XtIsSensitive((Widget) entry ) ) return;
class = (SmeObjectClass) entry->object.widget_class;
(class->sme_class.notify)( (Widget) entry );
}
/************************************************************
*
* Public Functions.
*
************************************************************/
/* Function Name: XawSimpleMenuAddGlobalActions
* Description: adds the global actions to the simple menu widget.
* Arguments: app_con - the appcontext.
* Returns: none.
*/
void
#if NeedFunctionPrototypes
XawSimpleMenuAddGlobalActions(XtAppContext app_con)
#else
XawSimpleMenuAddGlobalActions(app_con)
XtAppContext app_con;
#endif
{
XtInitializeWidgetClass(simpleMenuWidgetClass);
XmuCallInitializers( app_con );
}
/* Function Name: XawSimpleMenuGetActiveEntry
* Description: Gets the currently active (set) entry.
* Arguments: w - the smw widget.
* Returns: the currently set entry or NULL if none is set.
*/
Widget
#if NeedFunctionPrototypes
XawSimpleMenuGetActiveEntry(Widget w)
#else
XawSimpleMenuGetActiveEntry(w)
Widget w;
#endif
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
return( (Widget) smw->simple_menu.entry_set);
}
/* Function Name: XawSimpleMenuClearActiveEntry
* Description: Unsets the currently active (set) entry.
* Arguments: w - the smw widget.
* Returns: none.
*/
void
#if NeedFunctionPrototypes
XawSimpleMenuClearActiveEntry(Widget w)
#else
XawSimpleMenuClearActiveEntry(w)
Widget w;
#endif
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
smw->simple_menu.entry_set = NULL;
}
/************************************************************
*
* Private Functions.
*
************************************************************/
/* Function Name: CreateLabel
* Description: Creates a the menu label.
* Arguments: w - the smw widget.
* Returns: none.
*
* Creates the label object and makes sure it is the first child in
* in the list.
*/
static void
CreateLabel(w)
Widget w;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
Widget * child, * next_child;
int i;
Arg args[2];
if ( (smw->simple_menu.label_string == NULL) ||
(smw->simple_menu.label != NULL) ) {
char error_buf[BUFSIZ];
(void) sprintf(error_buf, "Xaw Simple Menu Widget: %s or %s, %s",
"label string is NULL", "label already exists",
"no label is being created.");
XtAppWarning(XtWidgetToApplicationContext(w), error_buf);
return;
}
XtSetArg(args[0], XtNlabel, smw->simple_menu.label_string);
XtSetArg(args[1], XtNjustify, XtJustifyLeft);
smw->simple_menu.label = (SmeObject)
XtCreateManagedWidget("menuLabel",
smw->simple_menu.label_class, w,
args, TWO);
next_child = NULL;
for (child = smw->composite.children + smw->composite.num_children,
i = smw->composite.num_children ; i > 0 ; i--, child--) {
if (next_child != NULL)
*next_child = *child;
next_child = child;
}
*child = (Widget) smw->simple_menu.label;
}
/* Function Name: Layout
* Description: lays the menu entries out all nice and neat.
* Arguments: w - See below (+++)
* width_ret, height_ret - The returned width and
* height values.
* Returns: none.
*
* if width == NULL || height == NULL then it assumes the you do not care
* about the return values, and just want a relayout.
*
* if this is not the case then it will set width_ret and height_ret
* to be width and height that the child would get if it were layed out
* at this time.
*
* +++ "w" can be the simple menu widget or any of its object children.
*/
static void
Layout(w, width_ret, height_ret)
Widget w;
Dimension *width_ret, *height_ret;
{
SmeObject current_entry, *entry;
SimpleMenuWidget smw;
Dimension width, height;
Boolean do_layout = ((height_ret == NULL) || (width_ret == NULL));
Boolean allow_change_size;
ThreeDWidget tdw;
Dimension s;
height = 0;
if ( XtIsSubclass(w, simpleMenuWidgetClass) ) {
smw = (SimpleMenuWidget) w;
current_entry = NULL;
}
else {
smw = (SimpleMenuWidget) XtParent(w);
current_entry = (SmeObject) w;
}
tdw = (ThreeDWidget)smw->simple_menu.threeD;
s = tdw->threeD.shadow_width;
allow_change_size = (!XtIsRealized((Widget)smw) ||
(smw->shell.allow_shell_resize));
if ( smw->simple_menu.menu_height )
height = smw->core.height;
else
if (do_layout) {
height = smw->simple_menu.top_margin+s;
ForAllChildren(smw, entry) {
if (!XtIsManaged( (Widget) *entry)) continue;
if ( (smw->simple_menu.row_height != 0) &&
(*entry != smw->simple_menu.label) )
(*entry)->rectangle.height = smw->simple_menu.row_height;
(*entry)->rectangle.y = height;
(*entry)->rectangle.x = s;
height += (*entry)->rectangle.height;
}
#ifdef NO_MENU_LINES
height += smw->simple_menu.bottom_margin;
#else
height += smw->simple_menu.bottom_margin+s;
#endif
}
else {
if ((smw->simple_menu.row_height != 0) &&
(current_entry != smw->simple_menu.label) )
height = smw->simple_menu.row_height;
}
if (smw->simple_menu.menu_width)
width = smw->core.width;
else if ( allow_change_size )
width = GetMenuWidth((Widget) smw, (Widget) current_entry) + 2*s;
else
width = smw->core.width;
if (do_layout) {
ForAllChildren(smw, entry) {
if (XtIsManaged( (Widget) *entry))
(*entry)->rectangle.width = width - 2*s;
}
if (allow_change_size)
MakeSetValuesRequest((Widget) smw, width, height);
}
else {
*width_ret = width;
if (height != 0)
*height_ret = height;
}
}
/* Function Name: AddPositionAction
* Description: Adds the XawPositionSimpleMenu action to the global
* action list for this appcon.
* Arguments: app_con - the application context for this app.
* data - NOT USED.
* Returns: none.
*/
/* ARGSUSED */
static void
AddPositionAction(app_con, data)
XtAppContext app_con;
XPointer data;
{
static XtActionsRec pos_action[] = {
{ "XawPositionSimpleMenu", PositionMenuAction },
};
XtAppAddActions(app_con, pos_action, XtNumber(pos_action));
}
/* Function Name: FindMenu
* Description: Find the menu give a name and reference widget.
* Arguments: widget - reference widget.
* name - the menu widget's name.
* Returns: the menu widget or NULL.
*/
static Widget
FindMenu(widget, name)
Widget widget;
String name;
{
Widget w, menu;
for ( w = widget ; w != NULL ; w = XtParent(w) )
if ( (menu = XtNameToWidget(w, name)) != NULL )
return(menu);
return(NULL);
}
/* Function Name: PositionMenu
* Description: Places the menu
* Arguments: w - the simple menu widget.
* location - a pointer the the position or NULL.
* Returns: none.
*/
static void
PositionMenu(w, location)
Widget w;
XPoint * location;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
SmeObject entry;
XPoint t_point;
if (location == NULL) {
Window junk1, junk2;
int root_x, root_y, junkX, junkY;
unsigned int junkM;
location = &t_point;
if (XQueryPointer(XtDisplay(w), XtWindow(w), &junk1, &junk2,
&root_x, &root_y, &junkX, &junkY, &junkM) == FALSE) {
char error_buf[BUFSIZ];
(void) sprintf(error_buf, "%s %s", "Xaw Simple Menu Widget:",
"Could not find location of mouse pointer");
XtAppWarning(XtWidgetToApplicationContext(w), error_buf);
return;
}
location->x = (short) root_x;
location->y = (short) root_y;
}
/*
* The width will not be correct unless it is realized.
*/
XtRealizeWidget(w);
location->x -= (Position) w->core.width/2;
if (smw->simple_menu.popup_entry == NULL)
entry = smw->simple_menu.label;
else
entry = smw->simple_menu.popup_entry;
if (entry != NULL)
location->y -= entry->rectangle.y + entry->rectangle.height/2;
MoveMenu(w, (Position) location->x, (Position) location->y);
}
/* Function Name: MoveMenu
* Description: Actually moves the menu, may force it to
* to be fully visable if menu_on_screen is TRUE.
* Arguments: w - the simple menu widget.
* x, y - the current location of the widget.
* Returns: none
*/
static void
MoveMenu(w, x, y)
Widget w;
Position x, y;
{
Arg arglist[2];
Cardinal num_args = 0;
SimpleMenuWidget smw = (SimpleMenuWidget) w;
if (smw->simple_menu.menu_on_screen) {
int width = w->core.width + 2 * w->core.border_width;
int height = w->core.height + 2 * w->core.border_width;
if (x >= 0) {
int scr_width = WidthOfScreen(XtScreen(w));
if (x + width > scr_width)
x = scr_width - width;
}
if (x < 0)
x = 0;
if (y >= 0) {
int scr_height = HeightOfScreen(XtScreen(w));
if (y + height > scr_height)
y = scr_height - height;
}
if (y < 0)
y = 0;
}
XtSetArg(arglist[num_args], XtNx, x); num_args++;
XtSetArg(arglist[num_args], XtNy, y); num_args++;
XtSetValues(w, arglist, num_args);
}
/* Function Name: ChangeCursorOnGrab
* Description: Changes the cursor on the active grab to the one
* specified in out resource list.
* Arguments: w - the widget.
* junk, garbage - ** NOT USED **.
* Returns: None.
*/
/* ARGSUSED */
static void
ChangeCursorOnGrab(w, junk, garbage)
Widget w;
XtPointer junk, garbage;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
/*
* The event mask here is what is currently in the MIT implementation.
* There really needs to be a way to get the value of the mask out
* of the toolkit (CDP 5/26/89).
*/
XChangeActivePointerGrab(XtDisplay(w), ButtonPressMask|ButtonReleaseMask,
smw->simple_menu.cursor,
XtLastTimestampProcessed(XtDisplay(w)));
}
/* Function Name: MakeSetValuesRequest
* Description: Makes a (possibly recursive) call to SetValues,
* I take great pains to not go into an infinite loop.
* Arguments: w - the simple menu widget.
* width, height - the size of the ask for.
* Returns: none
*/
static void
MakeSetValuesRequest(w, width, height)
Widget w;
Dimension width, height;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
Arg arglist[2];
Cardinal num_args = (Cardinal) 0;
if ( !smw->simple_menu.recursive_set_values ) {
if ( (smw->core.width != width) || (smw->core.height != height) ) {
smw->simple_menu.recursive_set_values = TRUE;
XtSetArg(arglist[num_args], XtNwidth, width); num_args++;
XtSetArg(arglist[num_args], XtNheight, height); num_args++;
XtSetValues(w, arglist, num_args);
}
else if (XtIsRealized( (Widget) smw))
Redisplay((Widget) smw, (XEvent *) NULL, (Region) NULL);
}
smw->simple_menu.recursive_set_values = FALSE;
}
/* Function Name: GetMenuWidth
* Description: Sets the length of the widest entry in pixels.
* Arguments: w - the simple menu widget.
* Returns: width of menu.
*/
static Dimension
GetMenuWidth(w, w_ent)
Widget w, w_ent;
{
SmeObject cur_entry = (SmeObject) w_ent;
SimpleMenuWidget smw = (SimpleMenuWidget) w;
Dimension width, widest = (Dimension) 0;
SmeObject * entry;
if ( smw->simple_menu.menu_width )
return(smw->core.width);
ForAllChildren(smw, entry) {
XtWidgetGeometry preferred;
if (!XtIsManaged( (Widget) *entry)) continue;
if (*entry != cur_entry) {
XtQueryGeometry((Widget) *entry, (XtWidgetGeometry *)NULL, &preferred);
if (preferred.request_mode & CWWidth)
width = preferred.width;
else
width = (*entry)->rectangle.width;
}
else
width = (*entry)->rectangle.width;
if ( width > widest )
widest = width;
}
return(widest);
}
/* Function Name: GetMenuHeight
* Description: Sets the length of the widest entry in pixels.
* Arguments: w - the simple menu widget.
* Returns: width of menu.
*/
static Dimension
GetMenuHeight(w)
Widget w;
{
SimpleMenuWidget smw = (SimpleMenuWidget) w;
SmeObject * entry;
Dimension height;
if (smw->simple_menu.menu_height)
return(smw->core.height);
height = smw->simple_menu.top_margin + smw->simple_menu.bottom_margin;
if (smw->simple_menu.row_height == 0) {
ForAllChildren(smw, entry)
if (XtIsManaged ((Widget) *entry))
height += (*entry)->rectangle.height;
} else
height += smw->simple_menu.row_height * smw->composite.num_children;
return(height);
}
/* Function Name: GetEventEntry
* Description: Gets an entry given an event that has X and Y coords.
* Arguments: w - the simple menu widget.
* event - the event.
* Returns: the entry that this point is in.
*/
static SmeObject
GetEventEntry(w, event)
Widget w;
XEvent * event;
{
Position x_loc = 0, y_loc = 0;
SimpleMenuWidget smw = (SimpleMenuWidget) w;
SmeObject * entry;
XPoint pos;
int s = ((ThreeDWidget)smw->simple_menu.threeD)->threeD.shadow_width;
switch (event->type) {
case MotionNotify:
x_loc = event->xmotion.x;
y_loc = event->xmotion.y;
pos.y = event->xmotion.y_root;
break;
case EnterNotify:
case LeaveNotify:
x_loc = event->xcrossing.x;
y_loc = event->xcrossing.y;
pos.y = event->xcrossing.y_root;
break;
case ButtonPress:
case ButtonRelease:
x_loc = event->xbutton.x;
y_loc = event->xbutton.y;
pos.y = event->xbutton.y_root;
break;
default:
XtAppError(XtWidgetToApplicationContext(w),
"Unknown event type in GetEventEntry().");
break;
}
if ( (x_loc < 0) || (x_loc >= (int)smw->core.width) || (y_loc < 0) ||
(y_loc >= (int)smw->core.height) )
return(NULL);
if (smw->simple_menu.too_tall) {
if (pos.y >= smw->simple_menu.last_y && smw->simple_menu.didnt_fit) {
smw->simple_menu.current_first++;
Unhighlight(w, NULL, NULL, 0);
Redisplay(w, (XEvent *) NULL, (Region) NULL);
return NULL;/* *&* */
} else if ((pos.y <= s+8)
&& (smw->simple_menu.first_entry!=smw->simple_menu.current_first)) {
smw->simple_menu.current_first--;
Unhighlight(w, NULL, NULL, 0);
Redisplay(w, (XEvent *) NULL, (Region) NULL);
return NULL;
}
}
ForAllChildren(smw, entry) {
int tmp_y;
if (!XtIsManaged ((Widget) *entry)) continue;
tmp_y = (*entry)->rectangle.y - smw->simple_menu.first_y;
if ( (tmp_y < y_loc) &&
(tmp_y + (int) (*entry)->rectangle.height > y_loc) ) {
if ( *entry == smw->simple_menu.label )
return(NULL); /* cannot select the label. */
else {
return(*entry);
}
}
}
return(NULL);
}
|