1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Index of deprecated symbols</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.72.0">
<link rel="start" href="index.html" title="GNOME UI Library Reference Manual">
<link rel="up" href="index.html" title="GNOME UI Library Reference Manual">
<link rel="prev" href="ix01.html" title="Index">
<link rel="next" href="ix03.html" title="Index of new symbols in 2.2">
<meta name="generator" content="GTK-Doc V1.8 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="part" href="pt01.html" title="Part I. GNOME UI Library (libgnomeui)">
<link rel="chapter" href="initialization.html" title="Initialization and Session Management">
<link rel="chapter" href="application-mgmt.html" title="Application Management">
<link rel="chapter" href="druids.html" title="Druids">
<link rel="chapter" href="fixme.html" title="Miscellaneous Widgets">
<link rel="chapter" href="miscellaneous.html" title="Miscellaneous Utility Functions and Macros">
<link rel="chapter" href="deprecated.html" title="Deprecated Modules">
<link rel="chapter" href="libgnomeui-objects.html" title="Object Hierarchy">
<link rel="index" href="ix01.html" title="Index">
<link rel="index" href="ix02.html" title="Index of deprecated symbols">
<link rel="index" href="ix03.html" title="Index of new symbols in 2.2">
<link rel="index" href="ix04.html" title="Index of new symbols in 2.4">
<link rel="index" href="ix05.html" title="Index of new symbols in 2.6">
<link rel="index" href="ix06.html" title="Index of new symbols in 2.8">
<link rel="index" href="ix07.html" title="Index of new symbols in 2.10">
<link rel="index" href="ix08.html" title="Index of new symbols in 2.12">
<link rel="index" href="ix09.html" title="Index of new symbols in 2.14">
<link rel="index" href="ix10.html" title="Index of new symbols in 2.16">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
<td><a accesskey="p" href="ix01.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td> </td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GNOME UI Library Reference Manual</th>
<td><a accesskey="n" href="ix03.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr></table>
<div class="index">
<div class="titlepage"><div><div><h2 class="title">
<a name="id2810514"></a>Index of deprecated symbols</h2></div></div></div>
<div class="index"><div class="indexdiv">
<h3>G</h3>
<dl>
<dt>GnomeAbout, <a href="GnomeAbout.html#id2696088">GnomeAbout</a>
</dt>
<dt>GnomeAppProgressCancelFunc, <a href="libgnomeui-gnome-app-util.html#id2700743">GnomeAppProgressCancelFunc ()</a>
</dt>
<dt>GnomeAppProgressFunc, <a href="libgnomeui-gnome-app-util.html#id2700658">GnomeAppProgressFunc ()</a>
</dt>
<dt>GnomeAppProgressKey, <a href="libgnomeui-gnome-app-util.html#id2700818">GnomeAppProgressKey</a>
</dt>
<dt>GnomeColorPicker, <a href="GnomeColorPicker.html#id2705052">GnomeColorPicker</a>
</dt>
<dt>GnomeDialog, <a href="GnomeDialog.html#id2712126">GnomeDialog</a>
</dt>
<dt>GnomeDruid, <a href="GnomeDruid.html#id2623666">GnomeDruid</a>
</dt>
<dt>GnomeDruidPage, <a href="GnomeDruidPage.html#id2628541">GnomeDruidPage</a>
</dt>
<dt>GnomeDruidPageEdge, <a href="GnomeDruidPageEdge.html#id2632293">GnomeDruidPageEdge</a>
</dt>
<dt>GnomeDruidPageStandard, <a href="GnomeDruidPageStandard.html#id2638487">GnomeDruidPageStandard</a>
</dt>
<dt>GnomeEdgePosition, <a href="GnomeDruidPageEdge.html#id2632120">enum GnomeEdgePosition</a>
</dt>
<dt>GnomeEntry, <a href="GnomeEntry.html#id2728317">GnomeEntry</a>
</dt>
<dt>GnomeEntryPrivate, <a href="GnomeEntry.html#id2728273">GnomeEntryPrivate</a>
</dt>
<dt>GnomeFileEntry, <a href="GnomeFileEntry.html#id2732240">GnomeFileEntry</a>
</dt>
<dt>GnomeFontPicker, <a href="GnomeFontPicker.html#id2738070">GnomeFontPicker</a>
</dt>
<dt>GnomeFontPickerMode, <a href="GnomeFontPicker.html#id2737981">enum GnomeFontPickerMode</a>
</dt>
<dt>GnomeFontPickerPrivate, <a href="GnomeFontPicker.html#id2738026">GnomeFontPickerPrivate</a>
</dt>
<dt>GnomeHRef, <a href="GnomeHRef.html#id2648560">GnomeHRef</a>
</dt>
<dt>GnomeIconList, <a href="GnomeIconList.html#id2744580">GnomeIconList</a>
</dt>
<dt>GnomeIconListMode, <a href="GnomeIconList.html#id2744536">enum GnomeIconListMode</a>
</dt>
<dt>GnomeIconTextItem, <a href="GnomeIconTextItem.html#id2757556">GnomeIconTextItem</a>
</dt>
<dt>GnomeIconTheme, <a href="libgnomeui-GnomeIconTheme.html#id2761956">GnomeIconTheme</a>
</dt>
<dt>GnomeIconThemeClass, <a href="libgnomeui-GnomeIconTheme.html#id2761912">GnomeIconThemeClass</a>
</dt>
<dt>GnomeMDI, <a href="GnomeMDI.html#id2766582">GnomeMDI</a>
</dt>
<dt>GnomeMDIChild, <a href="GnomeMDIChild.html#id2776649">GnomeMDIChild</a>
</dt>
<dt>GnomeMDIChildConfigFunc, <a href="GnomeMDIChild.html#id2776416">GnomeMDIChildConfigFunc ()</a>
</dt>
<dt>GnomeMDIChildCreator, <a href="libgnomeui-gnome-mdi-session.html#id2782879">GnomeMDIChildCreator ()</a>
</dt>
<dt>GnomeMDIChildLabelFunc, <a href="GnomeMDIChild.html#id2776522">GnomeMDIChildLabelFunc ()</a>
</dt>
<dt>GnomeMDIChildMenuCreator, <a href="GnomeMDIChild.html#id2776289">GnomeMDIChildMenuCreator ()</a>
</dt>
<dt>GnomeMDIChildViewCreator, <a href="GnomeMDIChild.html#id2776183">GnomeMDIChildViewCreator ()</a>
</dt>
<dt>GnomeMDIGenericChild, <a href="GnomeMDIGenericChild.html#id2779000">GnomeMDIGenericChild</a>
</dt>
<dt>GnomeMDIMode, <a href="GnomeMDI.html#id2766538">enum GnomeMDIMode</a>
</dt>
<dt>GnomeMessageBox, <a href="GnomeMessageBox.html#id2784358">GnomeMessageBox</a>
</dt>
<dt>GnomePixmap, <a href="GnomePixmap.html#id2786565">GnomePixmap</a>
</dt>
<dt>GnomePixmapEntry, <a href="GnomePixmapEntry.html#id2789967">GnomePixmapEntry</a>
</dt>
<dt>GnomePixmapPrivate, <a href="GnomePixmap.html#id2786521">GnomePixmapPrivate</a>
</dt>
<dt>GnomePropertyBox, <a href="GnomePropertyBox.html#id2797135">GnomePropertyBox</a>
</dt>
<dt>GnomeScores, <a href="GnomeScores.html#id2799763">GnomeScores</a>
</dt>
<dt>GnomeThemeFile, <a href="libgnomeui-GnomeThemeFile.html#id2803953">GnomeThemeFile</a>
</dt>
<dt>GnomeThemeFileLineFunc, <a href="libgnomeui-GnomeThemeFile.html#id2804162">GnomeThemeFileLineFunc ()</a>
</dt>
<dt>GnomeThemeFileParseError, <a href="libgnomeui-GnomeThemeFile.html#id2804116">enum GnomeThemeFileParseError</a>
</dt>
<dt>GnomeThemeFileSectionFunc, <a href="libgnomeui-GnomeThemeFile.html#id2803998">GnomeThemeFileSectionFunc ()</a>
</dt>
<dt>gnome_about_construct, <a href="GnomeAbout.html#id2696400">gnome_about_construct ()</a>
</dt>
<dt>gnome_about_new, <a href="GnomeAbout.html#id2696131">gnome_about_new ()</a>
</dt>
<dt>gnome_app_error, <a href="libgnomeui-gnome-app-util.html#id2699409">gnome_app_error ()</a>
</dt>
<dt>gnome_app_flash, <a href="libgnomeui-gnome-app-util.html#id2699307">gnome_app_flash ()</a>
</dt>
<dt>gnome_app_message, <a href="libgnomeui-gnome-app-util.html#id2699184">gnome_app_message ()</a>
</dt>
<dt>gnome_app_ok_cancel, <a href="libgnomeui-gnome-app-util.html#id2699999">gnome_app_ok_cancel ()</a>
</dt>
<dt>gnome_app_ok_cancel_modal, <a href="libgnomeui-gnome-app-util.html#id2700163">gnome_app_ok_cancel_modal ()</a>
</dt>
<dt>gnome_app_progress_done, <a href="libgnomeui-gnome-app-util.html#id2701310">gnome_app_progress_done ()</a>
</dt>
<dt>gnome_app_progress_manual, <a href="libgnomeui-gnome-app-util.html#id2701058">gnome_app_progress_manual ()</a>
</dt>
<dt>gnome_app_progress_timeout, <a href="libgnomeui-gnome-app-util.html#id2700861">gnome_app_progress_timeout ()</a>
</dt>
<dt>gnome_app_question, <a href="libgnomeui-gnome-app-util.html#id2699666">gnome_app_question ()</a>
</dt>
<dt>gnome_app_question_modal, <a href="libgnomeui-gnome-app-util.html#id2699832">gnome_app_question_modal ()</a>
</dt>
<dt>gnome_app_request_password, <a href="libgnomeui-gnome-app-util.html#id2700493">gnome_app_request_password ()</a>
</dt>
<dt>gnome_app_request_string, <a href="libgnomeui-gnome-app-util.html#id2700328">gnome_app_request_string ()</a>
</dt>
<dt>gnome_app_set_progress, <a href="libgnomeui-gnome-app-util.html#id2701211">gnome_app_set_progress ()</a>
</dt>
<dt>gnome_app_warning, <a href="libgnomeui-gnome-app-util.html#id2699544">gnome_app_warning ()</a>
</dt>
<dt>GNOME_CANCEL, <a href="libgnomeui-gnome-uidefs.html#id2689398">GNOME_CANCEL</a>
</dt>
<dt>gnome_client_disable_master_connection, <a href="GnomeClient.html#id2564914">gnome_client_disable_master_connection ()</a>
</dt>
<dt>gnome_color_picker_get_d, <a href="GnomeColorPicker.html#id2705336">gnome_color_picker_get_d ()</a>
</dt>
<dt>gnome_color_picker_get_dither, <a href="GnomeColorPicker.html#id2706303">gnome_color_picker_get_dither ()</a>
</dt>
<dt>gnome_color_picker_get_i16, <a href="GnomeColorPicker.html#id2706010">gnome_color_picker_get_i16 ()</a>
</dt>
<dt>gnome_color_picker_get_i8, <a href="GnomeColorPicker.html#id2705673">gnome_color_picker_get_i8 ()</a>
</dt>
<dt>gnome_color_picker_get_title, <a href="GnomeColorPicker.html#id2706752">gnome_color_picker_get_title ()</a>
</dt>
<dt>gnome_color_picker_get_use_alpha, <a href="GnomeColorPicker.html#id2706538">gnome_color_picker_get_use_alpha ()</a>
</dt>
<dt>gnome_color_picker_new, <a href="GnomeColorPicker.html#id2705094">gnome_color_picker_new ()</a>
</dt>
<dt>gnome_color_picker_set_d, <a href="GnomeColorPicker.html#id2705167">gnome_color_picker_set_d ()</a>
</dt>
<dt>gnome_color_picker_set_dither, <a href="GnomeColorPicker.html#id2706180">gnome_color_picker_set_dither ()</a>
</dt>
<dt>gnome_color_picker_set_i16, <a href="GnomeColorPicker.html#id2705842">gnome_color_picker_set_i16 ()</a>
</dt>
<dt>gnome_color_picker_set_i8, <a href="GnomeColorPicker.html#id2705505">gnome_color_picker_set_i8 ()</a>
</dt>
<dt>gnome_color_picker_set_title, <a href="GnomeColorPicker.html#id2706649">gnome_color_picker_set_title ()</a>
</dt>
<dt>gnome_color_picker_set_use_alpha, <a href="GnomeColorPicker.html#id2706415">gnome_color_picker_set_use_alpha ()</a>
</dt>
<dt>gnome_date_edit_get_date, <a href="GnomeDateEdit.html#id2645585">gnome_date_edit_get_date ()</a>
</dt>
<dt>gnome_dialog_append_button, <a href="GnomeDialog.html#id2714476">gnome_dialog_append_button ()</a>
</dt>
<dt>gnome_dialog_append_buttons, <a href="GnomeDialog.html#id2714340">gnome_dialog_append_buttons ()</a>
</dt>
<dt>gnome_dialog_append_buttonsv, <a href="GnomeDialog.html#id2714598">gnome_dialog_append_buttonsv ()</a>
</dt>
<dt>gnome_dialog_append_buttons_with_pixmaps, <a href="GnomeDialog.html#id2714865">gnome_dialog_append_buttons_with_pixmaps ()</a>
</dt>
<dt>gnome_dialog_append_button_with_pixmap, <a href="GnomeDialog.html#id2714719">gnome_dialog_append_button_with_pixmap ()</a>
</dt>
<dt>gnome_dialog_button_connect, <a href="GnomeDialog.html#id2710326">gnome_dialog_button_connect ()</a>
</dt>
<dt>gnome_dialog_button_connect_object, <a href="GnomeDialog.html#id2712842">gnome_dialog_button_connect_object ()</a>
</dt>
<dt>gnome_dialog_close, <a href="GnomeDialog.html#id2713743">gnome_dialog_close ()</a>
</dt>
<dt>gnome_dialog_close_hides, <a href="GnomeDialog.html#id2713884">gnome_dialog_close_hides ()</a>
</dt>
<dt>gnome_dialog_construct, <a href="GnomeDialog.html#id2715010">gnome_dialog_construct ()</a>
</dt>
<dt>gnome_dialog_constructv, <a href="GnomeDialog.html#id2715143">gnome_dialog_constructv ()</a>
</dt>
<dt>gnome_dialog_editable_enters, <a href="GnomeDialog.html#id2714218">gnome_dialog_editable_enters ()</a>
</dt>
<dt>gnome_dialog_grab_focus, <a href="GnomeDialog.html#id2713342">gnome_dialog_grab_focus ()</a>
</dt>
<dt>gnome_dialog_new, <a href="GnomeDialog.html#id2712196">gnome_dialog_new ()</a>
</dt>
<dt>gnome_dialog_newv, <a href="GnomeDialog.html#id2712327">gnome_dialog_newv ()</a>
</dt>
<dt>gnome_dialog_run, <a href="GnomeDialog.html#id2712995">gnome_dialog_run ()</a>
</dt>
<dt>gnome_dialog_run_and_close, <a href="GnomeDialog.html#id2713141">gnome_dialog_run_and_close ()</a>
</dt>
<dt>gnome_dialog_set_accelerator, <a href="GnomeDialog.html#id2713589">gnome_dialog_set_accelerator ()</a>
</dt>
<dt>gnome_dialog_set_close, <a href="GnomeDialog.html#id2714061">gnome_dialog_set_close ()</a>
</dt>
<dt>gnome_dialog_set_default, <a href="GnomeDialog.html#id2713245">gnome_dialog_set_default ()</a>
</dt>
<dt>gnome_dialog_set_parent, <a href="GnomeDialog.html#id2712440">gnome_dialog_set_parent ()</a>
</dt>
<dt>gnome_dialog_set_sensitive, <a href="GnomeDialog.html#id2713446">gnome_dialog_set_sensitive ()</a>
</dt>
<dt>gnome_druid_append_page, <a href="GnomeDruid.html#id2624615">gnome_druid_append_page ()</a>
</dt>
<dt>gnome_druid_construct_with_window, <a href="GnomeDruid.html#id2625115">gnome_druid_construct_with_window ()</a>
</dt>
<dt>gnome_druid_insert_page, <a href="GnomeDruid.html#id2624423">gnome_druid_insert_page ()</a>
</dt>
<dt>gnome_druid_new, <a href="GnomeDruid.html#id2623710">gnome_druid_new ()</a>
</dt>
<dt>gnome_druid_new_with_window, <a href="GnomeDruid.html#id2624887">gnome_druid_new_with_window ()</a>
</dt>
<dt>gnome_druid_page_back, <a href="GnomeDruidPage.html#id2628841">gnome_druid_page_back ()</a>
</dt>
<dt>gnome_druid_page_cancel, <a href="GnomeDruidPage.html#id2628935">gnome_druid_page_cancel ()</a>
</dt>
<dt>gnome_druid_page_edge_construct, <a href="GnomeDruidPageEdge.html#id2633085">gnome_druid_page_edge_construct ()</a>
</dt>
<dt>gnome_druid_page_edge_new, <a href="GnomeDruidPageEdge.html#id2632587">gnome_druid_page_edge_new ()</a>
</dt>
<dt>gnome_druid_page_edge_new_aa, <a href="GnomeDruidPageEdge.html#id2632693">gnome_druid_page_edge_new_aa ()</a>
</dt>
<dt>gnome_druid_page_edge_new_with_vals, <a href="GnomeDruidPageEdge.html#id2632800">gnome_druid_page_edge_new_with_vals ()</a>
</dt>
<dt>gnome_druid_page_edge_set_bg_color, <a href="GnomeDruidPageEdge.html#id2633352">gnome_druid_page_edge_set_bg_color ()</a>
</dt>
<dt>gnome_druid_page_edge_set_logo, <a href="GnomeDruidPageEdge.html#id2634129">gnome_druid_page_edge_set_logo ()</a>
</dt>
<dt>gnome_druid_page_edge_set_logo_bg_color, <a href="GnomeDruidPageEdge.html#id2633584">gnome_druid_page_edge_set_logo_bg_color ()</a>
</dt>
<dt>gnome_druid_page_edge_set_text, <a href="GnomeDruidPageEdge.html#id2633913">gnome_druid_page_edge_set_text ()</a>
</dt>
<dt>gnome_druid_page_edge_set_textbox_color, <a href="GnomeDruidPageEdge.html#id2633474">gnome_druid_page_edge_set_textbox_color ()</a>
</dt>
<dt>gnome_druid_page_edge_set_text_color, <a href="GnomeDruidPageEdge.html#id2633803">gnome_druid_page_edge_set_text_color ()</a>
</dt>
<dt>gnome_druid_page_edge_set_title, <a href="GnomeDruidPageEdge.html#id2634021">gnome_druid_page_edge_set_title ()</a>
</dt>
<dt>gnome_druid_page_edge_set_title_color, <a href="GnomeDruidPageEdge.html#id2633693">gnome_druid_page_edge_set_title_color ()</a>
</dt>
<dt>gnome_druid_page_edge_set_top_watermark, <a href="GnomeDruidPageEdge.html#id2634405">gnome_druid_page_edge_set_top_watermark ()</a>
</dt>
<dt>gnome_druid_page_edge_set_watermark, <a href="GnomeDruidPageEdge.html#id2634264">gnome_druid_page_edge_set_watermark ()</a>
</dt>
<dt>gnome_druid_page_finish, <a href="GnomeDruidPage.html#id2629028">gnome_druid_page_finish ()</a>
</dt>
<dt>gnome_druid_page_new, <a href="GnomeDruidPage.html#id2628583">gnome_druid_page_new ()</a>
</dt>
<dt>gnome_druid_page_next, <a href="GnomeDruidPage.html#id2628667">gnome_druid_page_next ()</a>
</dt>
<dt>gnome_druid_page_prepare, <a href="GnomeDruidPage.html#id2628760">gnome_druid_page_prepare ()</a>
</dt>
<dt>gnome_druid_page_standard_append_item, <a href="GnomeDruidPageStandard.html#id2640021">gnome_druid_page_standard_append_item ()</a>
</dt>
<dt>gnome_druid_page_standard_new, <a href="GnomeDruidPageStandard.html#id2638884">gnome_druid_page_standard_new ()</a>
</dt>
<dt>gnome_druid_page_standard_new_with_vals, <a href="GnomeDruidPageStandard.html#id2638979">gnome_druid_page_standard_new_with_vals ()</a>
</dt>
<dt>gnome_druid_page_standard_set_background, <a href="GnomeDruidPageStandard.html#id2639663">gnome_druid_page_standard_set_background ()</a>
</dt>
<dt>gnome_druid_page_standard_set_bg_color, <a href="GnomeDruidPageStandard.html#id2638708">gnome_druid_page_standard_set_bg_color</a>
</dt>
<dt>gnome_druid_page_standard_set_contents_background, <a href="GnomeDruidPageStandard.html#id2639900">gnome_druid_page_standard_set_contents_background ()</a>
</dt>
<dt>gnome_druid_page_standard_set_logo, <a href="GnomeDruidPageStandard.html#id2639261">gnome_druid_page_standard_set_logo ()</a>
</dt>
<dt>gnome_druid_page_standard_set_logo_background, <a href="GnomeDruidPageStandard.html#id2639782">gnome_druid_page_standard_set_logo_background ()</a>
</dt>
<dt>gnome_druid_page_standard_set_logo_bg_color, <a href="GnomeDruidPageStandard.html#id2638765">gnome_druid_page_standard_set_logo_bg_color</a>
</dt>
<dt>gnome_druid_page_standard_set_title, <a href="GnomeDruidPageStandard.html#id2639144">gnome_druid_page_standard_set_title ()</a>
</dt>
<dt>gnome_druid_page_standard_set_title_color, <a href="GnomeDruidPageStandard.html#id2638824">gnome_druid_page_standard_set_title_color</a>
</dt>
<dt>gnome_druid_page_standard_set_title_foreground, <a href="GnomeDruidPageStandard.html#id2639550">gnome_druid_page_standard_set_title_foreground ()</a>
</dt>
<dt>gnome_druid_page_standard_set_top_watermark, <a href="GnomeDruidPageStandard.html#id2639399">gnome_druid_page_standard_set_top_watermark ()</a>
</dt>
<dt>gnome_druid_prepend_page, <a href="GnomeDruid.html#id2624294">gnome_druid_prepend_page ()</a>
</dt>
<dt>gnome_druid_set_buttons_sensitive, <a href="GnomeDruid.html#id2623794">gnome_druid_set_buttons_sensitive ()</a>
</dt>
<dt>gnome_druid_set_page, <a href="GnomeDruid.html#id2624758">gnome_druid_set_page ()</a>
</dt>
<dt>gnome_druid_set_show_finish, <a href="GnomeDruid.html#id2624021">gnome_druid_set_show_finish ()</a>
</dt>
<dt>gnome_druid_set_show_help, <a href="GnomeDruid.html#id2624148">gnome_druid_set_show_help ()</a>
</dt>
<dt>gnome_entry_append_history, <a href="GnomeEntry.html#id2729168">gnome_entry_append_history ()</a>
</dt>
<dt>gnome_entry_clear_history, <a href="GnomeEntry.html#id2729349">gnome_entry_clear_history ()</a>
</dt>
<dt>gnome_entry_get_history_id, <a href="GnomeEntry.html#id2728565">gnome_entry_get_history_id ()</a>
</dt>
<dt>gnome_entry_get_max_saved, <a href="GnomeEntry.html#id2728885">gnome_entry_get_max_saved ()</a>
</dt>
<dt>gnome_entry_gtk_entry, <a href="GnomeEntry.html#id2728475">gnome_entry_gtk_entry ()</a>
</dt>
<dt>gnome_entry_new, <a href="GnomeEntry.html#id2728357">gnome_entry_new ()</a>
</dt>
<dt>gnome_entry_prepend_history, <a href="GnomeEntry.html#id2728986">gnome_entry_prepend_history ()</a>
</dt>
<dt>gnome_entry_set_history_id, <a href="GnomeEntry.html#id2728656">gnome_entry_set_history_id ()</a>
</dt>
<dt>gnome_entry_set_max_saved, <a href="GnomeEntry.html#id2728759">gnome_entry_set_max_saved ()</a>
</dt>
<dt>gnome_error_dialog, <a href="libgnomeui-gnome-dialog-util.html#id2721709">gnome_error_dialog ()</a>
</dt>
<dt>gnome_error_dialog_parented, <a href="libgnomeui-gnome-dialog-util.html#id2721799">gnome_error_dialog_parented ()</a>
</dt>
<dt>gnome_file_entry_construct, <a href="GnomeFileEntry.html#id2732418">gnome_file_entry_construct ()</a>
</dt>
<dt>gnome_file_entry_get_directory_entry, <a href="GnomeFileEntry.html#id2733123">gnome_file_entry_get_directory_entry ()</a>
</dt>
<dt>gnome_file_entry_get_full_path, <a href="GnomeFileEntry.html#id2733225">gnome_file_entry_get_full_path ()</a>
</dt>
<dt>gnome_file_entry_get_modal, <a href="GnomeFileEntry.html#id2733570">gnome_file_entry_get_modal ()</a>
</dt>
<dt>gnome_file_entry_gnome_entry, <a href="GnomeFileEntry.html#id2732573">gnome_file_entry_gnome_entry ()</a>
</dt>
<dt>gnome_file_entry_gtk_entry, <a href="GnomeFileEntry.html#id2732680">gnome_file_entry_gtk_entry ()</a>
</dt>
<dt>gnome_file_entry_new, <a href="GnomeFileEntry.html#id2732281">gnome_file_entry_new ()</a>
</dt>
<dt>gnome_file_entry_set_default_path, <a href="GnomeFileEntry.html#id2732890">gnome_file_entry_set_default_path ()</a>
</dt>
<dt>gnome_file_entry_set_directory, <a href="GnomeFileEntry.html#id2733661">gnome_file_entry_set_directory ()</a>
</dt>
<dt>gnome_file_entry_set_directory_entry, <a href="GnomeFileEntry.html#id2733002">gnome_file_entry_set_directory_entry ()</a>
</dt>
<dt>gnome_file_entry_set_filename, <a href="GnomeFileEntry.html#id2733366">gnome_file_entry_set_filename ()</a>
</dt>
<dt>gnome_file_entry_set_modal, <a href="GnomeFileEntry.html#id2733468">gnome_file_entry_set_modal ()</a>
</dt>
<dt>gnome_file_entry_set_title, <a href="GnomeFileEntry.html#id2732780">gnome_file_entry_set_title ()</a>
</dt>
<dt>gnome_font_picker_fi_set_show_size, <a href="GnomeFontPicker.html#id2738808">gnome_font_picker_fi_set_show_size ()</a>
</dt>
<dt>gnome_font_picker_fi_set_use_font_in_label, <a href="GnomeFontPicker.html#id2738636">gnome_font_picker_fi_set_use_font_in_label ()</a>
</dt>
<dt>gnome_font_picker_get_font, <a href="GnomeFontPicker.html#id2739262">gnome_font_picker_get_font ()</a>
</dt>
<dt>gnome_font_picker_get_font_name, <a href="GnomeFontPicker.html#id2739169">gnome_font_picker_get_font_name ()</a>
</dt>
<dt>gnome_font_picker_get_mode, <a href="GnomeFontPicker.html#id2738392">gnome_font_picker_get_mode ()</a>
</dt>
<dt>gnome_font_picker_get_preview_text, <a href="GnomeFontPicker.html#id2739489">gnome_font_picker_get_preview_text ()</a>
</dt>
<dt>gnome_font_picker_get_title, <a href="GnomeFontPicker.html#id2738300">gnome_font_picker_get_title ()</a>
</dt>
<dt>gnome_font_picker_new, <a href="GnomeFontPicker.html#id2738112">gnome_font_picker_new ()</a>
</dt>
<dt>gnome_font_picker_set_font_name, <a href="GnomeFontPicker.html#id2739365">gnome_font_picker_set_font_name ()</a>
</dt>
<dt>gnome_font_picker_set_mode, <a href="GnomeFontPicker.html#id2738533">gnome_font_picker_set_mode ()</a>
</dt>
<dt>gnome_font_picker_set_preview_text, <a href="GnomeFontPicker.html#id2739593">gnome_font_picker_set_preview_text ()</a>
</dt>
<dt>gnome_font_picker_set_title, <a href="GnomeFontPicker.html#id2738181">gnome_font_picker_set_title ()</a>
</dt>
<dt>gnome_font_picker_uw_get_widget, <a href="GnomeFontPicker.html#id2739059">gnome_font_picker_uw_get_widget ()</a>
</dt>
<dt>gnome_font_picker_uw_set_widget, <a href="GnomeFontPicker.html#id2738949">gnome_font_picker_uw_set_widget ()</a>
</dt>
<dt>gnome_gtk_widget_add_popup_items, <a href="libgnomeui-gnome-popup-menu.html#id2794960">gnome_gtk_widget_add_popup_items ()</a>
</dt>
<dt>gnome_href_get_label, <a href="GnomeHRef.html#id2649270">gnome_href_get_label ()</a>
</dt>
<dt>gnome_href_get_text, <a href="GnomeHRef.html#id2649070">gnome_href_get_text ()</a>
</dt>
<dt>gnome_href_get_url, <a href="GnomeHRef.html#id2648853">gnome_href_get_url ()</a>
</dt>
<dt>gnome_href_new, <a href="GnomeHRef.html#id2648601">gnome_href_new ()</a>
</dt>
<dt>gnome_href_set_label, <a href="GnomeHRef.html#id2649162">gnome_href_set_label ()</a>
</dt>
<dt>gnome_href_set_text, <a href="GnomeHRef.html#id2648962">gnome_href_set_text ()</a>
</dt>
<dt>gnome_href_set_url, <a href="GnomeHRef.html#id2648735">gnome_href_set_url ()</a>
</dt>
<dt>gnome_icon_data_dup, <a href="libgnomeui-GnomeIconTheme.html#id2763328">gnome_icon_data_dup ()</a>
</dt>
<dt>gnome_icon_data_free, <a href="libgnomeui-GnomeIconTheme.html#id2763413">gnome_icon_data_free ()</a>
</dt>
<dt>gnome_icon_list_append, <a href="GnomeIconList.html#id2745745">gnome_icon_list_append ()</a>
</dt>
<dt>gnome_icon_list_append_pixbuf, <a href="GnomeIconList.html#id2745886">gnome_icon_list_append_pixbuf ()</a>
</dt>
<dt>gnome_icon_list_clear, <a href="GnomeIconList.html#id2746043">gnome_icon_list_clear ()</a>
</dt>
<dt>gnome_icon_list_construct, <a href="GnomeIconList.html#id2744835">gnome_icon_list_construct ()</a>
</dt>
<dt>gnome_icon_list_find_icon_from_data, <a href="GnomeIconList.html#id2748955">gnome_icon_list_find_icon_from_data ()</a>
</dt>
<dt>gnome_icon_list_find_icon_from_filename, <a href="GnomeIconList.html#id2748557">gnome_icon_list_find_icon_from_filename ()</a>
</dt>
<dt>gnome_icon_list_focus_icon, <a href="GnomeIconList.html#id2747010">gnome_icon_list_focus_icon ()</a>
</dt>
<dt>gnome_icon_list_freeze, <a href="GnomeIconList.html#id2745214">gnome_icon_list_freeze ()</a>
</dt>
<dt>gnome_icon_list_get_icon_at, <a href="GnomeIconList.html#id2749464">gnome_icon_list_get_icon_at ()</a>
</dt>
<dt>gnome_icon_list_get_icon_data, <a href="GnomeIconList.html#id2749072">gnome_icon_list_get_icon_data ()</a>
</dt>
<dt>gnome_icon_list_get_icon_filename, <a href="GnomeIconList.html#id2748436">gnome_icon_list_get_icon_filename ()</a>
</dt>
<dt>gnome_icon_list_get_icon_pixbuf_item, <a href="GnomeIconList.html#id2749788">gnome_icon_list_get_icon_pixbuf_item ()</a>
</dt>
<dt>gnome_icon_list_get_icon_text_item, <a href="GnomeIconList.html#id2749683">gnome_icon_list_get_icon_text_item ()</a>
</dt>
<dt>gnome_icon_list_get_items_per_line, <a href="GnomeIconList.html#id2749595">gnome_icon_list_get_items_per_line ()</a>
</dt>
<dt>gnome_icon_list_get_num_icons, <a href="GnomeIconList.html#id2746232">gnome_icon_list_get_num_icons ()</a>
</dt>
<dt>gnome_icon_list_get_selection, <a href="GnomeIconList.html#id2746919">gnome_icon_list_get_selection ()</a>
</dt>
<dt>gnome_icon_list_get_selection_mode, <a href="GnomeIconList.html#id2746321">gnome_icon_list_get_selection_mode ()</a>
</dt>
<dt>gnome_icon_list_icon_is_visible, <a href="GnomeIconList.html#id2749315">gnome_icon_list_icon_is_visible ()</a>
</dt>
<dt>gnome_icon_list_insert, <a href="GnomeIconList.html#id2745416">gnome_icon_list_insert ()</a>
</dt>
<dt>gnome_icon_list_insert_pixbuf, <a href="GnomeIconList.html#id2745569">gnome_icon_list_insert_pixbuf ()</a>
</dt>
<dt>gnome_icon_list_moveto, <a href="GnomeIconList.html#id2749188">gnome_icon_list_moveto ()</a>
</dt>
<dt>gnome_icon_list_new, <a href="GnomeIconList.html#id2744622">gnome_icon_list_new ()</a>
</dt>
<dt>gnome_icon_list_remove, <a href="GnomeIconList.html#id2746124">gnome_icon_list_remove ()</a>
</dt>
<dt>gnome_icon_list_select_all, <a href="GnomeIconList.html#id2746645">gnome_icon_list_select_all ()</a>
</dt>
<dt>gnome_icon_list_select_icon, <a href="GnomeIconList.html#id2746539">gnome_icon_list_select_icon ()</a>
</dt>
<dt>gnome_icon_list_set_col_spacing, <a href="GnomeIconList.html#id2747310">gnome_icon_list_set_col_spacing ()</a>
</dt>
<dt>gnome_icon_list_set_hadjustment, <a href="GnomeIconList.html#id2745003">gnome_icon_list_set_hadjustment ()</a>
</dt>
<dt>gnome_icon_list_set_icon_border, <a href="GnomeIconList.html#id2747514">gnome_icon_list_set_icon_border ()</a>
</dt>
<dt>gnome_icon_list_set_icon_data, <a href="GnomeIconList.html#id2748675">gnome_icon_list_set_icon_data ()</a>
</dt>
<dt>gnome_icon_list_set_icon_data_full, <a href="GnomeIconList.html#id2748791">gnome_icon_list_set_icon_data_full ()</a>
</dt>
<dt>gnome_icon_list_set_icon_width, <a href="GnomeIconList.html#id2747106">gnome_icon_list_set_icon_width ()</a>
</dt>
<dt>gnome_icon_list_set_row_spacing, <a href="GnomeIconList.html#id2747208">gnome_icon_list_set_row_spacing ()</a>
</dt>
<dt>gnome_icon_list_set_selection_mode, <a href="GnomeIconList.html#id2746412">gnome_icon_list_set_selection_mode ()</a>
</dt>
<dt>gnome_icon_list_set_separators, <a href="GnomeIconList.html#id2514888">gnome_icon_list_set_separators ()</a>
</dt>
<dt>gnome_icon_list_set_text_spacing, <a href="GnomeIconList.html#id2747412">gnome_icon_list_set_text_spacing ()</a>
</dt>
<dt>gnome_icon_list_set_vadjustment, <a href="GnomeIconList.html#id2745108">gnome_icon_list_set_vadjustment ()</a>
</dt>
<dt>gnome_icon_list_thaw, <a href="GnomeIconList.html#id2745325">gnome_icon_list_thaw ()</a>
</dt>
<dt>gnome_icon_list_unselect_all, <a href="GnomeIconList.html#id2746830">gnome_icon_list_unselect_all ()</a>
</dt>
<dt>gnome_icon_list_unselect_icon, <a href="GnomeIconList.html#id2746723">gnome_icon_list_unselect_icon ()</a>
</dt>
<dt>gnome_icon_text_item_configure, <a href="GnomeIconTextItem.html#id2757597">gnome_icon_text_item_configure ()</a>
</dt>
<dt>gnome_icon_text_item_focus, <a href="GnomeIconTextItem.html#id2758133">gnome_icon_text_item_focus ()</a>
</dt>
<dt>gnome_icon_text_item_get_editable, <a href="GnomeIconTextItem.html#id2758524">gnome_icon_text_item_get_editable ()</a>
</dt>
<dt>gnome_icon_text_item_get_text, <a href="GnomeIconTextItem.html#id2758240">gnome_icon_text_item_get_text ()</a>
</dt>
<dt>gnome_icon_text_item_select, <a href="GnomeIconTextItem.html#id2758029">gnome_icon_text_item_select ()</a>
</dt>
<dt>gnome_icon_text_item_setxy, <a href="GnomeIconTextItem.html#id2757893">gnome_icon_text_item_setxy ()</a>
</dt>
<dt>gnome_icon_text_item_start_editing, <a href="GnomeIconTextItem.html#id2758333">gnome_icon_text_item_start_editing ()</a>
</dt>
<dt>gnome_icon_text_item_stop_editing, <a href="GnomeIconTextItem.html#id2758413">gnome_icon_text_item_stop_editing ()</a>
</dt>
<dt>gnome_icon_theme_append_search_path, <a href="libgnomeui-GnomeIconTheme.html#id2762568">gnome_icon_theme_append_search_path ()</a>
</dt>
<dt>gnome_icon_theme_get_allow_svg, <a href="libgnomeui-GnomeIconTheme.html#id2762299">gnome_icon_theme_get_allow_svg ()</a>
</dt>
<dt>gnome_icon_theme_get_example_icon_name, <a href="libgnomeui-GnomeIconTheme.html#id2762481">gnome_icon_theme_get_example_icon_name ()</a>
</dt>
<dt>gnome_icon_theme_get_search_path, <a href="libgnomeui-GnomeIconTheme.html#id2762063">gnome_icon_theme_get_search_path ()</a>
</dt>
<dt>gnome_icon_theme_get_type, <a href="libgnomeui-gnometypebuiltins.html#id2685639">gnome_icon_theme_get_type ()</a>
</dt>
<dt>gnome_icon_theme_has_icon, <a href="libgnomeui-GnomeIconTheme.html#id2763030">gnome_icon_theme_has_icon ()</a>
</dt>
<dt>gnome_icon_theme_list_icons, <a href="libgnomeui-GnomeIconTheme.html#id2763137">gnome_icon_theme_list_icons ()</a>
</dt>
<dt>gnome_icon_theme_lookup_icon, <a href="libgnomeui-GnomeIconTheme.html#id2762860">gnome_icon_theme_lookup_icon ()</a>
</dt>
<dt>gnome_icon_theme_new, <a href="libgnomeui-GnomeIconTheme.html#id2761999">gnome_icon_theme_new ()</a>
</dt>
<dt>gnome_icon_theme_prepend_search_path, <a href="libgnomeui-GnomeIconTheme.html#id2762665">gnome_icon_theme_prepend_search_path ()</a>
</dt>
<dt>gnome_icon_theme_rescan_if_needed, <a href="libgnomeui-GnomeIconTheme.html#id2763243">gnome_icon_theme_rescan_if_needed ()</a>
</dt>
<dt>gnome_icon_theme_set_allow_svg, <a href="libgnomeui-GnomeIconTheme.html#id2762384">gnome_icon_theme_set_allow_svg ()</a>
</dt>
<dt>gnome_icon_theme_set_custom_theme, <a href="libgnomeui-GnomeIconTheme.html#id2762763">gnome_icon_theme_set_custom_theme ()</a>
</dt>
<dt>gnome_icon_theme_set_search_path, <a href="libgnomeui-GnomeIconTheme.html#id2762181">gnome_icon_theme_set_search_path ()</a>
</dt>
<dt>gnome_init, <a href="libgnomeui-gnome-ui-init.html#id2558990">gnome_init()</a>
</dt>
<dt>gnome_init_with_popt_table, <a href="libgnomeui-gnome-ui-init.html#id2558729">gnome_init_with_popt_table ()</a>
</dt>
<dt>GNOME_KEY_MOD_EXIT, <a href="libgnomeui-gnome-uidefs.html#id2689568">GNOME_KEY_MOD_EXIT</a>
</dt>
<dt>GNOME_KEY_NAME_EXIT, <a href="libgnomeui-gnome-uidefs.html#id2689520">GNOME_KEY_NAME_EXIT</a>
</dt>
<dt>gnome_mdi_add_child, <a href="GnomeMDI.html#id2768085">gnome_mdi_add_child ()</a>
</dt>
<dt>gnome_mdi_add_toplevel_view, <a href="GnomeMDI.html#id2767536">gnome_mdi_add_toplevel_view ()</a>
</dt>
<dt>gnome_mdi_add_view, <a href="GnomeMDI.html#id2767370">gnome_mdi_add_view ()</a>
</dt>
<dt>gnome_mdi_child_add_view, <a href="GnomeMDIChild.html#id2776691">gnome_mdi_child_add_view ()</a>
</dt>
<dt>gnome_mdi_child_remove_view, <a href="GnomeMDIChild.html#id2776784">gnome_mdi_child_remove_view ()</a>
</dt>
<dt>gnome_mdi_child_set_menu_template, <a href="GnomeMDIChild.html#id2777030">gnome_mdi_child_set_menu_template ()</a>
</dt>
<dt>gnome_mdi_child_set_name, <a href="GnomeMDIChild.html#id2776897">gnome_mdi_child_set_name ()</a>
</dt>
<dt>gnome_mdi_find_child, <a href="GnomeMDI.html#id2768921">gnome_mdi_find_child ()</a>
</dt>
<dt>gnome_mdi_generic_child_new, <a href="GnomeMDIGenericChild.html#id2779042">gnome_mdi_generic_child_new ()</a>
</dt>
<dt>gnome_mdi_generic_child_set_config_func, <a href="GnomeMDIGenericChild.html#id2779880">gnome_mdi_generic_child_set_config_func ()</a>
</dt>
<dt>gnome_mdi_generic_child_set_config_func_full, <a href="GnomeMDIGenericChild.html#id2780012">gnome_mdi_generic_child_set_config_func_full ()</a>
</dt>
<dt>gnome_mdi_generic_child_set_label_func, <a href="GnomeMDIGenericChild.html#id2780230">gnome_mdi_generic_child_set_label_func ()</a>
</dt>
<dt>gnome_mdi_generic_child_set_label_func_full, <a href="GnomeMDIGenericChild.html#id2780399">gnome_mdi_generic_child_set_label_func_full ()</a>
</dt>
<dt>gnome_mdi_generic_child_set_menu_creator, <a href="GnomeMDIGenericChild.html#id2779519">gnome_mdi_generic_child_set_menu_creator ()</a>
</dt>
<dt>gnome_mdi_generic_child_set_menu_creator_full, <a href="GnomeMDIGenericChild.html#id2779653">gnome_mdi_generic_child_set_menu_creator_full ()</a>
</dt>
<dt>gnome_mdi_generic_child_set_view_creator, <a href="GnomeMDIGenericChild.html#id2779142">gnome_mdi_generic_child_set_view_creator ()</a>
</dt>
<dt>gnome_mdi_generic_child_set_view_creator_full, <a href="GnomeMDIGenericChild.html#id2779277">gnome_mdi_generic_child_set_view_creator_full ()</a>
</dt>
<dt>gnome_mdi_get_active_child, <a href="GnomeMDI.html#id2768820">gnome_mdi_get_active_child ()</a>
</dt>
<dt>gnome_mdi_get_active_view, <a href="GnomeMDI.html#id2767886">gnome_mdi_get_active_view ()</a>
</dt>
<dt>gnome_mdi_get_active_window, <a href="GnomeMDI.html#id2769039">gnome_mdi_get_active_window ()</a>
</dt>
<dt>gnome_mdi_get_app_from_view, <a href="GnomeMDI.html#id2769348">gnome_mdi_get_app_from_view ()</a>
</dt>
<dt>gnome_mdi_get_child_from_view, <a href="GnomeMDI.html#id2769438">gnome_mdi_get_child_from_view ()</a>
</dt>
<dt>gnome_mdi_get_child_menu_info, <a href="GnomeMDI.html#id2769876">gnome_mdi_get_child_menu_info ()</a>
</dt>
<dt>gnome_mdi_get_menubar_info, <a href="GnomeMDI.html#id2769664">gnome_mdi_get_menubar_info ()</a>
</dt>
<dt>gnome_mdi_get_toolbar_info, <a href="GnomeMDI.html#id2769770">gnome_mdi_get_toolbar_info ()</a>
</dt>
<dt>gnome_mdi_get_view_from_window, <a href="GnomeMDI.html#id2769535">gnome_mdi_get_view_from_window ()</a>
</dt>
<dt>gnome_mdi_new, <a href="GnomeMDI.html#id2766622">gnome_mdi_new ()</a>
</dt>
<dt>gnome_mdi_open_toplevel, <a href="GnomeMDI.html#id2768594">gnome_mdi_open_toplevel ()</a>
</dt>
<dt>gnome_mdi_register, <a href="GnomeMDI.html#id2769129">gnome_mdi_register ()</a>
</dt>
<dt>gnome_mdi_remove_all, <a href="GnomeMDI.html#id2768432">gnome_mdi_remove_all ()</a>
</dt>
<dt>gnome_mdi_remove_child, <a href="GnomeMDI.html#id2768242">gnome_mdi_remove_child ()</a>
</dt>
<dt>gnome_mdi_remove_view, <a href="GnomeMDI.html#id2767705">gnome_mdi_remove_view ()</a>
</dt>
<dt>gnome_mdi_restore_state, <a href="libgnomeui-gnome-mdi-session.html#id2782964">gnome_mdi_restore_state ()</a>
</dt>
<dt>gnome_mdi_save_state, <a href="libgnomeui-gnome-mdi-session.html#id2783108">gnome_mdi_save_state ()</a>
</dt>
<dt>gnome_mdi_set_active_view, <a href="GnomeMDI.html#id2767976">gnome_mdi_set_active_view ()</a>
</dt>
<dt>gnome_mdi_set_child_list_path, <a href="GnomeMDI.html#id2767252">gnome_mdi_set_child_list_path ()</a>
</dt>
<dt>gnome_mdi_set_child_menu_path, <a href="GnomeMDI.html#id2767147">gnome_mdi_set_child_menu_path ()</a>
</dt>
<dt>gnome_mdi_set_menubar_template, <a href="GnomeMDI.html#id2766904">gnome_mdi_set_menubar_template ()</a>
</dt>
<dt>gnome_mdi_set_mode, <a href="GnomeMDI.html#id2766756">gnome_mdi_set_mode ()</a>
</dt>
<dt>gnome_mdi_set_toolbar_template, <a href="GnomeMDI.html#id2767025">gnome_mdi_set_toolbar_template ()</a>
</dt>
<dt>gnome_mdi_unregister, <a href="GnomeMDI.html#id2769242">gnome_mdi_unregister ()</a>
</dt>
<dt>gnome_mdi_update_child, <a href="GnomeMDI.html#id2768699">gnome_mdi_update_child ()</a>
</dt>
<dt>gnome_message_box_construct, <a href="GnomeMessageBox.html#id2784732">gnome_message_box_construct ()</a>
</dt>
<dt>GNOME_MESSAGE_BOX_ERROR, <a href="GnomeMessageBox.html#id2784188">GNOME_MESSAGE_BOX_ERROR</a>
</dt>
<dt>GNOME_MESSAGE_BOX_GENERIC, <a href="GnomeMessageBox.html#id2784301">GNOME_MESSAGE_BOX_GENERIC</a>
</dt>
<dt>GNOME_MESSAGE_BOX_INFO, <a href="GnomeMessageBox.html#id2784075">GNOME_MESSAGE_BOX_INFO</a>
</dt>
<dt>gnome_message_box_new, <a href="GnomeMessageBox.html#id2784436">gnome_message_box_new ()</a>
</dt>
<dt>gnome_message_box_newv, <a href="GnomeMessageBox.html#id2784576">gnome_message_box_newv ()</a>
</dt>
<dt>GNOME_MESSAGE_BOX_QUESTION, <a href="GnomeMessageBox.html#id2784244">GNOME_MESSAGE_BOX_QUESTION</a>
</dt>
<dt>GNOME_MESSAGE_BOX_WARNING, <a href="GnomeMessageBox.html#id2784131">GNOME_MESSAGE_BOX_WARNING</a>
</dt>
<dt>GNOME_NO, <a href="libgnomeui-gnome-uidefs.html#id2689309">GNOME_NO</a>
</dt>
<dt>GNOME_OK, <a href="libgnomeui-gnome-uidefs.html#id2689353">GNOME_OK</a>
</dt>
<dt>gnome_ok_cancel_dialog, <a href="libgnomeui-gnome-dialog-util.html#id2722750">gnome_ok_cancel_dialog ()</a>
</dt>
<dt>gnome_ok_cancel_dialog_modal, <a href="libgnomeui-gnome-dialog-util.html#id2723066">gnome_ok_cancel_dialog_modal ()</a>
</dt>
<dt>gnome_ok_cancel_dialog_modal_parented, <a href="libgnomeui-gnome-dialog-util.html#id2723214">gnome_ok_cancel_dialog_modal_parented ()</a>
</dt>
<dt>gnome_ok_cancel_dialog_parented, <a href="libgnomeui-gnome-dialog-util.html#id2722897">gnome_ok_cancel_dialog_parented ()</a>
</dt>
<dt>gnome_ok_dialog, <a href="libgnomeui-gnome-dialog-util.html#id2721508">gnome_ok_dialog ()</a>
</dt>
<dt>gnome_ok_dialog_parented, <a href="libgnomeui-gnome-dialog-util.html#id2721597">gnome_ok_dialog_parented ()</a>
</dt>
<dt>gnome_pixmap_entry_construct, <a href="GnomePixmapEntry.html#id2790152">gnome_pixmap_entry_construct ()</a>
</dt>
<dt>gnome_pixmap_entry_get_filename, <a href="GnomePixmapEntry.html#id2791284">gnome_pixmap_entry_get_filename ()</a>
</dt>
<dt>gnome_pixmap_entry_gnome_entry, <a href="GnomePixmapEntry.html#id2790566">gnome_pixmap_entry_gnome_entry ()</a>
</dt>
<dt>gnome_pixmap_entry_gnome_file_entry, <a href="GnomePixmapEntry.html#id2790458">gnome_pixmap_entry_gnome_file_entry ()</a>
</dt>
<dt>gnome_pixmap_entry_gtk_entry, <a href="GnomePixmapEntry.html#id2790672">gnome_pixmap_entry_gtk_entry ()</a>
</dt>
<dt>gnome_pixmap_entry_new, <a href="GnomePixmapEntry.html#id2790008">gnome_pixmap_entry_new ()</a>
</dt>
<dt>gnome_pixmap_entry_preview_widget, <a href="GnomePixmapEntry.html#id2790906">gnome_pixmap_entry_preview_widget ()</a>
</dt>
<dt>gnome_pixmap_entry_scrolled_window, <a href="GnomePixmapEntry.html#id2790778">gnome_pixmap_entry_scrolled_window ()</a>
</dt>
<dt>gnome_pixmap_entry_set_pixmap_subdir, <a href="GnomePixmapEntry.html#id2790353">gnome_pixmap_entry_set_pixmap_subdir ()</a>
</dt>
<dt>gnome_pixmap_entry_set_preview, <a href="GnomePixmapEntry.html#id2791035">gnome_pixmap_entry_set_preview ()</a>
</dt>
<dt>gnome_pixmap_entry_set_preview_size, <a href="GnomePixmapEntry.html#id2791160">gnome_pixmap_entry_set_preview_size ()</a>
</dt>
<dt>gnome_pixmap_load_file, <a href="GnomePixmap.html#id2787276">gnome_pixmap_load_file ()</a>
</dt>
<dt>gnome_pixmap_load_file_at_size, <a href="GnomePixmap.html#id2787373">gnome_pixmap_load_file_at_size ()</a>
</dt>
<dt>gnome_pixmap_load_xpm_d, <a href="GnomePixmap.html#id2787510">gnome_pixmap_load_xpm_d ()</a>
</dt>
<dt>gnome_pixmap_load_xpm_d_at_size, <a href="GnomePixmap.html#id2787607">gnome_pixmap_load_xpm_d_at_size ()</a>
</dt>
<dt>gnome_pixmap_new_from_file, <a href="GnomePixmap.html#id2786605">gnome_pixmap_new_from_file ()</a>
</dt>
<dt>gnome_pixmap_new_from_file_at_size, <a href="GnomePixmap.html#id2786718">gnome_pixmap_new_from_file_at_size ()</a>
</dt>
<dt>gnome_pixmap_new_from_gnome_pixmap, <a href="GnomePixmap.html#id2787192">gnome_pixmap_new_from_gnome_pixmap ()</a>
</dt>
<dt>gnome_pixmap_new_from_xpm_d, <a href="GnomePixmap.html#id2786892">gnome_pixmap_new_from_xpm_d ()</a>
</dt>
<dt>gnome_pixmap_new_from_xpm_d_at_size, <a href="GnomePixmap.html#id2787019">gnome_pixmap_new_from_xpm_d_at_size ()</a>
</dt>
<dt>gnome_popup_menu_append, <a href="libgnomeui-gnome-popup-menu.html#id2794840">gnome_popup_menu_append ()</a>
</dt>
<dt>gnome_popup_menu_attach, <a href="libgnomeui-gnome-popup-menu.html#id2794192">gnome_popup_menu_attach ()</a>
</dt>
<dt>gnome_popup_menu_do_popup, <a href="libgnomeui-gnome-popup-menu.html#id2794339">gnome_popup_menu_do_popup ()</a>
</dt>
<dt>gnome_popup_menu_do_popup_modal, <a href="libgnomeui-gnome-popup-menu.html#id2794591">gnome_popup_menu_do_popup_modal ()</a>
</dt>
<dt>gnome_popup_menu_get_accel_group, <a href="libgnomeui-gnome-popup-menu.html#id2794069">gnome_popup_menu_get_accel_group ()</a>
</dt>
<dt>gnome_popup_menu_new, <a href="libgnomeui-gnome-popup-menu.html#id2793788">gnome_popup_menu_new ()</a>
</dt>
<dt>gnome_popup_menu_new_with_accelgroup, <a href="libgnomeui-gnome-popup-menu.html#id2793910">gnome_popup_menu_new_with_accelgroup ()</a>
</dt>
<dt>gnome_property_box_append_page, <a href="GnomePropertyBox.html#id2797470">gnome_property_box_append_page ()</a>
</dt>
<dt>gnome_property_box_changed, <a href="GnomePropertyBox.html#id2797258">gnome_property_box_changed ()</a>
</dt>
<dt>gnome_property_box_new, <a href="GnomePropertyBox.html#id2797182">gnome_property_box_new ()</a>
</dt>
<dt>gnome_property_box_set_modified, <a href="GnomePropertyBox.html#id2797339">gnome_property_box_set_modified ()</a>
</dt>
<dt>gnome_property_box_set_state, <a href="GnomePropertyBox.html#id2797608">gnome_property_box_set_state ()</a>
</dt>
<dt>gnome_question_dialog, <a href="libgnomeui-gnome-dialog-util.html#id2722115">gnome_question_dialog ()</a>
</dt>
<dt>gnome_question_dialog_modal, <a href="libgnomeui-gnome-dialog-util.html#id2722430">gnome_question_dialog_modal ()</a>
</dt>
<dt>gnome_question_dialog_modal_parented, <a href="libgnomeui-gnome-dialog-util.html#id2722578">gnome_question_dialog_modal_parented ()</a>
</dt>
<dt>gnome_question_dialog_parented, <a href="libgnomeui-gnome-dialog-util.html#id2722262">gnome_question_dialog_parented ()</a>
</dt>
<dt>gnome_request_dialog, <a href="libgnomeui-gnome-dialog-util.html#id2723993">gnome_request_dialog ()</a>
</dt>
<dt>gnome_request_password_dialog, <a href="libgnomeui-gnome-dialog-util.html#id2723688">gnome_request_password_dialog ()</a>
</dt>
<dt>gnome_request_password_dialog_parented, <a href="libgnomeui-gnome-dialog-util.html#id2723829">gnome_request_password_dialog_parented ()</a>
</dt>
<dt>gnome_request_string_dialog, <a href="libgnomeui-gnome-dialog-util.html#id2723387">gnome_request_string_dialog ()</a>
</dt>
<dt>gnome_request_string_dialog_parented, <a href="libgnomeui-gnome-dialog-util.html#id2723526">gnome_request_string_dialog_parented ()</a>
</dt>
<dt>gnome_scores_construct, <a href="GnomeScores.html#id2800166">gnome_scores_construct ()</a>
</dt>
<dt>gnome_scores_display_with_pixmap, <a href="GnomeScores.html#id2799803">gnome_scores_display_with_pixmap ()</a>
</dt>
<dt>gnome_scores_new, <a href="GnomeScores.html#id2799983">gnome_scores_new ()</a>
</dt>
<dt>gnome_scores_set_color, <a href="GnomeScores.html#id2800732">gnome_scores_set_color ()</a>
</dt>
<dt>gnome_scores_set_colors, <a href="GnomeScores.html#id2800967">gnome_scores_set_colors ()</a>
</dt>
<dt>gnome_scores_set_current_player, <a href="GnomeScores.html#id2801182">gnome_scores_set_current_player ()</a>
</dt>
<dt>gnome_scores_set_def_color, <a href="GnomeScores.html#id2800860">gnome_scores_set_def_color ()</a>
</dt>
<dt>gnome_scores_set_logo_label, <a href="GnomeScores.html#id2800363">gnome_scores_set_logo_label ()</a>
</dt>
<dt>gnome_scores_set_logo_label_title, <a href="GnomeScores.html#id2801074">gnome_scores_set_logo_label_title ()</a>
</dt>
<dt>gnome_scores_set_logo_pixmap, <a href="GnomeScores.html#id2800515">gnome_scores_set_logo_pixmap ()</a>
</dt>
<dt>gnome_scores_set_logo_widget, <a href="GnomeScores.html#id2800623">gnome_scores_set_logo_widget ()</a>
</dt>
<dt>GNOME_STOCK_BUTTON_APPLY, <a href="GnomeDialog.html#id2715504">GNOME_STOCK_BUTTON_APPLY</a>
</dt>
<dt>GNOME_STOCK_BUTTON_CANCEL, <a href="GnomeDialog.html#id2715321">GNOME_STOCK_BUTTON_CANCEL</a>
</dt>
<dt>GNOME_STOCK_BUTTON_CLOSE, <a href="GnomeDialog.html#id2715458">GNOME_STOCK_BUTTON_CLOSE</a>
</dt>
<dt>GNOME_STOCK_BUTTON_DOWN, <a href="GnomeDialog.html#id2715732">GNOME_STOCK_BUTTON_DOWN</a>
</dt>
<dt>GNOME_STOCK_BUTTON_FONT, <a href="GnomeDialog.html#id2715778">GNOME_STOCK_BUTTON_FONT</a>
</dt>
<dt>GNOME_STOCK_BUTTON_HELP, <a href="GnomeDialog.html#id2715550">GNOME_STOCK_BUTTON_HELP</a>
</dt>
<dt>GNOME_STOCK_BUTTON_NEXT, <a href="GnomeDialog.html#id2715595">GNOME_STOCK_BUTTON_NEXT</a>
</dt>
<dt>GNOME_STOCK_BUTTON_NO, <a href="GnomeDialog.html#id2715413">GNOME_STOCK_BUTTON_NO</a>
</dt>
<dt>GNOME_STOCK_BUTTON_OK, <a href="GnomeDialog.html#id2715276">GNOME_STOCK_BUTTON_OK</a>
</dt>
<dt>GNOME_STOCK_BUTTON_PREV, <a href="GnomeDialog.html#id2715641">GNOME_STOCK_BUTTON_PREV</a>
</dt>
<dt>GNOME_STOCK_BUTTON_UP, <a href="GnomeDialog.html#id2715687">GNOME_STOCK_BUTTON_UP</a>
</dt>
<dt>GNOME_STOCK_BUTTON_YES, <a href="GnomeDialog.html#id2715367">GNOME_STOCK_BUTTON_YES</a>
</dt>
<dt>GNOME_STOCK_MENU_ABOUT, <a href="libgnomeui-gnome-stock-icons.html#id2671887">GNOME_STOCK_MENU_ABOUT</a>
</dt>
<dt>GNOME_STOCK_MENU_ALIGN_CENTER, <a href="libgnomeui-gnome-stock-icons.html#id2674082">GNOME_STOCK_MENU_ALIGN_CENTER</a>
</dt>
<dt>GNOME_STOCK_MENU_ALIGN_JUSTIFY, <a href="libgnomeui-gnome-stock-icons.html#id2674128">GNOME_STOCK_MENU_ALIGN_JUSTIFY</a>
</dt>
<dt>GNOME_STOCK_MENU_ALIGN_LEFT, <a href="libgnomeui-gnome-stock-icons.html#id2673990">GNOME_STOCK_MENU_ALIGN_LEFT</a>
</dt>
<dt>GNOME_STOCK_MENU_ALIGN_RIGHT, <a href="libgnomeui-gnome-stock-icons.html#id2674036">GNOME_STOCK_MENU_ALIGN_RIGHT</a>
</dt>
<dt>GNOME_STOCK_MENU_ATTACH, <a href="libgnomeui-gnome-stock-icons.html#id2673807">GNOME_STOCK_MENU_ATTACH</a>
</dt>
<dt>GNOME_STOCK_MENU_BACK, <a href="libgnomeui-gnome-stock-icons.html#id2672207">GNOME_STOCK_MENU_BACK</a>
</dt>
<dt>GNOME_STOCK_MENU_BLANK, <a href="libgnomeui-gnome-stock-icons.html#id2671293">GNOME_STOCK_MENU_BLANK</a>
</dt>
<dt>GNOME_STOCK_MENU_BOOK_BLUE, <a href="libgnomeui-gnome-stock-icons.html#id2673396">GNOME_STOCK_MENU_BOOK_BLUE</a>
</dt>
<dt>GNOME_STOCK_MENU_BOOK_GREEN, <a href="libgnomeui-gnome-stock-icons.html#id2673350">GNOME_STOCK_MENU_BOOK_GREEN</a>
</dt>
<dt>GNOME_STOCK_MENU_BOOK_OPEN, <a href="libgnomeui-gnome-stock-icons.html#id2673487">GNOME_STOCK_MENU_BOOK_OPEN</a>
</dt>
<dt>GNOME_STOCK_MENU_BOOK_RED, <a href="libgnomeui-gnome-stock-icons.html#id2673304">GNOME_STOCK_MENU_BOOK_RED</a>
</dt>
<dt>GNOME_STOCK_MENU_BOOK_YELLOW, <a href="libgnomeui-gnome-stock-icons.html#id2673442">GNOME_STOCK_MENU_BOOK_YELLOW</a>
</dt>
<dt>GNOME_STOCK_MENU_BOTTOM, <a href="libgnomeui-gnome-stock-icons.html#id2673761">GNOME_STOCK_MENU_BOTTOM</a>
</dt>
<dt>GNOME_STOCK_MENU_CDROM, <a href="libgnomeui-gnome-stock-icons.html#id2673167">GNOME_STOCK_MENU_CDROM</a>
</dt>
<dt>GNOME_STOCK_MENU_CLOSE, <a href="libgnomeui-gnome-stock-icons.html#id2671568">GNOME_STOCK_MENU_CLOSE</a>
</dt>
<dt>GNOME_STOCK_MENU_CONVERT, <a href="libgnomeui-gnome-stock-icons.html#id2673533">GNOME_STOCK_MENU_CONVERT</a>
</dt>
<dt>GNOME_STOCK_MENU_COPY, <a href="libgnomeui-gnome-stock-icons.html#id2671704">GNOME_STOCK_MENU_COPY</a>
</dt>
<dt>GNOME_STOCK_MENU_CUT, <a href="libgnomeui-gnome-stock-icons.html#id2671659">GNOME_STOCK_MENU_CUT</a>
</dt>
<dt>GNOME_STOCK_MENU_DOWN, <a href="libgnomeui-gnome-stock-icons.html#id2673670">GNOME_STOCK_MENU_DOWN</a>
</dt>
<dt>GNOME_STOCK_MENU_EXEC, <a href="libgnomeui-gnome-stock-icons.html#id2673944">GNOME_STOCK_MENU_EXEC</a>
</dt>
<dt>GNOME_STOCK_MENU_EXIT, <a href="libgnomeui-gnome-stock-icons.html#id2674361">GNOME_STOCK_MENU_EXIT</a>
</dt>
<dt>GNOME_STOCK_MENU_FIRST, <a href="libgnomeui-gnome-stock-icons.html#id2672298">GNOME_STOCK_MENU_FIRST</a>
</dt>
<dt>GNOME_STOCK_MENU_FONT, <a href="libgnomeui-gnome-stock-icons.html#id2673899">GNOME_STOCK_MENU_FONT</a>
</dt>
<dt>GNOME_STOCK_MENU_FORWARD, <a href="libgnomeui-gnome-stock-icons.html#id2672252">GNOME_STOCK_MENU_FORWARD</a>
</dt>
<dt>GNOME_STOCK_MENU_HOME, <a href="libgnomeui-gnome-stock-icons.html#id2672389">GNOME_STOCK_MENU_HOME</a>
</dt>
<dt>GNOME_STOCK_MENU_INDEX, <a href="libgnomeui-gnome-stock-icons.html#id2673853">GNOME_STOCK_MENU_INDEX</a>
</dt>
<dt>GNOME_STOCK_MENU_JUMP_TO, <a href="libgnomeui-gnome-stock-icons.html#id2673579">GNOME_STOCK_MENU_JUMP_TO</a>
</dt>
<dt>GNOME_STOCK_MENU_LAST, <a href="libgnomeui-gnome-stock-icons.html#id2672344">GNOME_STOCK_MENU_LAST</a>
</dt>
<dt>GNOME_STOCK_MENU_LINE_IN, <a href="libgnomeui-gnome-stock-icons.html#id2673121">GNOME_STOCK_MENU_LINE_IN</a>
</dt>
<dt>GNOME_STOCK_MENU_MAIL, <a href="libgnomeui-gnome-stock-icons.html#id2672526">GNOME_STOCK_MENU_MAIL</a>
</dt>
<dt>GNOME_STOCK_MENU_MAIL_FWD, <a href="libgnomeui-gnome-stock-icons.html#id2672708">GNOME_STOCK_MENU_MAIL_FWD</a>
</dt>
<dt>GNOME_STOCK_MENU_MAIL_NEW, <a href="libgnomeui-gnome-stock-icons.html#id2672754">GNOME_STOCK_MENU_MAIL_NEW</a>
</dt>
<dt>GNOME_STOCK_MENU_MAIL_RCV, <a href="libgnomeui-gnome-stock-icons.html#id2672571">GNOME_STOCK_MENU_MAIL_RCV</a>
</dt>
<dt>GNOME_STOCK_MENU_MAIL_RPL, <a href="libgnomeui-gnome-stock-icons.html#id2672663">GNOME_STOCK_MENU_MAIL_RPL</a>
</dt>
<dt>GNOME_STOCK_MENU_MAIL_SND, <a href="libgnomeui-gnome-stock-icons.html#id2672617">GNOME_STOCK_MENU_MAIL_SND</a>
</dt>
<dt>GNOME_STOCK_MENU_MIC, <a href="libgnomeui-gnome-stock-icons.html#id2673075">GNOME_STOCK_MENU_MIC</a>
</dt>
<dt>GNOME_STOCK_MENU_MIDI, <a href="libgnomeui-gnome-stock-icons.html#id2673258">GNOME_STOCK_MENU_MIDI</a>
</dt>
<dt>GNOME_STOCK_MENU_NEW, <a href="libgnomeui-gnome-stock-icons.html#id2671338">GNOME_STOCK_MENU_NEW</a>
</dt>
<dt>GNOME_STOCK_MENU_OPEN, <a href="libgnomeui-gnome-stock-icons.html#id2671522">GNOME_STOCK_MENU_OPEN</a>
</dt>
<dt>GNOME_STOCK_MENU_PASTE, <a href="libgnomeui-gnome-stock-icons.html#id2671750">GNOME_STOCK_MENU_PASTE</a>
</dt>
<dt>GNOME_STOCK_MENU_PREF, <a href="libgnomeui-gnome-stock-icons.html#id2671841">GNOME_STOCK_MENU_PREF</a>
</dt>
<dt>GNOME_STOCK_MENU_PRINT, <a href="libgnomeui-gnome-stock-icons.html#id2672069">GNOME_STOCK_MENU_PRINT</a>
</dt>
<dt>GNOME_STOCK_MENU_PROP, <a href="libgnomeui-gnome-stock-icons.html#id2671796">GNOME_STOCK_MENU_PROP</a>
</dt>
<dt>GNOME_STOCK_MENU_QUIT, <a href="libgnomeui-gnome-stock-icons.html#id2671613">GNOME_STOCK_MENU_QUIT</a>
</dt>
<dt>GNOME_STOCK_MENU_REDO, <a href="libgnomeui-gnome-stock-icons.html#id2672024">GNOME_STOCK_MENU_REDO</a>
</dt>
<dt>GNOME_STOCK_MENU_REFRESH, <a href="libgnomeui-gnome-stock-icons.html#id2672480">GNOME_STOCK_MENU_REFRESH</a>
</dt>
<dt>GNOME_STOCK_MENU_REVERT, <a href="libgnomeui-gnome-stock-icons.html#id2671476">GNOME_STOCK_MENU_REVERT</a>
</dt>
<dt>GNOME_STOCK_MENU_SAVE, <a href="libgnomeui-gnome-stock-icons.html#id2671384">GNOME_STOCK_MENU_SAVE</a>
</dt>
<dt>GNOME_STOCK_MENU_SAVE_AS, <a href="libgnomeui-gnome-stock-icons.html#id2671430">GNOME_STOCK_MENU_SAVE_AS</a>
</dt>
<dt>GNOME_STOCK_MENU_SCORES, <a href="libgnomeui-gnome-stock-icons.html#id2671932">GNOME_STOCK_MENU_SCORES</a>
</dt>
<dt>GNOME_STOCK_MENU_SEARCH, <a href="libgnomeui-gnome-stock-icons.html#id2672115">GNOME_STOCK_MENU_SEARCH</a>
</dt>
<dt>GNOME_STOCK_MENU_SPELLCHECK, <a href="libgnomeui-gnome-stock-icons.html#id2673029">GNOME_STOCK_MENU_SPELLCHECK</a>
</dt>
<dt>GNOME_STOCK_MENU_SRCHRPL, <a href="libgnomeui-gnome-stock-icons.html#id2672161">GNOME_STOCK_MENU_SRCHRPL</a>
</dt>
<dt>GNOME_STOCK_MENU_STOP, <a href="libgnomeui-gnome-stock-icons.html#id2672434">GNOME_STOCK_MENU_STOP</a>
</dt>
<dt>GNOME_STOCK_MENU_TEXT_BOLD, <a href="libgnomeui-gnome-stock-icons.html#id2674175">GNOME_STOCK_MENU_TEXT_BOLD</a>
</dt>
<dt>GNOME_STOCK_MENU_TEXT_ITALIC, <a href="libgnomeui-gnome-stock-icons.html#id2674221">GNOME_STOCK_MENU_TEXT_ITALIC</a>
</dt>
<dt>GNOME_STOCK_MENU_TEXT_STRIKEOUT, <a href="libgnomeui-gnome-stock-icons.html#id2674314">GNOME_STOCK_MENU_TEXT_STRIKEOUT</a>
</dt>
<dt>GNOME_STOCK_MENU_TEXT_UNDERLINE, <a href="libgnomeui-gnome-stock-icons.html#id2674267">GNOME_STOCK_MENU_TEXT_UNDERLINE</a>
</dt>
<dt>GNOME_STOCK_MENU_TIMER, <a href="libgnomeui-gnome-stock-icons.html#id2672938">GNOME_STOCK_MENU_TIMER</a>
</dt>
<dt>GNOME_STOCK_MENU_TIMER_STOP, <a href="libgnomeui-gnome-stock-icons.html#id2672983">GNOME_STOCK_MENU_TIMER_STOP</a>
</dt>
<dt>GNOME_STOCK_MENU_TOP, <a href="libgnomeui-gnome-stock-icons.html#id2673715">GNOME_STOCK_MENU_TOP</a>
</dt>
<dt>GNOME_STOCK_MENU_TRASH, <a href="libgnomeui-gnome-stock-icons.html#id2672800">GNOME_STOCK_MENU_TRASH</a>
</dt>
<dt>GNOME_STOCK_MENU_TRASH_FULL, <a href="libgnomeui-gnome-stock-icons.html#id2672846">GNOME_STOCK_MENU_TRASH_FULL</a>
</dt>
<dt>GNOME_STOCK_MENU_UNDELETE, <a href="libgnomeui-gnome-stock-icons.html#id2672892">GNOME_STOCK_MENU_UNDELETE</a>
</dt>
<dt>GNOME_STOCK_MENU_UNDO, <a href="libgnomeui-gnome-stock-icons.html#id2671978">GNOME_STOCK_MENU_UNDO</a>
</dt>
<dt>GNOME_STOCK_MENU_UP, <a href="libgnomeui-gnome-stock-icons.html#id2673624">GNOME_STOCK_MENU_UP</a>
</dt>
<dt>GNOME_STOCK_MENU_VOLUME, <a href="libgnomeui-gnome-stock-icons.html#id2673212">GNOME_STOCK_MENU_VOLUME</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_ABOUT, <a href="libgnomeui-gnome-stock-icons.html#id2669816">GNOME_STOCK_PIXMAP_ABOUT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_ADD, <a href="libgnomeui-gnome-stock-icons.html#id2671015">GNOME_STOCK_PIXMAP_ADD</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_ALIGN_CENTER, <a href="libgnomeui-gnome-stock-icons.html#id2670550">GNOME_STOCK_PIXMAP_ALIGN_CENTER</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_ALIGN_JUSTIFY, <a href="libgnomeui-gnome-stock-icons.html#id2670597">GNOME_STOCK_PIXMAP_ALIGN_JUSTIFY</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_ALIGN_LEFT, <a href="libgnomeui-gnome-stock-icons.html#id2670458">GNOME_STOCK_PIXMAP_ALIGN_LEFT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_ALIGN_RIGHT, <a href="libgnomeui-gnome-stock-icons.html#id2670503">GNOME_STOCK_PIXMAP_ALIGN_RIGHT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_ATTACH, <a href="libgnomeui-gnome-stock-icons.html#id2670275">GNOME_STOCK_PIXMAP_ATTACH</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_BACK, <a href="libgnomeui-gnome-stock-icons.html#id2668318">GNOME_STOCK_PIXMAP_BACK</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_BOOK_BLUE, <a href="libgnomeui-gnome-stock-icons.html#id2669677">GNOME_STOCK_PIXMAP_BOOK_BLUE</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_BOOK_GREEN, <a href="libgnomeui-gnome-stock-icons.html#id2669631">GNOME_STOCK_PIXMAP_BOOK_GREEN</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_BOOK_OPEN, <a href="libgnomeui-gnome-stock-icons.html#id2669769">GNOME_STOCK_PIXMAP_BOOK_OPEN</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_BOOK_RED, <a href="libgnomeui-gnome-stock-icons.html#id2669585">GNOME_STOCK_PIXMAP_BOOK_RED</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_BOOK_YELLOW, <a href="libgnomeui-gnome-stock-icons.html#id2669723">GNOME_STOCK_PIXMAP_BOOK_YELLOW</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_BOTTOM, <a href="libgnomeui-gnome-stock-icons.html#id2670229">GNOME_STOCK_PIXMAP_BOTTOM</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_CDROM, <a href="libgnomeui-gnome-stock-icons.html#id2669448">GNOME_STOCK_PIXMAP_CDROM</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_CLEAR, <a href="libgnomeui-gnome-stock-icons.html#id2667944">GNOME_STOCK_PIXMAP_CLEAR</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_CLOSE, <a href="libgnomeui-gnome-stock-icons.html#id2667624">GNOME_STOCK_PIXMAP_CLOSE</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_COLORSELECTOR, <a href="libgnomeui-gnome-stock-icons.html#id2670969">GNOME_STOCK_PIXMAP_COLORSELECTOR</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_CONVERT, <a href="libgnomeui-gnome-stock-icons.html#id2670000">GNOME_STOCK_PIXMAP_CONVERT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_COPY, <a href="libgnomeui-gnome-stock-icons.html#id2667852">GNOME_STOCK_PIXMAP_COPY</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_CUT, <a href="libgnomeui-gnome-stock-icons.html#id2667807">GNOME_STOCK_PIXMAP_CUT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_DOWN, <a href="libgnomeui-gnome-stock-icons.html#id2670137">GNOME_STOCK_PIXMAP_DOWN</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_EXEC, <a href="libgnomeui-gnome-stock-icons.html#id2670412">GNOME_STOCK_PIXMAP_EXEC</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_EXIT, <a href="libgnomeui-gnome-stock-icons.html#id2670922">GNOME_STOCK_PIXMAP_EXIT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_FIRST, <a href="libgnomeui-gnome-stock-icons.html#id2668410">GNOME_STOCK_PIXMAP_FIRST</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_FONT, <a href="libgnomeui-gnome-stock-icons.html#id2670366">GNOME_STOCK_PIXMAP_FONT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_FORWARD, <a href="libgnomeui-gnome-stock-icons.html#id2668364">GNOME_STOCK_PIXMAP_FORWARD</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_HELP, <a href="libgnomeui-gnome-stock-icons.html#id2668082">GNOME_STOCK_PIXMAP_HELP</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_HOME, <a href="libgnomeui-gnome-stock-icons.html#id2668502">GNOME_STOCK_PIXMAP_HOME</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_INDEX, <a href="libgnomeui-gnome-stock-icons.html#id2670320">GNOME_STOCK_PIXMAP_INDEX</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_JUMP_TO, <a href="libgnomeui-gnome-stock-icons.html#id2670046">GNOME_STOCK_PIXMAP_JUMP_TO</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_LAST, <a href="libgnomeui-gnome-stock-icons.html#id2668456">GNOME_STOCK_PIXMAP_LAST</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_LINE_IN, <a href="libgnomeui-gnome-stock-icons.html#id2669401">GNOME_STOCK_PIXMAP_LINE_IN</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_MAIL, <a href="libgnomeui-gnome-stock-icons.html#id2668837">GNOME_STOCK_PIXMAP_MAIL</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_MAIL_FWD, <a href="libgnomeui-gnome-stock-icons.html#id2669051">GNOME_STOCK_PIXMAP_MAIL_FWD</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_MAIL_NEW, <a href="libgnomeui-gnome-stock-icons.html#id2669103">GNOME_STOCK_PIXMAP_MAIL_NEW</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_MAIL_RCV, <a href="libgnomeui-gnome-stock-icons.html#id2668891">GNOME_STOCK_PIXMAP_MAIL_RCV</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_MAIL_RPL, <a href="libgnomeui-gnome-stock-icons.html#id2668998">GNOME_STOCK_PIXMAP_MAIL_RPL</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_MAIL_SND, <a href="libgnomeui-gnome-stock-icons.html#id2668944">GNOME_STOCK_PIXMAP_MAIL_SND</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_MIC, <a href="libgnomeui-gnome-stock-icons.html#id2669356">GNOME_STOCK_PIXMAP_MIC</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_MIDI, <a href="libgnomeui-gnome-stock-icons.html#id2669539">GNOME_STOCK_PIXMAP_MIDI</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_MULTIPLE, <a href="libgnomeui-gnome-stock-icons.html#id2669908">GNOME_STOCK_PIXMAP_MULTIPLE</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_NEW, <a href="libgnomeui-gnome-stock-icons.html#id2667532">GNOME_STOCK_PIXMAP_NEW</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_NOT, <a href="libgnomeui-gnome-stock-icons.html#id2669954">GNOME_STOCK_PIXMAP_NOT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_OPEN, <a href="libgnomeui-gnome-stock-icons.html#id2667577">GNOME_STOCK_PIXMAP_OPEN</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_PASTE, <a href="libgnomeui-gnome-stock-icons.html#id2667898">GNOME_STOCK_PIXMAP_PASTE</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_PREFERENCES, <a href="libgnomeui-gnome-stock-icons.html#id2668035">GNOME_STOCK_PIXMAP_PREFERENCES</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_PRINT, <a href="libgnomeui-gnome-stock-icons.html#id2668182">GNOME_STOCK_PIXMAP_PRINT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_PROPERTIES, <a href="libgnomeui-gnome-stock-icons.html#id2667989">GNOME_STOCK_PIXMAP_PROPERTIES</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_QUIT, <a href="libgnomeui-gnome-stock-icons.html#id2669862">GNOME_STOCK_PIXMAP_QUIT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_REDO, <a href="libgnomeui-gnome-stock-icons.html#id2668686">GNOME_STOCK_PIXMAP_REDO</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_REFRESH, <a href="libgnomeui-gnome-stock-icons.html#id2668594">GNOME_STOCK_PIXMAP_REFRESH</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_REMOVE, <a href="libgnomeui-gnome-stock-icons.html#id2671060">GNOME_STOCK_PIXMAP_REMOVE</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_REVERT, <a href="libgnomeui-gnome-stock-icons.html#id2667669">GNOME_STOCK_PIXMAP_REVERT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_SAVE, <a href="libgnomeui-gnome-stock-icons.html#id2667715">GNOME_STOCK_PIXMAP_SAVE</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_SAVE_AS, <a href="libgnomeui-gnome-stock-icons.html#id2667761">GNOME_STOCK_PIXMAP_SAVE_AS</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_SCORES, <a href="libgnomeui-gnome-stock-icons.html#id2668128">GNOME_STOCK_PIXMAP_SCORES</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_SEARCH, <a href="libgnomeui-gnome-stock-icons.html#id2668227">GNOME_STOCK_PIXMAP_SEARCH</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_SPELLCHECK, <a href="libgnomeui-gnome-stock-icons.html#id2669310">GNOME_STOCK_PIXMAP_SPELLCHECK</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_SRCHRPL, <a href="libgnomeui-gnome-stock-icons.html#id2668273">GNOME_STOCK_PIXMAP_SRCHRPL</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_STOP, <a href="libgnomeui-gnome-stock-icons.html#id2668548">GNOME_STOCK_PIXMAP_STOP</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TABLE_BORDERS, <a href="libgnomeui-gnome-stock-icons.html#id2671106">GNOME_STOCK_PIXMAP_TABLE_BORDERS</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TABLE_FILL, <a href="libgnomeui-gnome-stock-icons.html#id2671152">GNOME_STOCK_PIXMAP_TABLE_FILL</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TEXT_BOLD, <a href="libgnomeui-gnome-stock-icons.html#id2670644">GNOME_STOCK_PIXMAP_TEXT_BOLD</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TEXT_BULLETED_LIST, <a href="libgnomeui-gnome-stock-icons.html#id2671199">GNOME_STOCK_PIXMAP_TEXT_BULLETED_LIST</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TEXT_INDENT, <a href="libgnomeui-gnome-stock-icons.html#id2670829">GNOME_STOCK_PIXMAP_TEXT_INDENT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TEXT_ITALIC, <a href="libgnomeui-gnome-stock-icons.html#id2670690">GNOME_STOCK_PIXMAP_TEXT_ITALIC</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TEXT_NUMBERED_LIST, <a href="libgnomeui-gnome-stock-icons.html#id2671245">GNOME_STOCK_PIXMAP_TEXT_NUMBERED_LIST</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TEXT_STRIKEOUT, <a href="libgnomeui-gnome-stock-icons.html#id2670783">GNOME_STOCK_PIXMAP_TEXT_STRIKEOUT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TEXT_UNDERLINE, <a href="libgnomeui-gnome-stock-icons.html#id2670736">GNOME_STOCK_PIXMAP_TEXT_UNDERLINE</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TEXT_UNINDENT, <a href="libgnomeui-gnome-stock-icons.html#id2670875">GNOME_STOCK_PIXMAP_TEXT_UNINDENT</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TIMER, <a href="libgnomeui-gnome-stock-icons.html#id2668731">GNOME_STOCK_PIXMAP_TIMER</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TIMER_STOP, <a href="libgnomeui-gnome-stock-icons.html#id2668785">GNOME_STOCK_PIXMAP_TIMER_STOP</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TOP, <a href="libgnomeui-gnome-stock-icons.html#id2670183">GNOME_STOCK_PIXMAP_TOP</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TRASH, <a href="libgnomeui-gnome-stock-icons.html#id2669157">GNOME_STOCK_PIXMAP_TRASH</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_TRASH_FULL, <a href="libgnomeui-gnome-stock-icons.html#id2669211">GNOME_STOCK_PIXMAP_TRASH_FULL</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_UNDELETE, <a href="libgnomeui-gnome-stock-icons.html#id2669263">GNOME_STOCK_PIXMAP_UNDELETE</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_UNDO, <a href="libgnomeui-gnome-stock-icons.html#id2668640">GNOME_STOCK_PIXMAP_UNDO</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_UP, <a href="libgnomeui-gnome-stock-icons.html#id2670092">GNOME_STOCK_PIXMAP_UP</a>
</dt>
<dt>GNOME_STOCK_PIXMAP_VOLUME, <a href="libgnomeui-gnome-stock-icons.html#id2669493">GNOME_STOCK_PIXMAP_VOLUME</a>
</dt>
<dt>gnome_theme_file_foreach_key, <a href="libgnomeui-GnomeThemeFile.html#id2804872">gnome_theme_file_foreach_key ()</a>
</dt>
<dt>gnome_theme_file_foreach_section, <a href="libgnomeui-GnomeThemeFile.html#id2804699">gnome_theme_file_foreach_section ()</a>
</dt>
<dt>gnome_theme_file_free, <a href="libgnomeui-GnomeThemeFile.html#id2804592">gnome_theme_file_free ()</a>
</dt>
<dt>gnome_theme_file_get_integer, <a href="libgnomeui-GnomeThemeFile.html#id2805312">gnome_theme_file_get_integer ()</a>
</dt>
<dt>gnome_theme_file_get_locale_string, <a href="libgnomeui-GnomeThemeFile.html#id2805741">gnome_theme_file_get_locale_string ()</a>
</dt>
<dt>gnome_theme_file_get_raw, <a href="libgnomeui-GnomeThemeFile.html#id2805088">gnome_theme_file_get_raw ()</a>
</dt>
<dt>gnome_theme_file_get_string, <a href="libgnomeui-GnomeThemeFile.html#id2805547">gnome_theme_file_get_string ()</a>
</dt>
<dt>gnome_theme_file_new_from_string, <a href="libgnomeui-GnomeThemeFile.html#id2804322">gnome_theme_file_new_from_string ()</a>
</dt>
<dt>GNOME_THEME_FILE_PARSE_ERROR, <a href="libgnomeui-GnomeThemeFile.html#id2805936">GNOME_THEME_FILE_PARSE_ERROR</a>
</dt>
<dt>gnome_theme_file_parse_error_quark, <a href="libgnomeui-GnomeThemeFile.html#id2805981">gnome_theme_file_parse_error_quark ()</a>
</dt>
<dt>gnome_theme_file_to_string, <a href="libgnomeui-GnomeThemeFile.html#id2804473">gnome_theme_file_to_string ()</a>
</dt>
<dt>GNOME_TYPE_ICON_THEME, <a href="libgnomeui-gnometypebuiltins.html#id2685595">GNOME_TYPE_ICON_THEME</a>
</dt>
<dt>gnome_warning_dialog, <a href="libgnomeui-gnome-dialog-util.html#id2721912">gnome_warning_dialog ()</a>
</dt>
<dt>gnome_warning_dialog_parented, <a href="libgnomeui-gnome-dialog-util.html#id2722002">gnome_warning_dialog_parented ()</a>
</dt>
<dt>gnome_window_icon_init, <a href="libgnomeui-gnome-window-icon.html#id2810058">gnome_window_icon_init ()</a>
</dt>
<dt>gnome_window_icon_set_default_from_file, <a href="libgnomeui-gnome-window-icon.html#id2809869">gnome_window_icon_set_default_from_file ()</a>
</dt>
<dt>gnome_window_icon_set_default_from_file_list, <a href="libgnomeui-gnome-window-icon.html#id2809958">gnome_window_icon_set_default_from_file_list ()</a>
</dt>
<dt>gnome_window_icon_set_from_default, <a href="libgnomeui-gnome-window-icon.html#id2809518">gnome_window_icon_set_from_default ()</a>
</dt>
<dt>gnome_window_icon_set_from_file, <a href="libgnomeui-gnome-window-icon.html#id2809618">gnome_window_icon_set_from_file ()</a>
</dt>
<dt>gnome_window_icon_set_from_file_list, <a href="libgnomeui-gnome-window-icon.html#id2809747">gnome_window_icon_set_from_file_list ()</a>
</dt>
<dt>gnome_window_toplevel_set_title, <a href="libgnomeui-gnome-window.html#id2808821">gnome_window_toplevel_set_title ()</a>
</dt>
<dt>GNOME_YES, <a href="libgnomeui-gnome-uidefs.html#id2689264">GNOME_YES</a>
</dt>
</dl>
</div></div>
</div>
</body>
</html>
|