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 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
|
/*
* This file is part of the XForms library package.
*
* XForms is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1, or
* (at your option) any later version.
*
* XForms is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with XForms. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file flresource.c
*
* This file is part of the XForms library package.
* Copyright (c) 1996-2002 T.C. Zhao
* All rights reserved.
*
* Handle XResources. Only rudimetry support is implemented. However,
* using this minimum implementation, more powerful and application
* specific resources can be developed easily.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "include/forms.h"
#include "flinternal.h"
#include "private/flsnprintf.h"
#include <X11/Xresource.h>
#include <ctype.h>
#include <sys/types.h>
#if 0
#include <locale.h>
#endif
#ifdef FL_WIN32
#include <X11/Xw32defs.h>
#endif
FLI_WM_STUFF fli_wmstuff; /* also used in win.c */
static XrmDatabase fldatabase; /* final merged database */
static XrmDatabase cmddb; /* command line database */
static char *fl_app_name,
*fl_app_class,
*fl_ori_app_name;
static void fli_init_resources( void );
static void fli_set_debug_level( int );
/* Command line options */
static XrmOptionDescRec copt[ ] =
{
{ "-fldebug", "*fldebug", XrmoptionSepArg, ( caddr_t ) "0" },
{ "-flversion", "*flversion", XrmoptionNoArg, ( caddr_t ) "1" },
{ "-flhelp", "*flhelp", XrmoptionNoArg, ( caddr_t ) "1" },
{ "-name", ".name", XrmoptionSepArg, ( caddr_t ) 0 },
{ "-display", ".display", XrmoptionSepArg, ( caddr_t ) 0 },
{ "-sync", "*sync", XrmoptionNoArg, ( caddr_t ) "1" },
{ "-depth", "*depth", XrmoptionSepArg, ( caddr_t ) 0 },
{ "-visual", "*visual", XrmoptionSepArg, ( caddr_t ) 0 },
{ "-private", "*privateColormap", XrmoptionNoArg, ( caddr_t ) "1" },
{ "-shared", "*sharedColormap", XrmoptionNoArg, ( caddr_t ) "1" },
{ "-standard", "*standardColormap", XrmoptionNoArg, ( caddr_t ) "1" },
{ "-stdcmap", "*standardColormap", XrmoptionNoArg, ( caddr_t ) "1" },
{ "-double", "*doubleBuffer", XrmoptionNoArg, ( caddr_t ) "1" },
{ "-bw", "*borderWidth", XrmoptionSepArg, ( caddr_t ) 0 },
{ "-vid", "*visualID", XrmoptionSepArg, ( caddr_t ) 0 },
#ifdef DO_GAMMA_CORRECTION
{ "-rgamma", "*rgamma", XrmoptionSepArg, ( caddr_t ) 0 },
{ "-bgamma", "*bgamma", XrmoptionSepArg, ( caddr_t ) 0 },
{ "-ggamma", "*ggamma", XrmoptionSepArg, ( caddr_t ) 0 },
#endif
{ "-bs", "*backingStore", XrmoptionNoArg, ( caddr_t ) "0" }
};
#define Ncopt ( sizeof copt / sizeof *copt )
/* Other resources */
#define PV( a ) &( fli_cntl.a )
#define PS( a ) ( fli_cntl.a )
#define NS( a ) #a
/* xform and XForm will be generated on the fly */
typedef char Bop[ 8 ]; /* Boolean default */
typedef char Iop[ 8 ]; /* Integer default */
static Bop OpPrivateMap,
OpSharedMap,
OpStandardMap,
OpDouble;
static Bop OpSync,
OpULW = "1";
static Iop OpDebug,
OpDepth,
OpULT = "-1";
static char OpBS[ 12 ] = "1"; /* whenmapped */
static char OpSafe[ 12 ];
static char OpSCBT[ 16 ] = "thin";
static char OpBLsize[ 20 ] = NS( FL_DEFAULT_SIZE );
static char OpMLsize[ 20 ] = NS( FL_DEFAULT_SIZE );
static char OpBrFsize[ 20 ] = NS( FL_DEFAULT_SIZE );
static char OpChFsize[ 20 ] = NS( FL_DEFAULT_SIZE );
static char OpSLsize[ 20 ] = NS( FL_DEFAULT_SIZE );
static char OpLLsize[ 20 ] = NS( FL_DEFAULT_SIZE );
static char OpILsize[ 20 ] = NS( FL_DEFAULT_SIZE );
static char OpIBW[ 20 ] = NS( FL_BOUND_WIDTH );
static char OpPsize[ 20 ] = NS( FL_DEFAULT_SIZE );
static char OpVisualID[ 20 ] = "0";
#ifdef DO_GAMMA_CORRECTION
static char OpRgamma[ 12 ] = "1";
static char OpGgamma[ 12 ] = "1";
static char OpBgamma[ 12 ] = "1";
#endif
static char OpCoordUnit[ 32 ];
static FLI_VN_PAIR vn_coordunit[ ] =
{
{ FL_COORD_PIXEL, "pixel" },
{ FL_COORD_MM, "mm" },
{ FL_COORD_POINT, "point" },
{ FL_COORD_centiPOINT, "centipoint" },
{ FL_COORD_centiPOINT, "cp" },
{ FL_COORD_centiMM, "centimm" },
{ FL_COORD_centiMM, "cmm" },
{ -1, "Invalid" },
{ -1, NULL }
};
#define SetR( name, rclass, type, deft, buflen ) \
{ #name, rclass, type, &fli_cntl.name, deft, buflen }
static FL_resource internal_resources[ ] =
{
SetR( debug, "Debug", FL_INT, OpDebug, 0 ),
SetR( sync, "Sync", FL_BOOL, OpSync, 0 ),
#ifdef DO_GAMMA_CORRECTION
SetR( rgamma, "Gamma", FL_FLOAT, OpRgamma, 0 ),
SetR( ggamma, "Gamma", FL_FLOAT, OpGgamma, 0 ),
SetR( bgamma, "Gamma", FL_FLOAT, OpBgamma, 0 ),
#endif
SetR( depth, "Depth", FL_INT, OpDepth, 0 ),
{ "visual", "Visual", FL_STRING, PS( vname ), PS( vname ), 20 },
{ "scrollbarType", "ScrollbarType", FL_STRING, OpSCBT, OpSCBT, 16 },
SetR( doubleBuffer, "DoubleBuffer", FL_BOOL, OpDouble, 0 ),
SetR( ulThickness, "ULThickness", FL_INT, OpULT, 0 ),
SetR( privateColormap, "PrivateColormap", FL_BOOL, OpPrivateMap, 0 ),
SetR( sharedColormap, "SharedColormap", FL_BOOL, OpSharedMap, 0 ),
SetR( standardColormap, "StandardColormap", FL_BOOL, OpStandardMap, 0 ),
SetR( buttonFontSize, "FontSize", FL_INT, OpBLsize, 0 ),
SetR( menuFontSize, "FontSize", FL_INT, OpMLsize, 0 ),
SetR( choiceFontSize, "FontSize", FL_INT, OpChFsize, 0 ),
SetR( browserFontSize, "FontSize", FL_INT, OpBrFsize, 0 ),
SetR( labelFontSize, "FontSize", FL_INT, OpLLsize, 0 ),
SetR( sliderLabelSize, "FontSize", FL_INT, OpSLsize, 0 ),
SetR( inputLabelSize, "FontSize", FL_INT, OpILsize, 0 ),
SetR( pupFontSize, "PupFontSize", FL_INT, OpPsize, 0 ),
SetR( borderWidth, "BorderWidth", FL_INT, OpIBW, 0 ),
SetR( ulPropWidth, "ULWidth", FL_BOOL, OpULW, 0 ),
SetR( backingStore, "BackingStore", FL_INT, OpBS, 0 ),
SetR( safe, "Safe", FL_INT, OpSafe, 0 ),
{ "coordUnit", "CoordUnit", FL_STRING, OpCoordUnit, OpCoordUnit, 32 },
{ "visualID", "VisualID", FL_LONG, &fli_requested_vid, OpVisualID, 0 }
};
#define Niopt ( sizeof internal_resources / sizeof *internal_resources )
/* Program can set its own default, overriding XForms default */
#define SetMember( a ) fli_cntl.a = cntl->a
/***************************************
***************************************/
void
fl_set_defaults( unsigned long mask,
FL_IOPT * cntl )
{
if ( mask & FL_PDPrivateMap )
{
SetMember( privateColormap );
sprintf( OpPrivateMap, "%d", cntl->privateColormap != 0 );
}
if ( mask & FL_PDSharedMap )
{
SetMember( sharedColormap );
sprintf( OpSharedMap, "%d", cntl->sharedColormap != 0 );
}
if ( mask & FL_PDStandardMap )
{
SetMember( standardColormap );
sprintf( OpStandardMap, "%d", cntl->standardColormap != 0 );
}
if ( mask & FL_PDDouble )
{
SetMember( doubleBuffer );
sprintf( OpDouble, "%d", cntl->doubleBuffer != 0 );
}
if ( mask & FL_PDDepth )
{
SetMember( depth );
sprintf( OpDepth, "%d", cntl->depth );
}
if ( mask & FL_PDVisual )
{
SetMember( vclass );
strcpy( fli_cntl.vname, fli_vclass_name( cntl->vclass ) );
}
if ( mask & FL_PDButtonFontSize )
{
SetMember( buttonFontSize );
sprintf( OpBLsize, "%d", cntl->buttonFontSize );
}
if ( mask & FL_PDBrowserFontSize )
{
SetMember( browserFontSize );
sprintf( OpBrFsize, "%d", cntl->browserFontSize );
}
if ( mask & FL_PDMenuFontSize )
{
SetMember( menuFontSize );
sprintf( OpMLsize, "%d", cntl->menuFontSize );
}
if ( mask & FL_PDChoiceFontSize )
{
SetMember( choiceFontSize );
sprintf( OpChFsize, "%d", cntl->choiceFontSize );
}
if ( mask & FL_PDSliderFontSize )
{
SetMember( sliderFontSize );
sprintf( OpSLsize, "%d", cntl->sliderFontSize );
}
if ( mask & FL_PDInputFontSize )
{
SetMember( inputFontSize );
sprintf( OpILsize, "%d", cntl->inputFontSize );
}
if ( mask & FL_PDLabelFontSize )
{
SetMember( labelFontSize );
sprintf( OpLLsize, "%d", cntl->labelFontSize );
}
if ( mask & FL_PDBorderWidth )
fl_set_border_width( cntl->borderWidth );
if ( mask & FL_PDScrollbarType )
fl_set_scrollbar_type( cntl->scrollbarType );
if ( mask & FL_PDPupFontSize )
{
SetMember( pupFontSize );
sprintf( OpPsize, "%d", cntl->pupFontSize );
}
if ( mask & FL_PDSafe )
{
SetMember( safe );
sprintf( OpSafe, "%d", cntl->safe );
}
if ( mask & FL_PDBS )
{
SetMember( backingStore );
sprintf( OpBS, "%d", cntl->backingStore );
}
if ( mask & FL_PDCoordUnit )
fl_set_coordunit( cntl->coordUnit );
if ( mask & FL_PDDebug )
fli_set_debug_level( cntl->debug );
}
/***************************************
* Convenience functions
***************************************/
void
fl_set_coordunit( int u )
{
const char * cu = fli_get_vn_name( vn_coordunit, u );
if ( cu == NULL )
{
M_err( "fl_set_coordunit",
"Invald coord unit, defaulting to \"pixel\"" );
u = FL_COORD_PIXEL;
cu = "pixel";
}
fli_cntl.coordUnit = u;
strcpy( OpCoordUnit, cu );
}
/***************************************
***************************************/
void
fl_set_border_width( int bw )
{
fli_cntl.borderWidth = bw;
sprintf( OpIBW, "%d", bw );
}
/***************************************
***************************************/
void
fl_set_scrollbar_type( int t )
{
fli_cntl.scrollbarType = t;
if ( t == FL_NORMAL_SCROLLBAR )
strcpy( OpSCBT, "normal" );
else if ( t == FL_NICE_SCROLLBAR )
strcpy( OpSCBT, "nice" );
else if ( t == FL_PLAIN_SCROLLBAR )
strcpy( OpSCBT, "plain" );
else
strcpy( OpSCBT, "thin" );
}
/***************************************
***************************************/
void
fl_set_visualID( long id )
{
fli_requested_vid = id;
sprintf( OpVisualID, "0x%lx", id );
}
/***************************************
***************************************/
int
fl_get_border_width( void )
{
return fli_cntl.borderWidth;
}
/***************************************
***************************************/
int
fl_get_coordunit( void )
{
return fli_cntl.coordUnit;
}
/***************************************
***************************************/
static void
fli_set_debug_level( int l )
{
fli_cntl.debug = l;
sprintf( OpDebug, "%d", fli_cntl.debug );
fli_set_msg_threshold( fli_cntl.debug );
}
/***************************************
* Handle XAPPLRESDIR (colon seperated directories) specification.
* Ignore the %T %N stuff
***************************************/
static void
handle_applresdir( const char * rstr,
const char * appclass )
{
char *tok;
char rbuf[ 512 ],
buf[ 512 ];
XrmDatabase fdb = 0;
strcpy( rbuf, rstr );
for ( tok = strtok( rbuf, ":" ); tok; tok = strtok( 0, ":" ) )
{
fli_snprintf( buf, sizeof buf,"%s/%s", tok,appclass );
M_info( "handle_applresdir", "Trying XAPPLRESDIR: %s", buf );
if ( ( fdb = XrmGetFileDatabase( buf ) ) )
{
XrmMergeDatabases( fdb, &fldatabase );
M_warn( "handle_applresdir", "XAPPLRESDIR %s loaded", buf );
}
}
}
/***************************************
* Routine to merge all resource databases, excluding the commandline,
* which is done in fl_initialize.
***************************************/
static void
init_resource_database( const char *appclass )
{
char buf[ FL_PATH_MAX + 127 ],
* rstr;
XrmDatabase fdb = 0;
if ( ! fl_display )
{
M_err( "init_resource_database", "fl_initialize is not called" );
return;
}
if ( fldatabase )
return;
XrmInitialize( );
#ifdef __VMS
/* For the VMS version try to load the resources from, in this order,
DECW$SYSTEM_DEFAULTS:appclass.DAT
DECW$USER_DEFAULTS:appclass.DAT
DECW$USER_DEFAULTS:DECW$XDEFAULTS.DAT
The window resource manager for this display
*/
fli_snprintf( buf, sizeof buf, "DECW$SYSTEM_DEFAULTS:%s.DAT", appclass );
M_info( "init_resource_database", "Trying Sys_default: %s", buf );
if ( ( fdb = XrmGetFileDatabase( buf ) ) )
{
XrmMergeDatabases( fdb, &fldatabase );
M_warn( "init_resource_database", "System default %s loaded", buf );
}
fli_snprintf( buf, sizeof buf, "DECW$USER_DEFAULTS:%s.DAT", appclass );
M_info( "init_resource_database", "Trying User_default: %s", buf );
if ( ( fdb = XrmGetFileDatabase( buf ) ) )
{
XrmMergeDatabases( fdb, &fldatabase );
M_warn( "init_resource_database", "System default %s loaded", buf );
}
fli_snprintf( buf, sizeof buf, "DECW$USER_DEFAULTS:DECW$XDEFAULTS.DAT" );
M_info( "init_resource_database", "Trying Sys_default: %s", buf );
if ( ( fdb = XrmGetFileDatabase( buf ) ) )
{
XrmMergeDatabases( fdb, &fldatabase );
M_warn( "init_resource_database", "System default %s loaded", buf );
}
M_info( "init_resource_database", "Trying RESOURCE_MANAGER" );
if ( ( rstr = XResourceManagerString( fl_display ) ) )
{
if ( ( fdb = XrmGetStringDatabase( rstr ) ) )
{
XrmMergeDatabases( fdb, &fldatabase );
M_warn( "init_resource_database", "RESOURCE_MANAGER loaded" );
}
}
#else /* !VMS */
fli_snprintf( buf, sizeof buf, "/usr/lib/X11/app-defaults/%s", appclass );
M_info( "init_resource_database", "Trying Sys_default: %s", buf );
if ( ( fdb = XrmGetFileDatabase( buf ) ) )
{
XrmMergeDatabases( fdb, &fldatabase );
M_warn( "init_resource_database", "System default %s loaded", buf );
}
/* try XAPPLRESDIR */
M_info( "init_resource_database", "Trying XAPPLRESDIR" );
if ( ( rstr = getenv( "XAPPLRESDIR" ) ) )
handle_applresdir( rstr, appclass );
/* try server defined resources */
M_info( "init_resource_database", "Trying RESOURCE_MANAGER" );
if ( ( rstr = XResourceManagerString( fl_display ) ) )
{
if ( ( fdb = XrmGetStringDatabase( rstr ) ) )
{
XrmMergeDatabases( fdb, &fldatabase );
M_warn( "init_resource_database", "RESOURCE_MANAGER loaded" );
}
}
else
{
/* Try ~/.Xdefaults */
if ( ( rstr = getenv( "HOME" ) ) )
{
fli_snprintf( buf, sizeof buf,"%s/.Xdefaults", rstr );
M_info( "init_resource_database", "Trying %s", buf );
if ( ( fdb = XrmGetFileDatabase( buf ) ) )
{
XrmMergeDatabases( fdb, &fldatabase );
M_warn( "init_resource_database", "%s loaded", buf );
}
}
}
/* Load file XENVIRONMENT */
M_info( "init_resource_database",
"Trying environment variable XEVIRONMENT" );
if ( ( rstr = getenv( "XENVIRONMENT" ) ) )
{
if ( ( fdb = XrmGetFileDatabase( rstr ) ) )
{
XrmMergeDatabases( fdb, &fldatabase );
M_warn( "init_resource_database", "%s loaded", rstr );
}
}
else
{
/* ~/.Xdefaults-<hostname> */
M_info( "init_resource_database", "Trying ~/.Xdefaults-<hostname>" );
if ( ( rstr = getenv( "HOME" ) ) )
{
int l;
fli_snprintf( buf, sizeof buf,"%s/.Xdefaults", rstr );
l = strlen( strcat( buf, "-" ) );
gethostname( buf + l, sizeof buf - l );
M_info( "init_resource_database", "Trying %s", buf );
if ( ( fdb = XrmGetFileDatabase( buf ) ) )
{
XrmMergeDatabases( fdb, &fldatabase );
M_warn( "init_resource_database", "%s loaded", buf );
}
}
}
#endif /* VMS */
errno = 0;
if ( ! fldatabase )
{
M_warn( "init_resource_database",
"Can't find any resource databases!" );
return;
}
}
/***************************************
***************************************/
static int
is_true( const char * s )
{
return strncmp( s, "True", 4 ) == 0
|| strncmp( s, "true", 4 ) == 0
|| strncmp( s, "Yes", 3 ) == 0
|| strncmp( s, "yes", 3 ) == 0
|| strncmp( s, "On", 2 ) == 0
|| strncmp( s, "on", 2 ) == 0
|| *s == '1';
}
/***************************************
* The resource routine of the lowest level. Only adds the application
* name.
*
* Return the string representation of the resource value
***************************************/
const char *
fl_get_resource( const char * rname, /* resource name */
const char * cname, /* class name */
FL_RTYPE dtype, /* data type */
const char * defval, /* default */
void * val, /* variable */
int size ) /* buffer size if string */
{
XrmValue entry = { 0, NULL };
char * type = NULL;
char res_name[ 256 ] = "",
res_class[ 256 ] = "";
if ( ! ( rname && * rname ) && ! ( cname && *cname ) )
return NULL;
if ( rname && *rname )
fli_snprintf( res_name, sizeof res_name, "%s.%s", fl_app_name, rname );
else
fli_snprintf( res_class, sizeof res_class, "%s.%s",
fl_app_class, cname );
/* Just checking the return value of XrmGetResource() doesn't seem to
work (as it should, unless I completely misunderstand the man
page), and 'entry' seems to return the same data as on a previous
call (despite the initialization!), but 'type' seems to get set to
NULL in cases of failure to find the requested resource in the
database. So in that case we try to use the default value. JTT */
if ( ! XrmGetResource( fldatabase, res_name, res_class, &type, &entry )
|| ! type
|| strcmp( type, "String" )
|| ! entry.addr )
{
M_warn( "fl_get_resource", "%s (%s): not found", res_name, res_class );
entry.addr = ( XPointer ) defval;
}
else
M_info( "fl_get_resource", "%s (%s): %s", res_name, res_class,
entry.addr );
if ( dtype == FL_NONE || ! entry.addr )
return entry.addr;
switch ( dtype )
{
case FL_SHORT:
* ( short * ) val = strtol( entry.addr, NULL, 10 );
break;
case FL_INT:
* ( int * ) val = strtol( entry.addr, NULL, 10 );
break;
case FL_BOOL:
* ( int * ) val = is_true( entry.addr );
break;
case FL_LONG:
* ( long * ) val = strtol( entry.addr, NULL, 10 );
break;
case FL_FLOAT:
* ( float * ) val = atof( entry.addr );
break;
case FL_STRING:
if ( val && val != entry.addr && size > 0 )
{
strncpy( val, entry.addr, size );
( ( char * ) val )[ size - 1 ] = '\0';
}
break;
default:
M_err( "fl_get_resource", "Unknown type %d", dtype );
return NULL;
}
return entry.addr;
}
/***************************************
***************************************/
void
fl_set_resource( const char * str,
const char * val )
{
char res_name[ 256 ];
fli_snprintf( res_name, sizeof res_name, "%s.%s", fl_app_name, str );
XrmPutStringResource( &fldatabase, res_name, ( char * ) val );
}
/***************************************
* internal resource initialization
***************************************/
static void
fli_init_resources( void )
{
char res[ 256 ],
cls[ 256 ],
ores[ 256 ];
char * appname = fl_app_name,
* appclass = fl_app_class;
char * ori_appname = fl_ori_app_name;
/* internal resources need to be prefixed xform and XForm. need to
generate for all names */
fli_snprintf( cls, sizeof cls, "%s.XForm", fl_app_class );
fl_app_class = cls;
fli_snprintf( res, sizeof res, "%s.xform", fl_app_name );
fl_app_name = res;
fli_snprintf( ores, sizeof ores, "%s.xform", fl_ori_app_name );
fl_ori_app_name = ores;
fl_get_app_resources( internal_resources, Niopt );
fl_app_name = appname;
fl_app_class = appclass;
fl_ori_app_name = ori_appname;
if ( fli_cntl.sync )
{
XSynchronize( fl_display, 1 );
M_err( "fli_init_resources", "**** Synchronous Mode ********" );
fli_set_debug_level( 4 );
}
}
static int fli_argc;
static char ** fli_argv;
/***************************************
***************************************/
static void
dup_argv( char ** argv,
int n )
{
int i;
if ( ! argv )
return;
if ( ! fli_argv )
fli_argv = fl_malloc( ( n + 1 ) * sizeof *fli_argv );
for ( i = 0; i < n; i++ )
fli_argv[ i ] = fl_strdup( argv[ i ] );
fli_argv[ i ] = NULL;
}
/***************************************
***************************************/
char **
fl_get_cmdline_args( int * n )
{
*n = fli_argc;
return fli_argv;
}
/***************************************
***************************************/
void
fli_free_cmdline_args( void )
{
size_t i;
if ( ! fli_argv )
return;
for ( i = 0; fli_argv[ i ]; i++ )
fli_safe_free( fli_argv[ i ] );
fli_safe_free( fli_argv );
}
/***************************************
* find the command name from arg[0] and return a copy of it
***************************************/
static char *
get_command_name( const char * arg0 )
{
char *p;
char *s = fl_strdup( arg0 );
char *cmd_name = s;
#ifdef __VMS
/* vms command disk:[path]command.exe */
if ( ( p = strrchr( s, ']' ) ) )
cmd_name = p + 1;
#else
#ifdef FL_WIN32
_splitpath( arg0, NULL, NULL, cmd_name, NULL );
#else
if ( ( p = strrchr( s, '/' ) ) )
cmd_name = p + 1;
#endif
#endif
/* Remove the extension and the period */
if ( ( p = strrchr( cmd_name, '.' ) ) )
*p = '\0';
/* Prevent a valgrind warning about a possible memory leak. */
if ( s != cmd_name )
{
cmd_name = fl_strdup( cmd_name );
fl_free( s );
}
return cmd_name;
}
/*
* Global Routines to do the initialization and resource management
*
*/
#define DumpD( a ) fprintf( stderr,"\t%s:%d\n", #a, fli_cntl.a )
#define DumpS( a ) fprintf( stderr,"\t%s:%s\n", #a, fli_cntl.a )
#define DumpF( a ) fprintf( stderr,"\t%s:%.3f\n", #a, fli_cntl.a )
static Window fli_GetVRoot( Display *,
int );
/***************************************
* initialize context
***************************************/
void
fli_init_context( void )
{
if ( fli_context )
return;
if ( ! ( fli_context = fl_calloc( 1, sizeof *fli_context ) ) )
{
M_err( "fli_init_context", "Running out of memory" );
exit( 1 );
}
fli_context->io_rec = NULL;
fli_context->idle_rec = NULL;
fli_context->atclose = NULL;
fli_context->signal_rec = NULL;
fli_context->idle_delta = FLI_TIMER_RES;
fli_context->hscb = FL_HOR_THIN_SCROLLBAR;
fli_context->vscb = FL_VERT_THIN_SCROLLBAR;
fli_context->navigate_mask = ShiftMask; /* to navigate input field */
fli_context->xim = NULL;
fli_context->xic = NULL;
}
/***************************************
***************************************/
void
fli_set_input_navigate( unsigned int mask )
{
fli_init_context( );
if ( mask == ShiftMask || mask == Mod1Mask || mask == ControlMask )
fli_context->navigate_mask = mask;
}
/***************************************
***************************************/
Display *
fl_initialize( int * na,
char * arg[ ],
const char * appclass,
FL_CMD_OPT * appopt,
int nappopt )
{
char disp_name[ 256 ],
disp_cls[ 256 ],
buf[ 256 ];
XrmValue xval;
char *type;
float xdpi,
ydpi;
if ( fl_display )
{
M_warn( "fl_initialize", "XForms: already initialized" );
return fl_display;
}
/* Be paranoid */
if ( ! na || ! *na )
{
M_err( "fl_initialize",
"XForms: argc == 0 or argv == NULL detected\n" );
exit( 1 );
}
fli_internal_init( );
XrmInitialize( );
/* Save a copy of the command line for later WM hints */
fli_argc = *na;
dup_argv( arg, *na );
/* Get appname and class, but without any leading paths */
fl_ori_app_name = fl_app_name = get_command_name( arg[ 0 ] );
fl_app_class = fl_strdup( ( appclass && *appclass ) ?
appclass : fl_app_name );
/* Make class name upper case if non supplied */
if ( ! appclass || ! *appclass )
{
fl_app_class[ 0 ] = toupper( fl_app_class[ 0 ] );
if ( fl_app_class[ 0 ] == 'X' )
fl_app_class[ 1 ] = toupper( fl_app_class[ 1 ] );
}
/* Do form internal resouces first */
XrmParseCommand( &cmddb, copt, Ncopt, fl_app_name, na, arg );
/* if there are still more left and appopt is not zero */
if ( appopt && na && *na )
XrmParseCommand( &cmddb, appopt, nappopt,
( char * ) fl_ori_app_name, na, arg );
/* Check version request */
fli_snprintf( disp_name, sizeof disp_name, "%s.fl_version", fl_app_name );
fli_snprintf( disp_cls, sizeof disp_cls, "%s.flversion", fl_app_name );
if ( XrmGetResource( cmddb, disp_name, disp_cls, &type, &xval ) )
fli_print_version( 0 );
/* Get the display name first before doing anything */
fli_snprintf( disp_name, sizeof disp_name, "%s.display", fl_ori_app_name );
fli_snprintf( disp_cls , sizeof disp_cls , "%s.Display", fl_app_class );
*buf = '\0';
if ( XrmGetResource( cmddb, disp_name, disp_cls, &type, &xval ) )
{
strncpy( buf, xval.addr, sizeof buf );
buf[ sizeof buf - 1 ] = '\0';
}
/* Open display and quit on failure */
if ( ! ( fl_display = XOpenDisplay( buf ) ) )
{
/* if no display is set, there is no guarantee that buf
is long enough to contain the DISPLAY setting */
M_err( "fl_initialize", "%s: Can't open display %s", fli_argv[ 0 ],
XDisplayName( buf[ 0 ] ? buf : 0 ) );
return 0;
}
flx->display = fl_display;
flx->screen = fl_screen;
/* Get debug level settings since all error reporting will be controled
by it */
fli_snprintf( disp_name, sizeof disp_name, "%s.fldebug", fl_app_name );
fli_snprintf( disp_cls , sizeof disp_cls , "%s.flDebug", fl_app_class );
if ( XrmGetResource( cmddb, disp_name, disp_cls, &type, &xval ) )
fli_set_debug_level( atoi( xval.addr ) );
/* print help */
fli_snprintf( disp_name, sizeof disp_name, "%s.flhelp", fl_app_name );
fli_snprintf( disp_cls , sizeof disp_cls , "%s.flhelp", fl_app_class );
if ( XrmGetResource( cmddb, disp_name, disp_cls, &type, &xval ) )
{
size_t i = 0;
while ( i < Ncopt )
{
if ( i == 0 )
fprintf( stderr, "%s: ", fli_argv[ 0 ] );
else
fprintf( stderr, "%*s ",
( int ) strlen( fli_argv[ 0 ] ), "" );
fprintf( stderr, " %s", copt[ i ].option );
if ( copt[ i ].argKind == XrmoptionSepArg )
fprintf( stderr, " \t[arg]" );
fprintf( stderr, "\n" );
i++;
}
exit(1);
}
/* Check if -name is present */
fli_snprintf( disp_name, sizeof disp_name, "%s.name", fl_app_name );
fli_snprintf( disp_cls, sizeof disp_cls , "%s.Name", fl_app_class );
M_warn( "fl_initialize", "Trying display %s", disp_name );
if ( XrmGetResource( cmddb, disp_name, disp_cls, &type, &xval ) )
{
fl_app_name = fl_strdup( xval.addr );
M_warn( "fl_initialize", "Changed AppName from %s to %s",
fl_ori_app_name, fl_app_name );
}
/* Merge other resource database */
init_resource_database( fl_app_class );
/* Override any options in the database with the command line opt */
XrmMergeDatabases( cmddb, &fldatabase );
/* Load FL resources */
fli_init_resources( );
fli_cntl.vclass = fli_vclass_val( fli_cntl.vname );
fli_cntl.coordUnit = fli_get_vn_value( vn_coordunit, OpCoordUnit );
if ( fli_cntl.coordUnit == -1 )
fli_cntl.coordUnit = FL_COORD_PIXEL;
#if FL_DEBUG >= ML_WARN
if ( fli_cntl.debug )
{
fprintf( stderr, "Options Set\n" );
DumpD( debug );
fprintf( stderr, "\tVisual:%s (%d)\n",
fli_cntl.vclass >= 0 ?
fli_vclass_name( fli_cntl.vclass ) : "To be set",
fli_cntl.vclass );
DumpD( depth );
DumpD( privateColormap );
DumpD( sharedColormap );
DumpD( standardColormap );
DumpD( doubleBuffer );
DumpD( ulPropWidth );
DumpD( ulThickness );
DumpD( scrollbarType );
DumpD( backingStore );
fprintf( stderr, "\t%s:%s\n", "coordUnit",
fli_get_vn_name( vn_coordunit, fli_cntl.coordUnit ) );
fprintf( stderr, "\t%s: 0x%lx\n", "VisualId", fli_requested_vid );
#ifdef DO_GAMMA_CORRECTION
DumpF( rgamma );
DumpF( ggamma );
DumpF( bgamma );
#endif
}
#endif
#ifdef DO_GAMMA_CORRECTION
fl_set_gamma( fli_cntl.rgamma, fli_cntl.ggamma, fli_cntl.bgamma );
#endif
fli_set_ul_property( fli_cntl.ulPropWidth, fli_cntl.ulThickness );
fli_cntl.vclass = fli_vclass_val( fli_cntl.vname );
/* Get the current keyboard state */
{
XKeyboardState xks;
XGetKeyboardControl( fl_display, &xks );
fli_keybdcontrol.auto_repeat_mode = xks.global_auto_repeat;
fli_keybdmask = KBAutoRepeatMode;
}
/* Other initializations */
fl_screen = flx->screen = DefaultScreen( fl_display );
fl_root = RootWindow( fl_display, fl_screen );
fl_vroot = fli_GetVRoot( fl_display, fl_screen );
fli_wmstuff.pos_request = USPosition;
if ( fl_root != fl_vroot )
{
M_warn( "fl_initialize", "fl_root = %lu fl_vroot = %lu",
fl_root, fl_vroot );
/* tvtwm requires this to position a window relative to the current
desktop */
fli_wmstuff.pos_request = PPosition;
}
fl_scrh = DisplayHeight( fl_display, fl_screen );
fl_scrw = DisplayWidth( fl_display, fl_screen );
xdpi = fl_scrw * 25.4 / DisplayWidthMM( fl_display, fl_screen );
ydpi = fl_scrh * 25.4 / DisplayHeightMM( fl_display, fl_screen );
if ( xdpi / ydpi > 1.05 || ydpi / xdpi < 0.95 )
M_warn( "fl_initialize", "NonSquarePixel %.1f %.1f", xdpi, ydpi );
fli_dpi = ( xdpi + ydpi ) / 2;
fli_dpi = ( ( int ) ( fli_dpi * 10.0 + 0.3 ) ) * 0.1;
M_info( "fl_initialize", "screen DPI = %f", fli_dpi );
fl_vmode = fli_initialize_program_visual( );
fli_init_colormap( fl_vmode );
fli_init_font( );
fli_init_context( );
#ifdef XlibSpecificationRelease
if ( XSupportsLocale( ) )
{
XSetLocaleModifiers( "" );
/* Use the same input method throughout xforms */
fli_context->xim = XOpenIM( fl_display, NULL, NULL, NULL );
/* Also use the same input context */
if ( fli_context->xim )
{
int style = XIMPreeditNothing | XIMStatusNothing;
fli_context->xic = XCreateIC( fli_context->xim,
XNInputStyle, style,
( char * ) NULL );
/* Clean-up on failure */
if ( ! fli_context->xic )
{
M_err( "fl_initialize", "Could not create an input context" );
XCloseIM( fli_context->xim );
}
}
else
M_err( "fl_initialize", "Could not create an input method" );
}
#endif
fli_default_xswa( );
fli_init_stipples( );
/* If using non-default visual or private colormap, need a window with
correct visual/colormap and depth */
fl_state[ fl_vmode ].trailblazer = fl_root;
if ( fli_visual( fl_vmode ) != DefaultVisual( fl_display, fl_screen )
|| fl_state[ fl_vmode ].pcm )
{
fl_state[ fl_vmode ].trailblazer =
fli_create_window( fl_root, fli_colormap( fl_vmode ),
"trailblazer" );
}
if ( strcmp( OpSCBT, "plain" ) == 0 )
{
fli_context->hscb = FL_HOR_PLAIN_SCROLLBAR;
fli_context->vscb = FL_VERT_PLAIN_SCROLLBAR;
}
else if ( strcmp( OpSCBT, "normal" ) == 0 )
{
fli_context->hscb = FL_HOR_SCROLLBAR;
fli_context->vscb = FL_VERT_SCROLLBAR;
}
else if ( ! strcmp( OpSCBT, "thin" ) )
{
fli_context->hscb = FL_HOR_THIN_SCROLLBAR;
fli_context->vscb = FL_VERT_THIN_SCROLLBAR;
}
else if ( ! strcmp( OpSCBT, "nice" ) )
{
fli_context->hscb = FL_HOR_NICE_SCROLLBAR;
fli_context->vscb = FL_VERT_NICE_SCROLLBAR;
}
fli_context->max_request_size = XMaxRequestSize( fl_display );
if ( fli_context->max_request_size < 4096 )
{
M_err( "fl_initialize", "Something is wrong with max_request_size: %ld",
fli_context->max_request_size );
fli_context->max_request_size = 4096;
}
#if XlibSpecificationRelease >= 6
fli_context->ext_request_size = XExtendedMaxRequestSize( fl_display );
#else
fli_context->ext_request_size = 0;
#endif
if ( ! fli_context->ext_request_size )
fli_context->ext_request_size = fli_context->max_request_size;
fli_context->max_request_size -= 8;
fli_context->ext_request_size -= 8;
fli_context->tooltip_time = 600;
fl_add_io_callback( ConnectionNumber( fl_display ), FL_READ, NULL, NULL );
/* Has to be here, otherwise fl_add_symbol won't be able to replace the
built-in */
fli_init_symbols( );
/* Hang the database on the display so application can get it */
XrmSetDatabase( fl_display, fldatabase );
/* Initialize popup system */
fli_popup_init( );
return fl_display;
}
/***************************************
* Cleanup everything. At the moment, only need to restore the keyboard
* settings and deallocate memory used for the object and event queue etc.
***************************************/
void
fl_finish( void )
{
/* Make sure the connection is alive */
if ( ! flx->display )
return;
XChangeKeyboardControl( flx->display, fli_keybdmask,
&fli_keybdcontrol );
fli_remove_all_signal_callbacks( );
fli_remove_all_timeouts( );
/* Get rid of all forms, first hide all of them */
while ( fli_int.formnumb > 0 )
fl_hide_form( fli_int.forms[ 0 ] );
/* Now also delete them (to deallocate memory) - problem is that the
tooltip form may only be deleted as the very last one since the objects
that have a tooltip (and that get deleted in the process of deleting
the form they belong to) still try to access the tooltip form */
while ( fli_int.hidden_formnumb > 0 )
{
if ( fli_int.hidden_formnumb > 1
&& fli_is_tooltip_form( fli_int.forms[ 0 ] ) )
fl_free_form( fli_int.forms[ 1 ] );
else
fl_free_form( fli_int.forms[ 0 ] );
}
/* Delete the object and event queue */
fli_obj_queue_delete( );
fli_event_queue_delete( );
/* Free memory allocated in xtext.c */
fli_free_xtext_workmem( );
/* Release memory used for symbols */
fli_release_symbols( );
/* Release memory allocated in goodies */
fli_goodies_cleanup( );
/* Release memory allocated for file selectors */
fli_free_fselectors( );
/* Release memory used by the popup system */
fli_popup_finish( );
/* Release memory used for the copy of the command line arguments */
fli_free_cmdline_args( );
/* Release memory used for cursors */
fli_free_cursors( );
/* Free memory used for colormaps */
fli_free_colormap( fl_vmode );
/* Get rid of memory for input methods */
#ifdef XlibSpecificationRelease
if ( fli_context && XSupportsLocale( ) && fli_context->xim )
{
if ( fli_context->xic )
XDestroyIC( fli_context->xic );
XCloseIM( fli_context->xim );
}
#endif
if ( fli_context )
while ( fli_context->io_rec )
fl_remove_io_callback( fli_context->io_rec->source,
fli_context->io_rec->mask,
fli_context->io_rec->callback );
fli_safe_free( fli_context );
/* Close the display */
XCloseDisplay( flx->display );
flx->display = fl_display = None;
}
/***************************************
* Find out about virtual root. Taken from XFaq
***************************************/
#include <X11/Xatom.h>
static int
xerror_handler( Display * d FL_UNUSED_ARG,
XErrorEvent * xev )
{
return xev->error_code;
}
static Window
fli_GetVRoot( Display * dpy,
int scr )
{
Window rootReturn;
Window parentReturn;
Window *children;
unsigned int numChildren;
Window root = RootWindow( dpy, scr );
Atom __SWM_VROOT = None;
unsigned int i;
int ( * oldhandler )( Display *, XErrorEvent * );
__SWM_VROOT = XInternAtom( dpy, "__SWM_VROOT", False );
XQueryTree( dpy, root, &rootReturn, &parentReturn, &children,
&numChildren );
/* For some reasons XQueryTree sometimes seems to return an invalid window
in the list of children (perhaps the window vanishes between the call
of XQueryTree() and the subsequent call of XGetWindowProperty()?). To
avoid a program using XForms aborting with a strange X error message on
start-up, we catch these errors with a temporary error handler (which
gets reset before leaving the function). */
oldhandler = XSetErrorHandler( xerror_handler );
for ( i = 0; i < numChildren; i++ )
{
Atom actual_type;
int actual_format;
unsigned long nitems, bytesafter;
Window *newRoot = NULL;
/* Kludge here: the ( void * ) bit in
( unsigned char ** ) ( void * ) &newRoot
is there to avoid a spurious GCC warning JTT */
children[ i ] = 0;
if ( XGetWindowProperty( dpy, children[ i ], __SWM_VROOT, 0, 1,
False, XA_WINDOW, &actual_type,
&actual_format, &nitems, &bytesafter,
( unsigned char ** ) ( void * ) &newRoot )
== Success
&& newRoot )
{
root = *newRoot;
break;
}
}
XSetErrorHandler( oldhandler );
XFree( ( char * ) children );
return root;
}
/***************************************
* For Application programs
***************************************/
static void
fli_get_app_resource( FL_resource * appresource,
int n )
{
FL_resource *flr = appresource,
*flrs = flr + n;
for ( ; flr < flrs; flr++ )
if ( flr->type == FL_STRING && flr->nbytes == 0 )
M_err( "fl_get_app_resources", "%s: buflen == 0", flr->res_name );
else
fl_get_resource( flr->res_name, flr->res_class,
flr->type, flr->defval, flr->var, flr->nbytes );
}
/***************************************
***************************************/
void
fl_get_app_resources( FL_resource * appresource,
int n )
{
char *tmp = fl_app_name;
fl_app_name = fl_ori_app_name;
fli_get_app_resource( appresource, n );
if ( fl_app_name != tmp )
{
fl_app_name = tmp;
fli_get_app_resource( appresource, n );
}
}
/***************************************
***************************************/
void
fl_flip_yorigin( void )
{
if ( ! fl_display )
fli_inverted_y = 1;
else
M_err( "fl_flip_yorigin", "Only supported before fl_initialize" );
}
/***************************************
***************************************/
void
fli_set_app_name( const char * n,
const char * c )
{
if ( n )
fl_app_name = fl_strdup( n );
if ( c )
fl_app_class = fl_strdup( c );
}
/*
* Local variables:
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|