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
|
/*****
* XmHTMLI.h : XmHTML internal function proto's.
* Only required when building the XmHTML Library.
* If you whish to include this file, it *must* be included
* AFTER XmHTMLP.h as it references a number of structures defined
* in that header.
*
* This file Version $Revision: 1.4 $
*
* Creation date: Tue Aug 19 16:03:22 GMT+0100 1997
* Last modification: $Date: 1998/04/27 06:56:48 $
* By: $Author: newt $
* Current State: $State: Exp $
*
* Author: newt
*
* Copyright (C) 1994-1997 by Ripley Software Development
* All Rights Reserved
*
* This file is part of the XmHTML Widget Library.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU [Library] General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU [Library] General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*****/
/*****
* $Source: /usr/local/rcs/Newt/XmHTML/RCS/XmHTMLI.h,v $
*****/
/*****
* ChangeLog
* $Log: XmHTMLI.h,v $
* Revision 1.4 1998/04/27 06:56:48 newt
* Removed a few obsolete functions and added new protos from private.c and
* public.c
*
* Revision 1.3 1998/04/04 06:27:54 newt
* XmHTML Beta 1.1.3
*
* Revision 1.2 1997/10/23 00:24:46 newt
* XmHTML Beta 1.1.0 release
*
* Revision 1.1 1997/08/30 00:07:31 newt
* Initial Revision
*
*****/
#ifndef _XmHTMLI_h_
#define _XmHTMLI_h_
#ifdef _XFUNCPROTOBEGIN
_XFUNCPROTOBEGIN
#else
#ifdef __cplusplus
extern "C" {
#endif /* __clpusplus */
#endif
/*****
* When XmHTML_ERROR_FUNCS is defined, only the error functions (at the end
* of this include file) will be visible to the outside world.
*****/
#ifndef XmHTML_ERROR_FUNCS
/* usefull macros */
#define Abs(x) ((x) < 0 ? -(x) : (x))
#define Max(x,y) (((x) > (y)) ? (x) : (y))
#define Min(x,y) (((x) < (y)) ? (x) : (y))
/* RANGE forces a to be in the range b..c (inclusive) */
#define RANGE(a,b,c) { if (a < b) a = b; if (a > c) a = c; }
/*********************************************************************
* @Module: parse.c
* @Description: XmHTML HTML parser
*
* @Exports:
* _XmHTMLparseHTML : raw HTML parser.
* _XmHTMLFreeObjects : free the given parser tree.
* _XmHTMLTextGetSTring: create a HTML source document from the given
* parser tree.
* _ParserCreate : create a parser Object.
* _ParserDelete : delete a parser Object.
* _ParserReset : reset a parser Object.
* _ParserCheckElementOccurance: check whether presence of an element in
* in a certain state is allowed.
* _ParserCheckElementContent : check whether an element is allowed to
* appear in a certain state.
* _ParserCutComment : cut a HTML comment from the input stream.
* _ParserNewObject : allocate a new object.
* _ParserPushState : push a parser state on the stack.
* _ParserPopState : pop a parser state from the stack.
* _ParserOnStack : check if the given element is on the stack.
* _ParserTokenToId : convert a string to an internal element id.
* _ParserStoreElement : store a real element
* _ParserStoreTextElement: store a text element.
* _ParserStoreTextElementRtoL: store a text element and reverse it's contents.
* _ParserInsertElement: insert a new element in the list of elements.
* _ParserTerminateElement: terminate the given element. Backtracks both stack
* and element list
* _ParserCopyElement : copy an element
* _ParserVerify : verify (and correct) the presence of an element.
* _ParserVerifyVerification: verify whether the parser successfully
* verified/repaired a document.
*
**********************************************************************/
extern Parser *_ParserCreate(Widget w);
extern void _ParserDelete(Parser *parser);
extern int _ParserCheckElementOccurance(Parser *parser, htmlEnum current,
htmlEnum state);
extern Boolean _ParserCheckElementContent(Parser *parser, htmlEnum current,
htmlEnum state);
extern String _ParserCutComment(Parser *parser, String start);
extern XmHTMLObject *_ParserNewObject(Parser *parser, htmlEnum id,
char *element, char *attributes, Boolean is_end, Boolean terminated);
extern void _ParserPushState(Parser *parser, htmlEnum id);
extern htmlEnum _ParserPopState(Parser *parser);
extern Boolean _ParserOnStack(Parser *parser, htmlEnum id);
extern htmlEnum _ParserTokenToId(Parser *parser, String token, Boolean warn);
extern String _ParserStoreElement(Parser *parser, char *start, char *end);
extern void _ParserStoreTextElement(Parser *parser, char *start, char *end);
extern void _ParserStoreTextElementRtoL(Parser *parser, char *start, char *end);
extern void _ParserInsertElement(Parser *parser, String element,
htmlEnum new_id, Boolean is_end);
extern Boolean _ParserTerminateElement(Parser *parser, String element,
htmlEnum current, htmlEnum expect);
extern void _ParserCopyElement(Parser *parser, XmHTMLObject *src,
Boolean is_end);
extern int _ParserVerify(Parser *parser, htmlEnum id, Boolean is_end);
extern XmHTMLObject *_ParserVerifyVerification(XmHTMLObject *objects);
extern XmHTMLObject *_XmHTMLparseHTML(XmHTMLWidget html, XmHTMLObject *old_list,
char *input, XmHTMLWidget dest);
extern void _XmHTMLFreeObjects(XmHTMLObject *objects);
extern String _XmHTMLTextGetString(XmHTMLObject *objects);
/* set of macros used by both parse.c and Parser.c */
/* elements for which a closing counterpart is optional */
#define OPTIONAL_CLOSURE(id) ((id) == HT_DD || (id) == HT_DT || \
(id) == HT_LI || (id) == HT_P || (id) == HT_OPTION || (id) == HT_TD || \
(id) == HT_TH || (id) == HT_TR || (id) == HT_PAGE)
/* physical/logical markup elements */
#define IS_MARKUP(id) ((id) == HT_TT || (id) == HT_I || (id) == HT_B || \
(id) == HT_U || (id) == HT_STRIKE || (id) == HT_BIG || (id) == HT_SMALL || \
(id) == HT_SUB || (id) == HT_SUP || (id) == HT_EM || (id) == HT_STRONG || \
(id) == HT_DFN || (id) == HT_CODE || (id) == HT_SAMP || (id) == HT_KBD || \
(id) == HT_VAR || (id) == HT_CITE || (id) == HT_FONT)
/* text containers */
#define IS_CONTAINER(id) ((id) == HT_BODY || (id) == HT_DIV || \
(id) == HT_CENTER || (id) == HT_BLOCKQUOTE || (id) == HT_FORM || \
(id) == HT_TH || (id) == HT_TD || (id) == HT_DD || (id) == HT_LI || \
(id) == HT_NOFRAMES || (id) == HT_PAGE)
/* all elements that may be nested */
#define NESTED_ELEMENT(id) (IS_MARKUP(id) || (id) == HT_APPLET || \
(id) == HT_BLOCKQUOTE || (id) == HT_DIV || (id) == HT_CENTER || \
(id) == HT_FRAMESET)
/* other elements */
#define IS_MISC(id) ((id) == HT_P || (id) == HT_H1 || (id) == HT_H2 || \
(id) == HT_H3 || (id) == HT_H4 || (id) == HT_H5 || (id) == HT_H6 || \
(id) == HT_PRE || (id) == HT_ADDRESS || (id) == HT_APPLET || \
(id) == HT_CAPTION || (id) == HT_A || (id) == HT_DT)
/*********************************************************************
* @Module: callbacks.c
* @Description: XmHTML callback routines
*
* @Exports:
* _XmHTMLLinkCallback : XmNlinkCallback driver.
* _XmHTMLTrackCallback: XmNanchorTrackCallback driver.
* _XmHTMLActivateCallback: XmNactivateCallback drivers
* _XmHTMLDocumentCallback: XmNdocumentCallback drivers.
* _XmHTMLFrameCreateCallback : XmNframeCallback driver for frame creation.
* _XmHTMLFrameDestroyCallback: XmNframeCallback driver for frame
* destruction.
* _XmHTMLEventProcess : XmNeventCallback driver.
* _XmHTMLEventFreeDatabase: release all storage allocated for the
* HTML 4.0 event handling.
*
**********************************************************************/
extern void _XmHTMLLinkCallback(XmHTMLWidget html);
extern void _XmHTMLTrackCallback(XmHTMLWidget html, XEvent *event,
XmHTMLAnchor *anchor);
extern Boolean _XmHTMLActivateCallback(XmHTMLWidget html, XEvent *event,
XmHTMLAnchor *anchor);
extern Boolean _XmHTMLDocumentCallback(XmHTMLWidget html, Boolean html32,
Boolean verified, Boolean balanced, Boolean terminated, int pass_level);
extern void _XmHTMLFocusOutCallback(XmHTMLWidget html, XEvent *event);
extern void _XmHTMLFocusInCallback(XmHTMLWidget html, XEvent *event);
extern void _XmHTMLMotionCallback(XmHTMLWidget html, XEvent *event);
extern void _XmHTMLInputCallback(XmHTMLWidget html, XEvent *event);
extern void _XmHTMLArmCallback(XmHTMLWidget html, XEvent *event);
extern void _XmHTMLImagemapCallback(XmHTMLWidget html, XmHTMLImage *image,
XmHTMLImagemapCallbackStruct *cbs);
extern Widget _XmHTMLFrameCreateCallback(XmHTMLWidget html,
XmHTMLFrameWidget *frame);
extern void _XmHTMLFrameDoneCallback(XmHTMLWidget html,
XmHTMLFrameWidget *frame, Widget widget);
extern int _XmHTMLFrameDestroyCallback(XmHTMLWidget html,
XmHTMLFrameWidget *frame);
extern Boolean _XmHTMLEventProcess(XmHTMLWidget html, XEvent *event,
HTEvent *ht_event);
extern void _XmHTMLEventFreeDatabase(XmHTMLWidget old, XmHTMLWidget html);
/*********************************************************************
* @Module: format.c
* @Description : XmHTML formatting routines, translate the parse output
* to a set of objects suitable for displaying a HTML page.
*
* @Exports:
* _XmHTMLformatObjects: create a list of formatted objects.
* _XmHTMLNewAnchor : allocate and fill a new anchor.
*
**********************************************************************/
extern void _XmHTMLformatObjects(XmHTMLWidget old, XmHTMLWidget html);
extern XmHTMLAnchor* _XmHTMLNewAnchor(XmHTMLWidget html, XmHTMLObject *object);
/*********************************************************************
* @Module: frames.c
* @Description: XmHTML frame support
*
* @Exports:
* _XmHTMLCreateFrames : create all required HTML frame widgets.
* _XmHTMLCreateFrame : create a htmlWidgetClass for use in HTML frames
* _XmHTMLCheckForFrames: check for a frameset definition, destroying
* any previous frame lists.
* _XmHTMLReconfigureFrames : recompute the frame layout after a widget
* resize.
*
**********************************************************************/
extern Boolean _XmHTMLCreateFrames(XmHTMLWidget old, XmHTMLWidget html);
extern Widget _XmHTMLCreateFrame(XmHTMLWidget html, XmHTMLFrameWidget *frame,
XmHTMLFrameCallbackStruct *fptr);
extern void _XmHTMLDestroyFrames(XmHTMLWidget html, int nframes);
extern int _XmHTMLCheckForFrames(XmHTMLWidget html, XmHTMLObject *objects);
extern void _XmHTMLReconfigureFrames(XmHTMLWidget html);
/*********************************************************************
* @Module: forms.c
* @Description: XmHTML HTML form support.
*
* @Exports:
* _XmHTMLStartForm : start a new form.
* _XmHTMLEndForm : terminate the form opened with _XmHTMLStartForm.
* _XmHTMLFreeForm : destroy a given form.
* _XmHTMLFormAddInput : add an input field to the current form.
* _XmHTMLFormAddSelect : add a select field to the current form.
* _XmHTMLFormSelectAddOption: add an option to select opened with
* _XmHTMLFormAddSelect.
* _XmHTMLFormSelectClose : close the select opened with
* _XmHTMLFormAddSelect.
* _XmHTMLFormAddTextArea : add a text area to the current form.
* _XmHTMLFormActivate : XmNformCallback driver.
* _XmHTMLFormReset : reset a given form to it's default values.
* _XmHTMLProcessTraversal: form widget traversal handler.
* _XmHTMLFormCreateClipmask: create a clipmask for fast scrolling.
*
**********************************************************************/
extern void _XmHTMLStartForm(XmHTMLWidget html, String attributes);
extern void _XmHTMLEndForm(XmHTMLWidget html);
extern XmHTMLForm *_XmHTMLFormAddInput(XmHTMLWidget html, String attributes);
extern XmHTMLForm *_XmHTMLFormAddSelect(XmHTMLWidget html, String attributes);
extern XmHTMLForm *_XmHTMLFormAddTextArea(XmHTMLWidget html,
String attributes, String text);
extern void _XmHTMLFormSelectAddOption(XmHTMLWidget html, XmHTMLForm *entry,
String attributes, String label);
extern void _XmHTMLFormSelectClose(XmHTMLWidget html, XmHTMLForm *entry);
extern void _XmHTMLFreeForm(XmHTMLWidget html, XmHTMLFormData *form);
extern Boolean _XmHTMLFormActivate(XmHTMLWidget html, XEvent *event,
XmHTMLForm *entry);
extern void _XmHTMLFormReset(XmHTMLWidget html, XmHTMLForm *entry);
extern void _XmHTMLProcessTraversal(Widget w, int direction);
extern Boolean _XmHTMLFormCreateClipmask(XmHTMLWidget html);
/*********************************************************************
* @Module: XmHTML.c
* @Description: XmHTML Widget definition, widget methods and public
* functions.
*
* @Exports:
* _XmHTMLGetAnchorByValue: finds the object of a named anchor by it's id.
* _XmHTMLGetAnchorByName : finds the object of a named anchor by it's name.
* _XmHTMLMoveToPos : scroll the display area by a given amount.
* Scroll direction is given by the widget id.
* _XmHTMLCheckXCC : create a XColorContext for the a HTML widget.
* _XmHTMLClearArea : XClearArea for a XmHTML widget.
* _XmHTMLCvtStringToWarning: convert a XmCHTMLWarningType to it's internal
* representation.
* _XmHTMLScrollToLine : position the given line on the top of the display
* area.
* _XmHTMLVerticalPosToLine: figure out the line number of the first element
* at the given (absolute) y position.
* _XmHTMLOnImage : find the image at the given (relative)
* coordinates.
* _XmHTMLGetImageAnchor : determines if the given (relative) coordinates lie
* upon an image that has an imagemap and thus
* represent an anchor.
* _XmHTMLGetAnchor : determines if the (relative) coordinates are within
* the bounding rectangle of an anchor and thus
* represent an anchor.
**********************************************************************/
extern XmHTMLObjectTableElement _XmHTMLGetAnchorByValue(XmHTMLWidget html,
int anchor_id);
extern XmHTMLObjectTableElement _XmHTMLGetAnchorByName(XmHTMLWidget html,
String anchor);
extern void _XmHTMLClearArea(XmHTMLWidget html, int x, int y, int width,
int height);
/*****
* This function is only used by the Motif version of XmHTML.
*****/
#ifdef _XtIntrinsic_h
extern Boolean _XmHTMLCvtStringToWarning(Display *dpy, XrmValuePtr args,
Cardinal *num_args, XrmValuePtr from_val, XrmValuePtr to_val,
XtPointer *converter_data);
#endif
extern void _XmHTMLScrollToLine(XmHTMLWidget html, int line);
extern int _XmHTMLVerticalPosToLine(XmHTMLWidget html, int y);
extern XmHTMLImage *_XmHTMLOnImage(XmHTMLWidget html, int x, int y);
extern XmHTMLAnchor *_XmHTMLGetImageAnchor(XmHTMLWidget html, int x, int y,
XmHTMLImage *list);
extern XmHTMLWord *_XmHTMLGetAnchor(XmHTMLWidget html, int x, int y,
XmHTMLImage *img);
extern void _XmHTMLGetScrollDim(XmHTMLWidget html, int *hsb_height, int *vsb_width);
extern void _XmHTMLCheckScrollBars(XmHTMLWidget html);
/* manage scrollbars if necessary */
#define _XmHTMLSetScrollBars(HTML) { \
if(ATTR_HTML(HTML, needs_hsb) && \
!(ATTR_HTML(HTML,tka)->IsManaged(ATTR_HTML(HTML,hsb)))) \
ATTR_HTML(HTML,tka)->ManageChild(ATTR_HTML(HTML, hsb)); \
if(ATTR_HTML(HTML, needs_vsb) && \
!(ATTR_HTML(HTML,tka)->IsManaged(ATTR_HTML(HTML,vsb)))) \
ATTR_HTML(HTML,tka)->ManageChild(ATTR_HTML(HTML, vsb)); \
}
extern void _XmHTMLAdjustVerticalScrollValue(Widget vsb, int *value);
extern void _XmHTMLRaiseFormWidgets(XmHTMLWidget html);
/* private.c */
extern XmHTMLObjectTableElement _XmHTMLGetLineObject(XmHTMLWidget html,
int y_pos);
extern void _XmHTMLSetCurrentLineNumber(XmHTMLWidget html, int y_pos);
extern void _XmHTMLCheckMaxColorSetting(XmHTMLWidget html);
extern void _XmHTMLCheckGC(XmHTMLWidget html);
extern void _XmHTMLResize(Widget w);
extern void _XmHTMLLayout(XmHTMLWidget html);
extern void _XmHTMLReset(XmHTMLWidget html, Boolean free_img);
extern void _XmHTMLFreeExpendableResources(XmHTMLWidget html, Boolean free_img);
extern void _XmHTMLDestroyPhaseZero(XmHTMLWidget html);
extern void _XmHTMLRefresh(XmHTMLWidget html, int x, int y, int width,
int height);
extern void _XmHTMLMoveToPos(Widget w, XmHTMLWidget html, int value);
extern void _XmHTMLCheckXCC(XmHTMLWidget html);
/*********************************************************************
* @Module: paint.c
* @Description: XmHTML rendering routines.
*
* @Exports:
* _XmHTMLPaint : display a list of objects.
* _XmHTMLRestartAnimations: freeze or restart all animations in a document.
* _XmHTMLDrawImage : refresh a single image.
*
**********************************************************************/
extern void _XmHTMLPaint(XmHTMLWidget html, XmHTMLObjectTable *start,
XmHTMLObjectTable *end);
extern void _XmHTMLRestartAnimations(XmHTMLWidget html);
extern void _XmHTMLDrawImage(XmHTMLWidget html, XmHTMLObjectTableElement data,
int y_offset, Boolean from_timerCB);
extern void _XmHTMLPaintAnchorUnSelected(XmHTMLWidget html);
extern void _XmHTMLPaintAnchorSelected(XmHTMLWidget html, XmHTMLWord *anchor);
extern void _XmHTMLPaintAnchorLeave(XmHTMLWidget html);
extern void _XmHTMLPaintAnchorEntry(XmHTMLWidget html,
XmHTMLObjectTable *anchor);
/*********************************************************************
* @Module: layout.c
* @Description : XmHTML layout computation routines
*
* @Exports:
* _XmHTMLComputeLayout: computes the full screen layout for a XmHTML
* widget.
*
**********************************************************************/
extern void _XmHTMLComputeLayout(XmHTMLWidget html);
/*********************************************************************
* @Module: StringUtil.c
* @Description: string manipulators and HTML tag analyzers.
*
* @Exports:
* __my_translation_table : lowercase translation table.
* my_upcase : make a string all uppercase.
* my_locase : make a string all lowercase.
* my_strcasestr : case insensitive strstr.
* ToAsciiLower : convert a number to all lowercase ASCII.
* ToAsciiUpper : convert a number to all uppercase ASCII.
* ToRomanLower : convert a number to all uppercase roman numerals.
* ToRomanUpper : convert a number to all lowercase roman numerals.
* stringToToken : convert a string to a numeric id.
* _XmHTMLExpandEscapes : expand all escape sequences in the given text.
* _XmHTMLTagCheck : Check the existance of a tag.
* _XmHTMLTagGetValue : Get the value of a tag.
* _XmHTMLTagGetNumber : Get the numerical value of a tag.
* _XmHTMLTagCheckNumber : Get the absolute (positive no returned) or
* relative (negative no returned) value of a tag.
* _XmHTMLTagCheckValue : check if the given tag exists.
* _XmHTMLGetImageAlignment : Retrieve the value of the ALIGN attribute on
* images.
* _XmHTMLGetHorizontalAlignment: Retrieve the value of the ALIGN attribute.
* _XmHTMLGetVerticalAlignment: Retrieve the value of the VALIGN attribute.
* _XmHTMLGetFraming : Retrieve the value of the FRAME table attribute.
* _XmHTMLGetRuling : Retrieve the value of the RULE table attribute
* _XmHTMLGetMaxLineLength : Returns maximum width of a line in pixels of
* the current document or 75% of screen width,
* whatever is the smallest.
*
**********************************************************************/
extern void my_upcase(char *string);
extern void my_locase(char *string);
extern char *my_strcasestr(const char *s1, const char *s2);
extern char *my_strndup(const char *s1, size_t len);
/*****
* Proper support for I18N requires a POSIX compliant tolower, which
* the internal tablelookup is not.
*****/
#ifdef I18N
#define _FastLower(x) tolower(x)
#else
extern const Byte __my_translation_table[];
#define _FastLower(x) (__my_translation_table[(Byte)x])
#endif /* I18N */
#ifdef NEED_STRERROR
extern char *sys_errlist[];
extern int errno;
#define strerror(ERRNUM) sys_errlist[ERRNUM]
#endif
#ifdef NEED_STRCASECMP
# include <sys/types.h>
extern int my_strcasecmp(const char *s1, const char *s2);
extern int my_strncasecmp(const char *s1, const char *s2, size_t n);
#define strcasecmp(S1,S2) my_strcasecmp(S1,S2)
#define strncasecmp(S1,S2,N) my_strncasecmp(S1,S2,N)
#else
# ifdef HAVE_STRINGS_H /* Some systems have str[n]casecmp in strings.h */
# include <strings.h>
# endif
#endif
extern String ToAsciiLower(int val);
extern String ToAsciiUpper(int val);
extern String ToRomanUpper(int val);
extern String ToRomanLower(int val);
extern Byte stringToToken(String token, String *tokens, int max_val);
extern void _XmHTMLExpandEscapes(char *string, Boolean warn);
extern Boolean _XmHTMLTagCheck(char *attributes, char *tag);
extern char *_XmHTMLTagGetValue(char *attributes, char *tag);
extern int _XmHTMLTagGetNumber(char *attributes, char *tag, int def);
extern int _XmHTMLTagCheckNumber(char *attributes, char *tag, int def);
extern Boolean _XmHTMLTagCheckValue(char *attributes,
char *tag, char *check);
extern Alignment _XmHTMLGetImageAlignment(char *attributes);
extern Alignment _XmHTMLGetHorizontalAlignment(char *attributes,
Alignment def_align);
extern Alignment _XmHTMLGetVerticalAlignment(char *attributes,
Alignment def_align);
extern TableFraming _XmHTMLGetFraming(char *attributes, TableFraming def);
extern TableRuling _XmHTMLGetRuling(char *attributes, TableRuling def);
extern Dimension _XmHTMLGetMaxLineLength(XmHTMLWidget html);
/*********************************************************************
* @Module: colors.c
* @Description : XmHTML *text* color allocation routines.
*
* @Exports:
* _XmHTMLGetPixelByName : allocate and return the named pixel.
* _XmHTMLConfirmColor32 : check name of the given color. Only when
* XmNstrictHTMLChecking is True.
* _XmHTMLAddPalette : add a palette to the widget (used for dithering)
*
**********************************************************************/
extern Pixel _XmHTMLGetPixelByName(XmHTMLWidget html, String color,
Pixel def_pixel);
extern Boolean _XmHTMLConfirmColor32(char *color);
extern Boolean _XmHTMLAddPalette(XmHTMLWidget html);
/*********************************************************************
* @Module: images.c
* @Description: XmHTML image loading/manipulation routines.
*
* @Defines:
* struct XmHTMLRawImageData: intermediate image data structure.
*
* @Exports:
* bitmap_bits[] : bit array required for creating depth 1
* images (bitmaps).
* XmImageGifProc_plugin : external gif decoder hook.
* XmImageGifzCmd_plugin : external decompressor hook.
* _xmimage_cfg : XmImage configuration hook.
* _XmHTMLGetImageType : return type of image
* _XmHTMLImageFileToBuffer: read a file in a buffer
* _XmHTMLNewImage : create a new image
* _XmHTMLLoadBodyImage :load and set the body image.
* _XmHTMLImageUpdateChilds: update all copies of the given parent image.
* _XmHTMLImageCheckDelayedCreation: process all images that need rereading
* (alpha channel processing)
* _XmHTMLMakeAnimation : create an animation for the given image.
* _XmHTMLInfoToPixmap : create a pixmap from the given ImageInfo data.
* _XmHTMLReplaceOrUpdateImage: replace or update an image.
* _XmHTMLFreeImage : Free private image data.
* _XmHTMLFreeImageInfo : Free external image data.
* _XmHTMLReleaseImage : Free an image and adjust the internal list of
* images.
* _XmHTMLCreateXImage : create a new but empty XImage with given
* dimensions
* _XmHTMLFillXImage : fill the given XImage.
* _XmHTMLReadBitmap : read an X11 bitmap.
* _XmHTMLReadGIF : read a GIF file.
* _XmHTMLReadFLG : read a FLG file (Fast Loadable Graphic).
* _XmHTMLReadXPM : read an X11 XPM image.
* _XmHTMLReadPNG : read a PNG image.
* _XmHTMLReadJPEG : read a JPEG image.
* _XmHTMLGifReadOK : read a number of bytes from a GIF datafile.
* _XmHTMLGifGetDataBlock : read a GIF datablock from a GIF datafile.
* _XmHTMLIsGifAnimated : check whether a GIF is animated or not
* _XmHTMLGifAnimInit : Initialize gif animation reading
* _XmHTMLGifAnimNextFrame : read a frame from an animated gif file.
* _XmHTMLGifAnimTerminate : wrap up animated gif reading.
* _XmHTMLCreateXpmFromData: read an X11 XPM image from raw XPM data.
* _XmHTMLReReadPNG : process alpha channelled PNG images.
* _XmHTMLImageGetIconAttribs: get attribute string for a W3C icon entity;
*
**********************************************************************/
extern Byte bitmap_bits[];
extern XmImageGifProc XmImageGifProc_plugin;
extern String XmImageGifzCmd_plugin;
extern XmImageConfig *_xmimage_cfg;
typedef struct _XmHTMLRawImageData{
Byte *data; /* raw image data */
Byte *alpha; /* alpha channel data */
int width; /* image width in pixels */
int height; /* image height in pixels */
int bg; /* transparent pixel index */
XCOLOR *cmap; /* colormap for this image */
int cmapsize; /* actual no of colors in image colormap */
Byte type; /* type of image */
Byte color_class; /* color class for this image */
Boolean delayed_creation;
float fg_gamma; /* image foreground gamma */
}XmHTMLRawImageData;
#define FreePixmap(DPY,PIX) if((PIX)!= None) tka->FreePixmap ((DPY),(PIX))
/* check whether the body image is fully loaded */
#define BodyImageLoaded(IMAGE) \
((IMAGE) ? (!ImageInfoDelayed((IMAGE)) && \
!ImageInfoProgressive((IMAGE))) : True)
/* XmHTMLImage macros */
#define ImageIsBackground(IMG) ((IMG)->options & IMG_ISBACKGROUND)
#define ImageIsInternal(IMG) ((IMG)->options & IMG_ISINTERNAL)
#define ImageIsCopy(IMG) ((IMG)->options & IMG_ISCOPY)
#define ImageIsAnim(IMG) ((IMG)->options & IMG_ISANIM)
#define ImageFrameRefresh(IMG) ((IMG)->options & IMG_FRAMEREFRESH)
#define ImageHasDimensions(IMG) ((IMG)->options & IMG_HASDIMENSIONS)
#define ImageHasState(IMG) ((IMG)->options & IMG_HASSTATE)
#define ImageInfoFreed(IMG) ((IMG)->options & IMG_INFOFREED)
#define ImageDelayedCreation(IMG) ((IMG)->options & IMG_DELAYED_CREATION)
#define ImageIsOrphaned(IMG) ((IMG)->options & IMG_ORPHANED)
#define ImageIsProgressive(IMG) ((IMG)->options & IMG_PROGRESSIVE)
/* XmImageInfo macros */
#define ImageInfoDelayed(INFO) ((INFO)->options & XmIMAGE_DELAYED)
#define ImageInfoFreeLater(INFO) ((INFO)->options & XmIMAGE_DEFERRED_FREE)
#define ImageInfoFreeNow(INFO) ((INFO)->options & XmIMAGE_IMMEDIATE_FREE)
#define ImageInfoScale(INFO) ((INFO)->options & XmIMAGE_ALLOW_SCALE)
#define ImageInfoRGBSingle(INFO) ((INFO)->options & XmIMAGE_RGB_SINGLE)
#define ImageInfoShared(INFO) ((INFO)->options & XmIMAGE_SHARED_DATA)
#define ImageInfoClipmask(INFO) ((INFO)->options & XmIMAGE_CLIPMASK)
#define ImageInfoDelayedCreation(INFO) \
((INFO)->options & XmIMAGE_DELAYED_CREATION)
#define ImageInfoProgressive(INFO) ((INFO)->options & XmIMAGE_PROGRESSIVE)
/* rewind the given image buffer */
#define RewindImageBuffer(IB) do{ \
(IB)->next = (size_t)0; \
(IB)->curr_pos = (IB)->buffer; \
}while(0)
/* free the given image buffer */
#define FreeImageBuffer(IB) { \
if((IB)->may_free) { \
free((IB)->file); \
free((IB)->buffer); \
free((IB)); \
(IB) = NULL; \
} \
}
/* allocate and initialize a rawImageData structure */
#define AllocRawImage(IMG, W, H) do { \
IMG = (XmHTMLRawImageData*)malloc(sizeof(XmHTMLRawImageData)); \
memset(IMG, 0, sizeof(XmHTMLRawImageData)); \
IMG->cmapsize = 0; \
IMG->bg = -1; \
IMG->width = W; \
IMG->height = H; \
IMG->data = (Byte*)calloc(W*H, sizeof(Byte)); \
IMG->delayed_creation = False; \
IMG->color_class = XmIMAGE_COLORSPACE_INDEXED; \
}while(0)
/* allocate and initialize a rawImageData structure with a colormap */
#define AllocRawImageWithCmap(IMG, W, H, SIZE) do { \
int i; \
IMG = (XmHTMLRawImageData*)malloc(sizeof(XmHTMLRawImageData)); \
memset(IMG, 0, sizeof(XmHTMLRawImageData)); \
IMG->cmap = (XCOLOR*)calloc(SIZE, sizeof(XCOLOR)); \
for(i = 0; i < SIZE; i++) GETP(IMG->cmap[i]) = i;\
IMG->cmapsize = SIZE; \
IMG->bg = -1; \
IMG->width = W; \
IMG->height = H; \
IMG->data = (Byte*)calloc(W*H, sizeof(Byte)); \
IMG->delayed_creation = False; \
}while(0)
/* allocate a colormap for the given rawImageData */
#define AllocRawImageCmap(IMG,SIZE) do { \
int i; \
IMG->cmap = (XCOLOR*)calloc(SIZE, sizeof(XCOLOR)); \
for(i = 0; i < SIZE; i++) GETP(IMG->cmap[i]) = i; \
IMG->cmapsize = SIZE; \
}while(0)
/* destroy allocated image. Only to be called upon error */
#define FreeRawImage(IMG) do{ \
if(IMG != NULL) { \
if(IMG->data) free(IMG->data); \
if(IMG->cmap) free(IMG->cmap); \
free(IMG); \
IMG = NULL; \
}\
}while(0)
/* reset a rawImageData structure */
#define ResetRawImage(IMG) do { \
memset(IMG, 0, sizeof(XmHTMLRawImageData)); \
if(IMG->cmap) free(IMG->cmap); /* erase existing colormap */ \
IMG->cmap = (XCOLOR*)NULL; \
IMG->cmapsize = 0; \
IMG->bg = -1; \
IMG->width = 0; \
IMG->height = 0; \
IMG->data = (Byte*)NULL; \
IMG->delayed_creation = False; \
}while(0)
/*****
* Definition of a W3C icon entity.
*****/
typedef struct {
char *escape;
char **data;
XmImageInfo *icon;
int len;
}IconEntity;
/* list of default icons */
extern IconEntity _XmHTMLIconEntities[];
#if 0
extern IconEntity _XmHTMLIconTags[];
#endif
extern Byte _XmHTMLGetImageType(ImageBuffer *ib);
extern ImageBuffer *_XmHTMLImageFileToBuffer(String file);
extern XmHTMLRawImageData *_XmHTMLReadBitmap(Widget html, ImageBuffer *ib);
extern XmHTMLRawImageData *_XmHTMLReadGIF(Widget html, ImageBuffer *ib);
extern XmImageInfo *_XmHTMLReadFLG(XmHTMLWidget html, ImageBuffer *ib);
extern size_t _XmHTMLGifReadOK(ImageBuffer *ib, unsigned char *buf, int len);
extern size_t _XmHTMLGifGetDataBlock(ImageBuffer *ib, unsigned char *buf);
extern unsigned char _XmHTMLIsGifAnimated(ImageBuffer *fd);
extern unsigned char _XmHTMLIsGzfAnimated(ImageBuffer *fd);
extern int _XmHTMLGifAnimInit(Widget html, ImageBuffer *ib,
XmHTMLRawImageData *data);
extern Boolean _XmHTMLGifAnimNextFrame(ImageBuffer *ib,
XmHTMLRawImageData *data, int *x, int *y, int *timeout, int *dispose);
extern void _XmHTMLGifAnimTerminate(ImageBuffer *ib);
extern XmHTMLRawImageData *_XmHTMLReadXPM(Widget html, ImageBuffer *ib);
extern XmHTMLRawImageData *_XmHTMLCreateXpmFromData(Widget html, char **data,
String src);
extern XmHTMLRawImageData *_XmHTMLReadPNG(Widget html, ImageBuffer *ib);
extern XmHTMLRawImageData *_XmHTMLReReadPNG(XmHTMLWidget html,
XmHTMLRawImageData *raw_data, int x, int y, Boolean is_body_image);
extern XmHTMLRawImageData *_XmHTMLReadJPEG(Widget html, ImageBuffer *ib);
extern XImage *_XmHTMLCreateXImage(XmHTMLWidget html, XCC xcc, Dimension width,
Dimension height, String url);
extern void _XmHTMLFillXImage(XmHTMLWidget html, XImage *ximage, XCC xcc,
Byte *data, unsigned long *xcolors, int *start, int *end);
extern XmHTMLImage *_XmHTMLNewImage(XmHTMLWidget html, String attributes,
Dimension *width, Dimension *height);
extern void _XmHTMLImageUpdateChilds(XmHTMLImage *image);
extern void _XmHTMLImageCheckDelayedCreation(XmHTMLWidget html);
extern void _XmHTMLMakeAnimation(XmHTMLWidget html, XmHTMLImage *image,
Dimension width, Dimension height);
extern Pixmap _XmHTMLInfoToPixmap(XmHTMLWidget html, XmHTMLImage *image,
XmImageInfo *info, Dimension width, Dimension height,
unsigned long *global_cmap, PIXMAP *clip);
extern XmImageStatus _XmHTMLReplaceOrUpdateImage(XmHTMLWidget html,
XmImageInfo *info, XmImageInfo *new_info, XmHTMLObjectTableElement *elePtr);
extern void _XmHTMLFreeImage(XmHTMLWidget html, XmHTMLImage *image);
extern void _XmHTMLFreeImageInfo(XmHTMLWidget html, XmImageInfo *info,
Boolean external);
extern void _XmHTMLReleaseImage(XmHTMLWidget html, XmHTMLImage *image);
extern void _XmHTMLLoadBodyImage(XmHTMLWidget html, String url);
extern String _XmHTMLImageGetIconAttribs(Widget w, int index);
/*********************************************************************
* @Module: quantize.c
* @Description : XmHTML color quantization and dithering routines
*
* @Exports:
* _XmHTMLQuantizeImage: quantize the given image data down to max_colors.
* _XmHTMLConvert24to8 : convert a 24bit image to an 8bit paletted one,
* quantizing if required.
* _XmHTMLPixelizeRGB : convert an RGB image to a 8bit paletted image.
* _XmHTMLDitherImage : dither the given image to a fixed palette.
*
**********************************************************************/
extern void _XmHTMLConvert24to8(Byte *data, XmHTMLRawImageData *img_data,
int max_colors, Byte mode);
extern void _XmHTMLQuantizeImage(XmHTMLRawImageData *img_data, int max_colors);
extern void _XmHTMLPixelizeRGB(Byte *rgb, XmHTMLRawImageData *img_data);
extern void _XmHTMLDitherImage(XmHTMLWidget html, XmHTMLRawImageData *img_data);
/*********************************************************************
* @Module: map.c
* @Description: XmHTML imagemap routines
*
* @Defines:
* struct _mapArea: structure identifying the shape and size of a HTML
* AREA definition.
*
* @Exports:
* _XmHTMLCreateImagemap : create an imagemap.
* _XmHTMLStoreImagemap : store an imagemap
* _XmHTMLAddAreaToMap : add an area to an imagemap.
* _XmHTMLGetImagemap : get the named imagemap
* _XmHTMLGetAnchorFromMap: return anchor data referenced by the given
* positions and imagemap.
* _XmHTMLCheckImagemaps : check for possible external imagemaps.
* _XmHTMLFreeImageMaps : free all imagemaps for a XmHTMLWidget.
* _XmHTMLDrawImagemapSelection: draw selection areas around each area
* in an imagemap.
*
**********************************************************************/
extern XmHTMLImageMap* _XmHTMLCreateImagemap(String name);
extern void _XmHTMLStoreImagemap(XmHTMLWidget html, XmHTMLImageMap *map);
extern void _XmHTMLAddAreaToMap(XmHTMLWidget html, XmHTMLImageMap *map,
XmHTMLObject *object);
extern XmHTMLImageMap *_XmHTMLGetImagemap(XmHTMLWidget html, String name);
extern XmHTMLAnchor *_XmHTMLGetAnchorFromMap(XmHTMLWidget html, int x, int y,
XmHTMLImage *image, XmHTMLImageMap *map);
extern void _XmHTMLCheckImagemaps(XmHTMLWidget html);
extern void _XmHTMLFreeImageMaps(XmHTMLWidget html);
extern void _XmHTMLDrawImagemapSelection(XmHTMLWidget html,
XmHTMLImage *image);
/*********************************************************************
* @Module: plc.c
* Description: XmHTML Progressive Loader Context interfacing routines.
*
* @Exports:
* _XmHTMLPLCCreate: create a PLC object suitable for progressive loading.
* _XmHTMLPLCCycler: main PLC cycler with dynamic timeout recalculation.
* _XmHTMLKillPLCCycler: kill and remove any outstanding PLC's
*
**********************************************************************/
extern PLCPtr _XmHTMLPLCCreate(XmHTMLWidget html, XtPointer priv_data,
String url, Byte type);
extern void _XmHTMLPLCCycler(XtPointer call_data, XtIntervalId *proc_id);
extern void _XmHTMLKillPLCCycler(XmHTMLWidget html);
extern void _XmHTMLPLCCheckIntervals(XmHTMLWidget html);
/*********************************************************************
* @Module: fonts.c
* @Description: XmHTML font loading & caching routines.
*
* @Exports:
* xmhtml_fn_sizes : array with scalable font sizes.
* xmhtml_basefont_sizes : array with basefont sizes.
* xmhtml_fn_fixed_sizes : array with fixed font sizes.
* _XmHTMLSelectFontCache: initialize and/or select a font cache
* (each display has a seperate one).
* _XmHTMLaddFontMapping : alias a known font to an unknown font.
* _XmHTMLLoadFont : load a font as specified by id and size.
* Properties are inherited from a given
* font.
* _XmHTMLLoadFontWithFace: load a font with a named face and size.
* Properties are inherited from a given
* font.
* _XmHTMLUnloadFonts : Release all fonts used by widget. Fonts
* are only unloaded when the last widget using
* a font cache has unloaded it's fonts.
*
**********************************************************************/
extern int xmhtml_fn_sizes[8];
extern int xmhtml_basefont_sizes[7];
extern int xmhtml_fn_fixed_sizes[2];
extern XmHTMLfont *_XmHTMLSelectFontCache(XmHTMLWidget html, Boolean reset);
extern void _XmHTMLaddFontMapping(XmHTMLWidget html, String name,
String family, int ptsz, Byte style, XmHTMLfont *font);
extern XmHTMLfont *_XmHTMLLoadFont(XmHTMLWidget html, htmlEnum font_id,
int size, XmHTMLfont *curr_font);
extern XmHTMLfont *_XmHTMLLoadFontWithFace(XmHTMLWidget html, int size,
String face, XmHTMLfont *curr_font);
extern void _XmHTMLUnloadFonts(XmHTMLWidget html);
/*********************************************************************
* @Module: events.c
* @Description: HTML4.0 event routines
*
* @Exports:
* _XmHTMLCheckCoreEvents: check for the HTML 4.0 core events.
* _XmHTMLCheckBodyEvents: check for the HTML 4.0 body events as well
* as the core events.
* _XmHTMLCheckFormEvents: check for the HTML 4.0 <FORM> events as well
* as the core events.
*
**********************************************************************/
extern AllEvents *_XmHTMLCheckCoreEvents(XmHTMLWidget html, String attributes,
unsigned long *mask_return);
extern AllEvents *_XmHTMLCheckBodyEvents(XmHTMLWidget html, String attributes,
unsigned long *mask_return);
extern AllEvents *_XmHTMLCheckFormEvents(XmHTMLWidget html, String attributes,
unsigned long *mask_return);
/*********************************************************************
* @Module: output.c
* @Description: XmHTML text output/conversion functions
*
* @Exports:
* _XmHTMLTextCheckAndConvertPaperDef: verify and convert a papertype
* definition to the appropriate papersize
* type.
* _XmHTMLTextGetPlain : return a plain text buffer;
* _XmHTMLTextGetFormatted : return a nicely formatted text buffer;
* _XmHTMLTextGetPS : convert to postscript.
*
**********************************************************************/
extern XmHTMLPaperSize *_XmHTMLTextCheckAndConvertPaperDef(XmHTMLWidget html,
XmHTMLPaperSize *pdef, Byte type);
extern String _XmHTMLTextGetPlain(XmHTMLWidget html, XmHTMLPaperSize *pdef,
XmHTMLObjectTableElement start, XmHTMLObjectTableElement end,
Byte options);
extern String _XmHTMLTextGetFormatted(XmHTMLWidget html, XmHTMLPaperSize *pdef,
XmHTMLObjectTableElement start, XmHTMLObjectTableElement end,
Byte options);
extern String _XmHTMLTextGetPS(XmHTMLWidget html, XmHTMLPaperSize *pdef,
XmHTMLObjectTableElement start, XmHTMLObjectTableElement end,
Byte options);
#endif /* XmHTML_ERROR_FUNCS */
/*********************************************************************
* @Module: error.c
* @Description: XmHTML warning/error functions
*
* @Exports:
* _XmHTMLWarning : Displays a warning message and continues.
* _XmHTMLError : Displays an error message and exits.
* __XmHTMLBadParent: Display a NULL/invalid parent warning message and
* continue.
* _XmHTMLAllocError: Displays an error message due to allocation
* problems and exits.
*
* @Note: There are two separate versions of XmHTML's error & warning
* functions. The debug versions include full location information while
* the normal build versions only contain the warning/error message.
* This allows us to reduce the data size of the normal build.
*
**********************************************************************/
#ifdef DEBUG
#define __WFUNC__(WIDGET_ID, FUNC) (Widget)WIDGET_ID, __FILE__, \
__LINE__, FUNC
extern void __XmHTMLWarning(
#if NeedVarargsPrototypes
Widget w, String module, int line, String routine,
String fmt, ...
#endif
);
extern void __XmHTMLError(
#if NeedVarargsPrototypes
Widget w, String module, int line, String routine,
String fmt, ...
#endif
);
extern void __XmHTMLBadParent(Widget w, String src_file, int line, String func);
#define _XmHTMLBadParent(W,FUNC) __XmHTMLBadParent(W,__FILE__,__LINE__,FUNC)
#else /* !DEBUG */
#define __WFUNC__(WIDGET_ID, FUNC) (Widget)WIDGET_ID
extern void __XmHTMLWarning(
#if NeedVarargsPrototypes
Widget w, String fmt, ...
#endif
);
extern void __XmHTMLError(
#if NeedVarargsPrototypes
Widget w, String fmt, ...
#endif
);
extern void __XmHTMLBadParent(Widget w, String func);
#define _XmHTMLBadParent(W,FUNC) __XmHTMLBadParent(W,FUNC)
#endif /* DEBUG */
#define _XmHTMLWarning __XmHTMLWarning
#define _XmHTMLError __XmHTMLError
extern void _XmHTMLAllocError(Widget w, char *module, char *routine,
char *func, int size);
#ifdef _XFUNCPROTOEND
_XFUNCPROTOEND
#else
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif
/* Don't add anything after this endif! */
#endif /* _XmHTMLI_h_ */
|