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
|
<html><head><TITLE>Description of OverlayScript</TITLE><BASE TARGET="_parent" ></head>
<body BGCOLOR=#FFFFFF>
<FONT FACE=Helvetica>
<DL><DT>
<FONT SIZE=4>
class
</FONT>
<FONT SIZE=5><B>OverlayScript</B></FONT>
<FONT SIZE=4> : public <A HREF="OverlayPS.html" >OverlayPS</A> </FONT>
<A HREF="index.html">(Return to index)</A>
<br><br>
<DD><FONT FACE=Times SIZE=4>
serialized view of <A HREF="OverlayComp.html" >OverlayComp</A>.<br><br>
<B>Type:</B><br>
<UL>
Instantiable
</UL>
<br>
<B>Base Classes:</B><br>
<UL><FONT FACE=Helvetica SIZE=3>
public <A HREF="OverlayPS.html" >OverlayPS</A>
</FONT></UL>
<br>
<A HREF=derivedclasses.html#OverlayScript><B>Derived Classes</B></A>
<p>
<B>Include file:</B><br>
<UL><FONT FACE=Helvetica SIZE=3>
OverlayUnidraw/scriptview.h
</FONT></UL>
<br>
<B>Description:</B><P> the <A HREF="OverlayScript.html" >OverlayScript</A> class hierarchy is a tree of <A HREF="ExternView.html" >ExternView</A> classes
that are derived from <A HREF="OverlayPS.html" >OverlayPS</A> and <A HREF="PostScriptView.html" >PostScriptView</A> for convenience,
to inherit a complete mechanism for writing and reading graphical data.
<p>
This capability is similar to the serialization mechanism of JavaBeans,
but there is no need for a versioning system because the format used
for the ASCII serialization supports arbitrary extension of an object's
format by adding defaulted keyword-prefixed arguments.
<p>
An older program can read newer formats, because the deserialization
is set up to convert unknown keyword arguments into attributes on
in a property list. A newer program can read older formats by
using default values for missing keyword-prefixed arguments.
<br><br>
</DL></FONT>
<FONT FACE=Times SIZE=4><B>Public:</B></FONT><br><br><UL>
<DT><FONT FACE=Helvetica>boolean
<A NAME="DefaultGS()">
<B>DefaultGS</B> () </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return true if this is default gs, with no brush, colors, font, or pattern
specified.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual boolean
<A NAME="EmitGS(ostream&&&COMMClipboard*&&COMMboolean)">
<B>EmitGS</B> (ostream&, <A HREF="Clipboard.html" >Clipboard</A>*, boolean) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
output a decription of this component's graphic state, and append a
copy to a clipboard used to avoid outputting it twice.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual boolean
<A NAME="EmitPic(ostream&&&COMMClipboard*&&COMMClipboard*&&COMMboolean)">
<B>EmitPic</B> (ostream&, <A HREF="Clipboard.html" >Clipboard</A>*, <A HREF="Clipboard.html" >Clipboard</A>*, boolean) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
output a decription of this component's compound graphic, and append a
copy to a clipboard used to avoid outputting it twice.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual boolean
<A NAME="EmitPts(ostream&&&COMMClipboard*&&COMMboolean)">
<B>EmitPts</B> (ostream&, <A HREF="Clipboard.html" >Clipboard</A>*, boolean) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
output a decription of this component's point list, and append a
copy to a clipboard used to avoid outputting it twice.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="FullGS(ostream&)">
<B>FullGS</B> (ostream&) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
output a full description of a graphic state.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual boolean
<A NAME="GetByPathnameFlag()">
<B>GetByPathnameFlag</B> () </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return flag that indicates whether to serialize component
by only a pathname or by the raw data.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual ClassId
<A NAME="GetClassId()">
<B>GetClassId</B> () </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual <A HREF="Clipboard.html" >Clipboard</A>*
<A NAME="GetGSList()">
<B>GetGSList</B> () </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return pointer to clipboard of components with unique graphic states.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual <A HREF="Clipboard.html" >Clipboard</A>*
<A NAME="GetPicList()">
<B>GetPicList</B> () </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return pointer to clipboard of components with unique compound graphics.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual <A HREF="Clipboard.html" >Clipboard</A>*
<A NAME="GetPtsList()">
<B>GetPtsList</B> () </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return pointer to clipboard of components with unique point lists.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>int
<A NAME="Indent(ostream&&&COMMintextra=0)">
<B>Indent</B> (ostream&, int extra = 0) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method to indent nested object output.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual boolean
<A NAME="IsA(ClassId)">
<B>IsA</B> (ClassId) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica><A HREF="Iterator.html" >Iterator</A>
<A NAME="MatchedGS(Clipboard*&&COMMint&)">
<B>MatchedGS</B> (<A HREF="Clipboard.html" >Clipboard</A>*, int&) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return index of where the graphic state of this component
matches the graphic state of a component in the clipboard.
return iterator that points to where the graphic state of this component
matches the graphic state of a component in the clipboard.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica><A HREF="Iterator.html" >Iterator</A>
<A NAME="MatchedGS(Clipboard*&&COMMint&)">
<B>MatchedGS</B> (<A HREF="Clipboard.html" >Clipboard</A>*, int&) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return index of where the graphic state of this component
matches the graphic state of a component in the clipboard.
return iterator that points to where the graphic state of this component
matches the graphic state of a component in the clipboard.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica><A HREF="Iterator.html" >Iterator</A>
<A NAME="MatchedPic(Clipboard*&&COMMint&)">
<B>MatchedPic</B> (<A HREF="Clipboard.html" >Clipboard</A>*, int&) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return index of where the compound graphic of this component
matches the compound graphic of a component in the clipboard.
return iterator that points to where the compound graphic of this component
matches the compound graphic of a component in the clipboard.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica><A HREF="Iterator.html" >Iterator</A>
<A NAME="MatchedPic(Clipboard*&&COMMint&)">
<B>MatchedPic</B> (<A HREF="Clipboard.html" >Clipboard</A>*, int&) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return index of where the compound graphic of this component
matches the compound graphic of a component in the clipboard.
return iterator that points to where the compound graphic of this component
matches the compound graphic of a component in the clipboard.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica><A HREF="Iterator.html" >Iterator</A>
<A NAME="MatchedPts(Clipboard*&&COMMint&)">
<B>MatchedPts</B> (<A HREF="Clipboard.html" >Clipboard</A>*, int&) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return index of where the point list of this component
matches the point list of a component in the clipboard.
return iterator that points to where the point list of this component
matches the point list of a component in the clipboard.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica><A HREF="Iterator.html" >Iterator</A>
<A NAME="MatchedPts(Clipboard*&&COMMint&)">
<B>MatchedPts</B> (<A HREF="Clipboard.html" >Clipboard</A>*, int&) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
return index of where the point list of this component
matches the point list of a component in the clipboard.
return iterator that points to where the point list of this component
matches the point list of a component in the clipboard.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="MinGS(ostream&)">
<B>MinGS</B> (ostream&) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
output a minimal description of a graphic state.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>
<A NAME="OverlayScript(OverlayComp*=nil)">
<B>OverlayScript</B> (<A HREF="OverlayComp.html" >OverlayComp</A>* = nil) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadAnnotation(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadAnnotation</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
an annotation.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadBgColor(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadBgColor</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
a background-color description.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadBrush(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadBrush</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
all brush descriptions except for a none-brush.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadFgColor(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadFgColor</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
a foreground-color description.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadFillBg(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadFillBg</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
the fill-background flag of a graphic state.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadFont(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadFont</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
a font description.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadGS(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadGS</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
a description of graphic state.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadGrayPat(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadGrayPat</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
the gray-pattern description.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadNoneBr(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadNoneBr</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
the none-brush description.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadNonePat(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadNonePat</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
the none-pattern description.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadOther(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadOther</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
any keyword-prefixed argument with unknown keyword symbol, by
adding the value to a components property list (an <A HREF="AttributeList.html" >AttributeList</A>).
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadPattern(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadPattern</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
all brush descriptions except for a none-pattern and gray-pattern.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static int
<A NAME="ReadTransform(istream&&&COMMvoid*&&COMMvoid*&&COMMvoid*&&COMMvoid*)">
<B>ReadTransform</B> (istream&, void*, void*, void*, void*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
method used by <A HREF="OverlayComp.html" >OverlayComp</A> istream constructor to deserialize
a 6-parameter affine transform (a 2x3 matrix).
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="StencilGS(ostream&)">
<B>StencilGS</B> (ostream&) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
output a description of a graphic state adequate for a stencil graphic (<A HREF="UStencil.html" >UStencil</A>).
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="TextGS(ostream&)">
<B>TextGS</B> (ostream&) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
output a description of a graphic state adequate for a text graphic (<A HREF="TextGraphic.html" >TextGraphic</A>).
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>static boolean
<A NAME="skip_comp(istream&in)">
<B>skip_comp</B> (istream& in) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
skip the text for the current component while de-serializing.
<br>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual
<A NAME="~OverlayScript()">
<B>~OverlayScript</B> () </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
</UL><br><br>
<FONT FACE=Times SIZE=4><B>Protected:</B></FONT><br><br><UL>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="Annotation(ostream&out)">
<B>Annotation</B> (ostream& out) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>void
<A NAME="Attributes(ostream&out)">
<B>Attributes</B> (ostream& out) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="BgColor(ostream&out)">
<B>BgColor</B> (ostream& out) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="Brush(ostream&out)">
<B>Brush</B> (ostream& out) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica><A HREF="OverlayScript.html" >OverlayScript</A>*
<A NAME="CreateOverlayScript(OverlayComp*)">
<B>CreateOverlayScript</B> (<A HREF="OverlayComp.html" >OverlayComp</A>*) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="FgColor(ostream&out)">
<B>FgColor</B> (ostream& out) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="FillBg(ostream&out)">
<B>FillBg</B> (ostream& out) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="Font(ostream&out)">
<B>Font</B> (ostream& out) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual <A HREF="ComponentView.html" >ComponentView</A>*
<A NAME="GetParent()">
<B>GetParent</B> () </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="Pattern(ostream&out)">
<B>Pattern</B> (ostream& out) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="SetParent(ComponentView*child&&COMMComponentView*parent)">
<B>SetParent</B> (<A HREF="ComponentView.html" >ComponentView</A>* child, <A HREF="ComponentView.html" >ComponentView</A>* parent) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="Transformation(ostream&out)">
<B>Transformation</B> (ostream& out) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica>virtual void
<A NAME="Transformation(ostream&out&&COMMchar*keyword&&COMMGraphic*gr=nil)">
<B>Transformation</B> (ostream& out, char* keyword, <A HREF="Graphic.html" >Graphic</A>* gr = nil) </FONT>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
<DT><FONT FACE=Helvetica><A HREF="OverlayScript.html" >OverlayScript</A>*
<A NAME="_parent">
<B>_parent</B>
<DD><FONT FACE=Times SIZE=3><UL>
<br>
</UL></FONT><br>
</UL><br><br>
<A HREF="../index.html">(more documentation)</A>
<br><br>
</FONT>
</body>
</html>
|