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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>GTK+ Foundation Classes</title>
<link href="gfc.css" rel="stylesheet" type="text/css">
<meta content="The GFC Development Team" name="author">
<meta content="Core Library Reference Manual" name="description">
</head>
<body style="color: rgb(0, 0, 0); background-color: rgb(243, 244, 248);"
alink="#000099" link="#000099" vlink="#990099">
<table style="text-align: left; width: 1227px; height: 117px;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td
style="text-align: center; background-color: rgb(255, 255, 255); width: 220px; vertical-align: top;"><img
alt="GFC Logo" src="../images/gfc.png"
style="width: 207px; height: 92px;"></td>
<td
style="text-align: center; background-color: rgb(87, 107, 152); vertical-align: middle;"><img
alt="GFC Title Logo" src="../images/gfc-title.png"
style="width: 418px; height: 76px;"><br>
</td>
</tr>
<tr>
<td
style="text-align: center; background-color: rgb(65, 77, 104); vertical-align: middle;"><big><span
style="color: rgb(255, 255, 153); font-weight: bold;">Reference Manual</span></big><br>
</td>
<td
style="text-align: center; background-color: rgb(148, 164, 200); vertical-align: middle;"><small
style="font-family: helvetica,arial,sans-serif;"><a
href="../html/index.html">Main Page</a> | <a
href="../html/namespaces.html">Namespace List</a> | <a
href="classes.html">Alphabetical List</a> | <a
href="../html/annotated.html">Class List</a> | <a
href="../html/files.html">File List</a></small><br>
</td>
</tr>
</tbody>
</table>
<small> </small>
</body>
</html>
<!-- Generated by Doxygen 1.3.8 -->
<h1>GFC::Pango::FontDescription Class Reference</h1>A PangoFontDescription C++ wrapper class.
<a href="#_details">More...</a>
<p>
<code>#include <<a class="el" href="font_8hh-source.html">gfc/pango/font.hh</a>></code>
<p>
<p>Inheritance diagram for GFC::Pango::FontDescription:
<p><center><img src="classGFC_1_1Pango_1_1FontDescription.png" usemap="#GFC::Pango::FontDescription_map" border="0" alt=""></center>
<map name="GFC::Pango::FontDescription_map">
<area doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Boxed.html" alt="GFC::G::Boxed" shape="rect" coords="0,112,175,136">
<area doxygen="gfccore.tag:" href="classGFC_1_1Object.html" alt="GFC::Object" shape="rect" coords="0,56,175,80">
<area doxygen="gfccore.tag:" href="classGFC_1_1Trackable.html" alt="GFC::Trackable" shape="rect" coords="0,0,175,24">
</map>
<a href="classGFC_1_1Pango_1_1FontDescription-members.html">List of all members.</a><h2>Public Member Functions</h2>
<tr><td colspan="2"><div class="groupHeader">Constructors</div></td></tr>
<ul>
<li><a class="anchor" name="z1154_0" doxytag="GFC::Pango::FontDescription::FontDescription" ></a>
<a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1154_0">FontDescription</a> ()
<dl class="el"><dd class="mdescRight">Construct a new font description with all fields unset. <br></dl><li><a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1154_1">FontDescription</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &desc)
<dl class="el"><dd class="mdescRight">Creates a new font description from a string representation. <a href="#z1154_1"></a><br></dl><li><a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1154_2">FontDescription</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &family, int size, <a class="el" href="namespaceGFC_1_1Pango.html#a136">Style</a> style=STYLE_NORMAL, <a class="el" href="namespaceGFC_1_1Pango.html#a138">Weight</a> weight=WEIGHT_NORMAL)
<dl class="el"><dd class="mdescRight">Construct a new font description with the specifed <em>family, size, style and weight</em>. <a href="#z1154_2"></a><br></dl><li><a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1154_3">FontDescription</a> (PangoFontDescription *desc)
<dl class="el"><dd class="mdescRight">Construct a new font description from an existing PangoFontDescription. <a href="#z1154_3"></a><br></dl><li><a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1154_4">FontDescription</a> (PangoFontDescription *desc, bool <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Boxed.html#z5_0">copy</a>)
<dl class="el"><dd class="mdescRight">Construct a new font description from an existing PangoFontDescription. <a href="#z1154_4"></a><br></dl><li><a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1154_5">FontDescription</a> (const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> &src)
<dl class="el"><dd class="mdescRight">Copy constructor. <a href="#z1154_5"></a><br></dl><li><a class="anchor" name="z1154_6" doxytag="GFC::Pango::FontDescription::~FontDescription" ></a>
virtual <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1154_6">~FontDescription</a> ()
<dl class="el"><dd class="mdescRight">Destructor. <br></dl><li><a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> & <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1154_7">operator=</a> (const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> &src)
<dl class="el"><dd class="mdescRight">Assignment operator. <a href="#z1154_7"></a><br></dl></ul>
<tr><td colspan="2"><div class="groupHeader">Accessors</div></td></tr>
<ul>
<li><a class="anchor" name="z1155_0" doxytag="GFC::Pango::FontDescription::pango_font_description" ></a>
PangoFontDescription * <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_0">pango_font_description</a> () const
<dl class="el"><dd class="mdescRight">Get a pointer to the PangoFontDescription structure. <br></dl><li><a class="anchor" name="z1155_1" doxytag="GFC::Pango::FontDescription::operator PangoFontDescription *" ></a>
<a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_1">operator PangoFontDescription *</a> () const
<dl class="el"><dd class="mdescRight">Conversion operator; safely converts a <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> to a PangoFontDescription pointer. <br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_2">get_family</a> () const
<dl class="el"><dd class="mdescRight">Gets the family name field of a font description (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_4">set_family()</a>). <a href="#z1155_2"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Pango.html#a136">Style</a> <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_3">get_style</a> () const
<dl class="el"><dd class="mdescRight">Gets the style field of a font description (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_5">set_style()</a>). <a href="#z1155_3"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Pango.html#a137">Variant</a> <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_4">get_variant</a> () const
<dl class="el"><dd class="mdescRight">Gets the variant field of a font description (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_6">set_variant()</a>). <a href="#z1155_4"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Pango.html#a138">Weight</a> <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_5">get_weight</a> () const
<dl class="el"><dd class="mdescRight">Gets the weight field of a font description (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_7">set_weight()</a>). <a href="#z1155_5"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Pango.html#a139">Stretch</a> <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_6">get_stretch</a> () const
<dl class="el"><dd class="mdescRight">Gets the stretch field of a font description (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_8">set_stretch()</a>). <a href="#z1155_6"></a><br></dl><li>int <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_7">get_size</a> () const
<dl class="el"><dd class="mdescRight">Gets the size field of a font description. <a href="#z1155_7"></a><br></dl><li><a class="el" href="namespaceGFC_1_1Pango.html#a26">FontMaskField</a> <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_8">get_set_fields</a> () const
<dl class="el"><dd class="mdescRight">Determines which fields in a font description have been set. <a href="#z1155_8"></a><br></dl><li>bool <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_9">equal</a> (const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> &other) const
<dl class="el"><dd class="mdescRight">Compares this font description with <em>other</em> for equality. <a href="#z1155_9"></a><br></dl><li>bool <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_10">operator==</a> (const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> &other) const
<dl class="el"><dd class="mdescRight">Equality operator; compares this font description with <em>other</em> for equality. <a href="#z1155_10"></a><br></dl><li>bool <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_11">operator!=</a> (const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> &other) const
<dl class="el"><dd class="mdescRight">Inequality operator; compares this font description with <em>other</em> for inequality. <a href="#z1155_11"></a><br></dl></ul>
<tr><td colspan="2"><div class="groupHeader">Methods</div></td></tr>
<ul>
<li>unsigned int <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_0">hash</a> () const
<dl class="el"><dd class="mdescRight">Computes a hash of a font description object suitable to be used, for example, as an argument to g_hash_table_new(). <a href="#z1156_0"></a><br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_1">to_string</a> () const
<dl class="el"><dd class="mdescRight">Creates a string representation of the font description. <a href="#z1156_1"></a><br></dl><li><a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_2">to_filename</a> () const
<dl class="el"><dd class="mdescRight">Creates a filename representation of a font description. <a href="#z1156_2"></a><br></dl><li>void <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_4">set_family</a> (const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> &family)
<dl class="el"><dd class="mdescRight">Sets the family name field of a font description. <a href="#z1156_4"></a><br></dl><li>void <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_5">set_style</a> (<a class="el" href="namespaceGFC_1_1Pango.html#a136">Style</a> style)
<dl class="el"><dd class="mdescRight">Sets the style field of a font description. <a href="#z1156_5"></a><br></dl><li>void <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_6">set_variant</a> (<a class="el" href="namespaceGFC_1_1Pango.html#a137">Variant</a> variant)
<dl class="el"><dd class="mdescRight">Sets the variant field of a font description. <a href="#z1156_6"></a><br></dl><li>void <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_7">set_weight</a> (<a class="el" href="namespaceGFC_1_1Pango.html#a138">Weight</a> weight)
<dl class="el"><dd class="mdescRight">Sets the weight field of a font description. <a href="#z1156_7"></a><br></dl><li>void <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_8">set_stretch</a> (<a class="el" href="namespaceGFC_1_1Pango.html#a139">Stretch</a> stretch)
<dl class="el"><dd class="mdescRight">Sets the stretch field of a font description. <a href="#z1156_8"></a><br></dl><li>void <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_9">set_size</a> (int size)
<dl class="el"><dd class="mdescRight">Sets the size field of a font description. <a href="#z1156_9"></a><br></dl><li>void <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_10">unset_fields</a> (<a class="el" href="namespaceGFC_1_1Pango.html#a26">FontMaskField</a> to_unset)
<dl class="el"><dd class="mdescRight">Unsets some of the fields in a font description. <a href="#z1156_10"></a><br></dl><li>void <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_11">merge</a> (const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> &desc_to_merge, bool replace_existing)
<dl class="el"><dd class="mdescRight">Merges the fields that are set in desc_to_merge into the fields in the font description. <a href="#z1156_11"></a><br></dl><li>bool <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_12">better_match</a> (const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> &new_match, const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> *old_match=0) const
<dl class="el"><dd class="mdescRight">Determines if the style attributes of <em>new_match</em> are a closer match for the font description than <em>old_match</em>, or if old_match is null, determines if <em>new_match</em> is a match at all. <a href="#z1156_12"></a><br></dl></ul>
<hr><a name="_details"></a><h2>Detailed Description</h2>
A PangoFontDescription C++ wrapper class.
<p>
<a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> represents the description of an ideal font. These objects are used both to list what fonts are available on the system and also for specifying the characteristics of a font to load.
<p>
<hr><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" name="z1154_1" doxytag="GFC::Pango::FontDescription::FontDescription" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> GFC::Pango::FontDescription::FontDescription </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>desc</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Creates a new font description from a string representation.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>desc</em> </td><td>A string representation of a font description.</td></tr>
</table>
</dl>
<br>
See <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_1">to_string()</a> for a description of the format of the string representation. The family list in the string description will only have a terminating comma if the last word of the list is a valid style option. </td>
</tr>
</table>
<a class="anchor" name="z1154_2" doxytag="GFC::Pango::FontDescription::FontDescription" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> GFC::Pango::FontDescription::FontDescription </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> & </td>
<td class="mdname" nowrap> <em>family</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>int </td>
<td class="mdname" nowrap> <em>size</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap><a class="el" href="namespaceGFC_1_1Pango.html#a136">Style</a> </td>
<td class="mdname" nowrap> <em>style</em> = <code>STYLE_NORMAL</code>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap><a class="el" href="namespaceGFC_1_1Pango.html#a138">Weight</a> </td>
<td class="mdname" nowrap> <em>weight</em> = <code>WEIGHT_NORMAL</code></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Construct a new font description with the specifed <em>family, size, style and weight</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>family</em> </td><td>A string representing the family name. </td></tr>
<tr><td></td><td valign=top><em>size</em> </td><td>The size for the font description in pango units (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_9">set_size()</a>). </td></tr>
<tr><td></td><td valign=top><em>style</em> </td><td>The style for the font description. </td></tr>
<tr><td></td><td valign=top><em>weight</em> </td><td>The weight for the font description. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="z1154_3" doxytag="GFC::Pango::FontDescription::FontDescription" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> GFC::Pango::FontDescription::FontDescription </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">PangoFontDescription * </td>
<td class="mdname1" valign="top" nowrap> <em>desc</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Construct a new font description from an existing PangoFontDescription.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>desc</em> </td><td>A pointer to a PangoFontDescription.</td></tr>
</table>
</dl>
<br>
The <em>desc</em> can be a newly created PangoFontDescription or an existing PangoFontDescription. The font description object created is a temporary object. It doesn't take over the ownership of PangoFontDescription and PangoFontDescription is not freed by the destructor. </td>
</tr>
</table>
<a class="anchor" name="z1154_4" doxytag="GFC::Pango::FontDescription::FontDescription" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> GFC::Pango::FontDescription::FontDescription </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">PangoFontDescription * </td>
<td class="mdname" nowrap> <em>desc</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>bool </td>
<td class="mdname" nowrap> <em>copy</em></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Construct a new font description from an existing PangoFontDescription.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>desc</em> </td><td>A pointer to a PangoFontDescription. </td></tr>
<tr><td></td><td valign=top><em>copy</em> </td><td>Whether the <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> object should make a copy of PangoFontDescription or not.</td></tr>
</table>
</dl>
<br>
The <em>desc</em> can be a newly created PangoFontDescription or an existing PangoFontDescription. If <em>copy</em> is true <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> will make a copy of PangoFontDescription. If <em>copy</em> is false <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> wont make a copy but instead takes over the ownership of PangoFontDescription. Either way, the destructor will free PangoFontDescription when the <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> object is destroyed. This constructor is used by <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Boxed.html#z6_0">G::Boxed::wrap()</a> to wrap PangoFontDescription objects in a C++ wrapper. </td>
</tr>
</table>
<a class="anchor" name="z1154_5" doxytag="GFC::Pango::FontDescription::FontDescription" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> GFC::Pango::FontDescription::FontDescription </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>src</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Copy constructor.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>src</em> </td><td>The source <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a>. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="z1156_12" doxytag="GFC::Pango::FontDescription::better_match" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> bool GFC::Pango::FontDescription::better_match </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> & </td>
<td class="mdname" nowrap> <em>new_match</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> * </td>
<td class="mdname" nowrap> <em>old_match</em> = <code>0</code></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines if the style attributes of <em>new_match</em> are a closer match for the font description than <em>old_match</em>, or if old_match is null, determines if <em>new_match</em> is a match at all.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>new_match</em> </td><td>A <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a>. </td></tr>
<tr><td></td><td valign=top><em>old_match</em> </td><td>A <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a>, or null.</td></tr>
</table>
</dl>
<br>
Approximate matching is done for weight and style; other attributes must match exactly. </td>
</tr>
</table>
<a class="anchor" name="z1155_9" doxytag="GFC::Pango::FontDescription::equal" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> bool GFC::Pango::FontDescription::equal </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>other</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Compares this font description with <em>other</em> for equality.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>other:</em> </td><td>Another <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a>. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if the two font descriptions are proveably identical.</dd></dl>
<br>
Two font descriptions may result in identical fonts being loaded, but still compare false. </td>
</tr>
</table>
<a class="anchor" name="z1155_2" doxytag="GFC::Pango::FontDescription::get_family" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> GFC::Pango::FontDescription::get_family </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets the family name field of a font description (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_4">set_family()</a>).
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The family name field, or null if not previously set. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="z1155_8" doxytag="GFC::Pango::FontDescription::get_set_fields" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Pango.html#a26">FontMaskField</a> GFC::Pango::FontDescription::get_set_fields </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines which fields in a font description have been set.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>A bitmask with <a class="el" href="namespaceGFC_1_1Pango.html#a140">Pango::FontMask</a> bits set corresponding to the fields in desc that have been set. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="z1155_7" doxytag="GFC::Pango::FontDescription::get_size" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> int GFC::Pango::FontDescription::get_size </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets the size field of a font description.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The size field for the font description in pango units.</dd></dl>
<br>
There are PANGO_SCALE pango units in one device unit - for fonts, font points are the device unit. Returns 0 if the stretch field has not previously been set. <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_8">get_set_fields()</a> to find out if the field was explicitely set or not. </td>
</tr>
</table>
<a class="anchor" name="z1155_6" doxytag="GFC::Pango::FontDescription::get_stretch" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Pango.html#a139">Stretch</a> GFC::Pango::FontDescription::get_stretch </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets the stretch field of a font description (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_8">set_stretch()</a>).
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The stretch field for the font description.</dd></dl>
<br>
Use <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_8">get_set_fields()</a> to find out if the field was explicitely set or not. </td>
</tr>
</table>
<a class="anchor" name="z1155_3" doxytag="GFC::Pango::FontDescription::get_style" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Pango.html#a136">Style</a> GFC::Pango::FontDescription::get_style </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets the style field of a font description (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_5">set_style()</a>).
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The style field for the font description.</dd></dl>
<br>
Use <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_8">get_set_fields()</a> to find out if the field was explicitely set or not. </td>
</tr>
</table>
<a class="anchor" name="z1155_4" doxytag="GFC::Pango::FontDescription::get_variant" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Pango.html#a137">Variant</a> GFC::Pango::FontDescription::get_variant </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets the variant field of a font description (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_6">set_variant()</a>).
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The variant field for the font description.</dd></dl>
<br>
Use <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_8">get_set_fields()</a> to find out if the field was explicitely set or not. </td>
</tr>
</table>
<a class="anchor" name="z1155_5" doxytag="GFC::Pango::FontDescription::get_weight" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="namespaceGFC_1_1Pango.html#a138">Weight</a> GFC::Pango::FontDescription::get_weight </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets the weight field of a font description (see <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_7">set_weight()</a>).
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The weight field for the font description.</dd></dl>
<br>
Use <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1155_8">get_set_fields()</a> to find out if the field was explicitely set or not. </td>
</tr>
</table>
<a class="anchor" name="z1156_0" doxytag="GFC::Pango::FontDescription::hash" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> unsigned int GFC::Pango::FontDescription::hash </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Computes a hash of a font description object suitable to be used, for example, as an argument to g_hash_table_new().
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The hash value. </dd></dl>
</td>
</tr>
</table>
<a class="anchor" name="z1156_11" doxytag="GFC::Pango::FontDescription::merge" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void GFC::Pango::FontDescription::merge </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> & </td>
<td class="mdname" nowrap> <em>desc_to_merge</em>, </td>
</tr>
<tr>
<td class="md" nowrap align="right"></td>
<td></td>
<td class="md" nowrap>bool </td>
<td class="mdname" nowrap> <em>replace_existing</em></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Merges the fields that are set in desc_to_merge into the fields in the font description.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>desc_to_merge</em> </td><td>The font description to merge from. </td></tr>
<tr><td></td><td valign=top><em>replace_existing</em> </td><td>If true, replace fields in the font description with the corresponding values from <em>desc_to_merge</em>, even if they are already exist.</td></tr>
</table>
</dl>
<br>
If <em>replace_existing</em> is false, only fields in desc that are not already set are affected. If true, then fields that are already set will be replaced as well. </td>
</tr>
</table>
<a class="anchor" name="z1155_11" doxytag="GFC::Pango::FontDescription::operator!=" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> bool GFC::Pango::FontDescription::operator!= </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>other</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Inequality operator; compares this font description with <em>other</em> for inequality.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>other:</em> </td><td>Another <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a>. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if the two font descriptions are not identical.</dd></dl>
<br>
Two font descriptions may result in identical fonts being loaded, but still compare false. </td>
</tr>
</table>
<a class="anchor" name="z1154_7" doxytag="GFC::Pango::FontDescription::operator=" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a>& GFC::Pango::FontDescription::operator= </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>src</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Assignment operator.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>src</em> </td><td>The source <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a>. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a class="anchor" name="z1155_10" doxytag="GFC::Pango::FontDescription::operator==" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> bool GFC::Pango::FontDescription::operator== </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>other</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Equality operator; compares this font description with <em>other</em> for equality.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>other:</em> </td><td>Another <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a>. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if the two font descriptions are proveably identical.</dd></dl>
<br>
Two font descriptions may result in identical fonts being loaded, but still compare false. </td>
</tr>
</table>
<a class="anchor" name="z1156_4" doxytag="GFC::Pango::FontDescription::set_family" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void GFC::Pango::FontDescription::set_family </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>family</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets the family name field of a font description.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>family</em> </td><td>A string representing the family name.</td></tr>
</table>
</dl>
<br>
The family name represents a family of related font styles, and will resolve to a particular <a class="el" href="classGFC_1_1Pango_1_1FontFamily.html">FontFamily</a>. In some uses of <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html">FontDescription</a>, it is also possible to use a comma separated list of family names for this field. </td>
</tr>
</table>
<a class="anchor" name="z1156_9" doxytag="GFC::Pango::FontDescription::set_size" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void GFC::Pango::FontDescription::set_size </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">int </td>
<td class="mdname1" valign="top" nowrap> <em>size</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets the size field of a font description.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>size</em> </td><td>The size for the font description in pango units.</td></tr>
</table>
</dl>
<br>
There are PANGO_SCALE <a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> units in one device unit (device unit is a point, for font sizes). </td>
</tr>
</table>
<a class="anchor" name="z1156_8" doxytag="GFC::Pango::FontDescription::set_stretch" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void GFC::Pango::FontDescription::set_stretch </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Pango.html#a139">Stretch</a> </td>
<td class="mdname1" valign="top" nowrap> <em>stretch</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets the stretch field of a font description.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>stretch</em> </td><td>The stretch for the font description.</td></tr>
</table>
</dl>
<br>
The stretch field specifies how narrow or wide the font should be. </td>
</tr>
</table>
<a class="anchor" name="z1156_5" doxytag="GFC::Pango::FontDescription::set_style" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void GFC::Pango::FontDescription::set_style </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Pango.html#a136">Style</a> </td>
<td class="mdname1" valign="top" nowrap> <em>style</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets the style field of a font description.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>style</em> </td><td>The style for the font description.</td></tr>
</table>
</dl>
<br>
The <a class="el" href="namespaceGFC_1_1Pango.html#a136">Pango::Style</a> enumeration describes whether the font is slanted and the manner in which it is slanted; it can be either STYLE_NORMAL, STYLE_ITALIC, or STYLE_OBLIQUE. Most fonts will either have a italic style or an oblique style, but not both, and font matching in <a class="el" href="namespaceGFC_1_1Pango.html">Pango</a> will match italic specifications with oblique fonts and vice-versa if an exact match is not found. </td>
</tr>
</table>
<a class="anchor" name="z1156_6" doxytag="GFC::Pango::FontDescription::set_variant" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void GFC::Pango::FontDescription::set_variant </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Pango.html#a137">Variant</a> </td>
<td class="mdname1" valign="top" nowrap> <em>variant</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets the variant field of a font description.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>variant</em> </td><td>The variant type for the font description.</td></tr>
</table>
</dl>
<br>
The Variant can either be VARIANT_NORMAL or VARIANT_SMALL_CAPS. </td>
</tr>
</table>
<a class="anchor" name="z1156_7" doxytag="GFC::Pango::FontDescription::set_weight" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void GFC::Pango::FontDescription::set_weight </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Pango.html#a138">Weight</a> </td>
<td class="mdname1" valign="top" nowrap> <em>weight</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets the weight field of a font description.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>weight</em> </td><td>The weight for the font description.</td></tr>
</table>
</dl>
<br>
The weight field specifies how bold or light the font should be. In addition to the values of the <a class="el" href="namespaceGFC_1_1Pango.html#a138">Pango::Weight</a> enumeration, other intermediate numeric values are possible. </td>
</tr>
</table>
<a class="anchor" name="z1156_2" doxytag="GFC::Pango::FontDescription::to_filename" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> GFC::Pango::FontDescription::to_filename </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Creates a filename representation of a font description.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>A string that can be used as a filename.</dd></dl>
<br>
The filename is identical to the result from calling <a class="el" href="classGFC_1_1Pango_1_1FontDescription.html#z1156_1">to_string()</a>, but with underscores instead of characters that are untypical in filenames, and in lower case only. </td>
</tr>
</table>
<a class="anchor" name="z1156_1" doxytag="GFC::Pango::FontDescription::to_string" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="elRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> GFC::Pango::FontDescription::to_string </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Creates a string representation of the font description.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The string representation.</dd></dl>
<br>
The string representation is in the form "[FAMILY-LIST] [STYLE-OPTIONS] [SIZE]", where FAMILY-LIST is a comma separated list of families optionally terminated by a comma, STYLE_OPTIONS is a whitespace separated list of words where each WORD describes one of style, variant, weight, or stretch, and SIZE is an decimal number (size in points). Any one of the options may be absent. If FAMILY-LIST is absent, then the family_name field of the resulting font description will be initialized to null. If STYLE-OPTIONS is missing, then all style options will be set to the default values. If SIZE is missing, the size in the resulting font description will be set to 0. </td>
</tr>
</table>
<a class="anchor" name="z1156_10" doxytag="GFC::Pango::FontDescription::unset_fields" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void GFC::Pango::FontDescription::unset_fields </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="namespaceGFC_1_1Pango.html#a26">FontMaskField</a> </td>
<td class="mdname1" valign="top" nowrap> <em>to_unset</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Unsets some of the fields in a font description.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign=top><em>to_unset</em> </td><td>The bitmask of <a class="el" href="namespaceGFC_1_1Pango.html#a140">Pango::FontMask</a> fields in the desc to unset.</td></tr>
</table>
</dl>
<br>
Note that this merely marks the fields cleared, it does not clear the settings for those fields. </td>
</tr>
</table>
<hr>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="font_8hh-source.html">font.hh</a></ul>
<hr size="1"><address style="align: right;"><small>Generated on Tue Aug 24 00:34:45 2004 for GFC-UI by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
</body>
</html>
|