1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558
|
<INCLUDE>libgnomeui/libgnomeui.h</INCLUDE>
<SECTION>
<FILE>gnome-about</FILE>
<TITLE>GnomeAbout</TITLE>
GnomeAbout
gnome_about_new
gnome_about_construct
<SUBSECTION Standard>
GnomeAboutClass
GNOME_ABOUT
GNOME_IS_ABOUT
GNOME_TYPE_ABOUT
gnome_about_get_type
GNOME_ABOUT_CLASS
GNOME_IS_ABOUT_CLASS
GNOME_ABOUT_GET_CLASS
<SUBSECTION Private>
GnomeAboutPrivate
</SECTION>
<SECTION>
<FILE>gnome-app</FILE>
GNOME_APP_MENUBAR_NAME
GNOME_APP_TOOLBAR_NAME
<TITLE>GnomeApp</TITLE>
GnomeApp
gnome_app_new
gnome_app_construct
gnome_app_set_menus
gnome_app_set_toolbar
gnome_app_set_statusbar
gnome_app_set_statusbar_custom
gnome_app_set_contents
gnome_app_add_toolbar
gnome_app_add_docked
gnome_app_add_dock_item
gnome_app_enable_layout_config
gnome_app_get_dock
gnome_app_get_dock_item_by_name
<SUBSECTION Standard>
GnomeAppClass
GNOME_APP
GNOME_IS_APP
GNOME_TYPE_APP
gnome_app_get_type
GNOME_APP_CLASS
GNOME_IS_APP_CLASS
GNOME_APP_GET_CLASS
<SUBSECTION Private>
GnomeAppPrivate
</SECTION>
<SECTION>
<FILE>gnome-appbar</FILE>
GNOME_APPBAR_HAS_STATUS
GNOME_APPBAR_HAS_PROGRESS
GNOME_APPBAR_INTERACTIVE
<TITLE>GnomeAppBar</TITLE>
GnomeAppBar
gnome_appbar_new
gnome_appbar_set_status
gnome_appbar_get_status
gnome_appbar_set_default
gnome_appbar_push
gnome_appbar_pop
gnome_appbar_clear_stack
gnome_appbar_set_progress_percentage
gnome_appbar_get_progress
gnome_appbar_refresh
gnome_appbar_set_prompt
gnome_appbar_clear_prompt
gnome_appbar_get_response
<SUBSECTION Standard>
GnomeAppBarClass
GNOME_APPBAR
GNOME_IS_APPBAR
GNOME_TYPE_APPBAR
gnome_appbar_get_type
GNOME_APPBAR_CLASS
GNOME_IS_APPBAR_CLASS
GNOME_APPBAR_GET_CLASS
<SUBSECTION Private>
GnomeAppBarPrivate
GnomeAppBarMsg
</SECTION>
<SECTION>
<FILE>gnome-authentication</FILE>
<TITLE>GnomeAuthentication</TITLE>
gnome_authentication_manager_init
gnome_authentication_manager_dialog_is_visible
gnome_authentication_manager_pop_async
gnome_authentication_manager_pop_sync
gnome_authentication_manager_push_async
gnome_authentication_manager_push_sync
</SECTION>
<SECTION>
<FILE>gnome-client</FILE>
GNOME_CLIENT_CONNECTED
GnomeDialogType
GnomeRestartStyle
GnomeClientFlags
GnomeSaveStyle
GnomeInteractStyle
GnomeInteractFunction
<TITLE>GnomeClient</TITLE>
GnomeClient
GNOME_CLIENT_PARAM_SM_CONNECT
gnome_master_client
gnome_client_get_config_prefix
gnome_client_get_global_config_prefix
gnome_client_module_info_get
gnome_client_set_global_config_prefix
gnome_client_get_flags
gnome_client_set_restart_style
gnome_client_set_priority
gnome_client_set_restart_command
gnome_client_add_static_arg
gnome_client_set_discard_command
gnome_client_set_resign_command
gnome_client_set_shutdown_command
gnome_client_set_current_directory
gnome_client_set_environment
gnome_client_set_clone_command
gnome_client_set_process_id
gnome_client_set_program
gnome_client_set_user_id
gnome_client_save_any_dialog
gnome_client_save_error_dialog
gnome_client_request_phase_2
gnome_client_request_save
gnome_client_flush
gnome_client_disable_master_connection
gnome_client_new
gnome_client_new_without_connection
gnome_client_connect
gnome_client_disconnect
gnome_client_set_id
gnome_client_get_id
gnome_client_get_previous_id
gnome_client_get_desktop_id
gnome_client_request_interaction
gnome_client_request_interaction_interp
gnome_interaction_key_return
<SUBSECTION Private>
GnomeClientState
GNOME_CLIENT_MODULE
gnome_client_module_info_get
<SUBSECTION Standard>
GnomeClientClass
GNOME_CLIENT
GNOME_IS_CLIENT
GNOME_TYPE_CLIENT
gnome_client_get_type
GNOME_CLIENT_CLASS
GNOME_IS_CLIENT_CLASS
GNOME_CLIENT_GET_CLASS
</SECTION>
<SECTION>
<FILE>gnome-color-picker</FILE>
<TITLE>GnomeColorPicker</TITLE>
GnomeColorPicker
gnome_color_picker_new
gnome_color_picker_set_d
gnome_color_picker_get_d
gnome_color_picker_set_i8
gnome_color_picker_get_i8
gnome_color_picker_set_i16
gnome_color_picker_get_i16
gnome_color_picker_set_dither
gnome_color_picker_get_dither
gnome_color_picker_set_use_alpha
gnome_color_picker_get_use_alpha
gnome_color_picker_set_title
gnome_color_picker_get_title
<SUBSECTION Standard>
GnomeColorPickerClass
GNOME_COLOR_PICKER
GNOME_IS_COLOR_PICKER
GNOME_TYPE_COLOR_PICKER
gnome_color_picker_get_type
GNOME_COLOR_PICKER_CLASS
GNOME_IS_COLOR_PICKER_CLASS
GNOME_COLOR_PICKER_GET_CLASS
<SUBSECTION Private>
GnomeColorPickerPrivate
</SECTION>
<SECTION>
<FILE>gnome-dateedit</FILE>
GnomeDateEditFlags
<TITLE>GnomeDateEdit</TITLE>
GnomeDateEdit
gnome_date_edit_new
gnome_date_edit_new_flags
gnome_date_edit_construct
gnome_date_edit_set_time
gnome_date_edit_get_time
gnome_date_edit_set_popup_range
gnome_date_edit_set_flags
gnome_date_edit_get_flags
gnome_date_edit_get_initial_time
gnome_date_edit_get_date
<SUBSECTION Standard>
GnomeDateEditClass
GNOME_DATE_EDIT
GNOME_IS_DATE_EDIT
GNOME_TYPE_DATE_EDIT
gnome_date_edit_get_type
GNOME_DATE_EDIT_CLASS
GNOME_IS_DATE_EDIT_CLASS
GNOME_DATE_EDIT_GET_CLASS
<SUBSECTION Private>
GnomeDateEditPrivate
</SECTION>
<SECTION>
<FILE>gnome-dialog</FILE>
<TITLE>GnomeDialog</TITLE>
GnomeDialog
gnome_dialog_new
gnome_dialog_newv
gnome_dialog_set_parent
gnome_dialog_button_connect
gnome_dialog_button_connect_object
gnome_dialog_run
gnome_dialog_run_and_close
gnome_dialog_set_default
gnome_dialog_grab_focus
gnome_dialog_set_sensitive
gnome_dialog_set_accelerator
gnome_dialog_close
gnome_dialog_close_hides
gnome_dialog_set_close
gnome_dialog_editable_enters
gnome_dialog_append_buttons
gnome_dialog_append_button
gnome_dialog_append_buttonsv
gnome_dialog_append_button_with_pixmap
gnome_dialog_append_buttons_with_pixmaps
gnome_dialog_construct
gnome_dialog_constructv
GNOME_STOCK_BUTTON_OK
GNOME_STOCK_BUTTON_CANCEL
GNOME_STOCK_BUTTON_YES
GNOME_STOCK_BUTTON_NO
GNOME_STOCK_BUTTON_CLOSE
GNOME_STOCK_BUTTON_APPLY
GNOME_STOCK_BUTTON_HELP
GNOME_STOCK_BUTTON_NEXT
GNOME_STOCK_BUTTON_PREV
GNOME_STOCK_BUTTON_UP
GNOME_STOCK_BUTTON_DOWN
GNOME_STOCK_BUTTON_FONT
<SUBSECTION Standard>
GnomeDialogClass
GNOME_DIALOG
GNOME_IS_DIALOG
GNOME_TYPE_DIALOG
gnome_dialog_get_type
GNOME_DIALOG_CLASS
GNOME_IS_DIALOG_CLASS
GNOME_DIALOG_GET_CLASS
</SECTION>
<SECTION>
<FILE>gnome-druid-page-edge</FILE>
GnomeEdgePosition
<TITLE>GnomeDruidPageEdge</TITLE>
GnomeDruidPageEdge
gnome_druid_page_edge_new
gnome_druid_page_edge_new_aa
gnome_druid_page_edge_new_with_vals
gnome_druid_page_edge_construct
gnome_druid_page_edge_set_bg_color
gnome_druid_page_edge_set_textbox_color
gnome_druid_page_edge_set_logo_bg_color
gnome_druid_page_edge_set_title_color
gnome_druid_page_edge_set_text_color
gnome_druid_page_edge_set_text
gnome_druid_page_edge_set_title
gnome_druid_page_edge_set_logo
gnome_druid_page_edge_set_watermark
gnome_druid_page_edge_set_top_watermark
<SUBSECTION Standard>
GnomeDruidPageEdgeClass
GNOME_DRUID_PAGE_EDGE
GNOME_IS_DRUID_PAGE_EDGE
GNOME_TYPE_DRUID_PAGE_EDGE
gnome_druid_page_edge_get_type
GNOME_DRUID_PAGE_EDGE_CLASS
GNOME_IS_DRUID_PAGE_EDGE_CLASS
GNOME_DRUID_PAGE_EDGE_GET_CLASS
<SUBSECTION Private>
GnomeDruidPageEdgePrivate
gnome_druid_page_edge_construct
</SECTION>
<SECTION>
<FILE>gnome-druid-page-standard</FILE>
<TITLE>GnomeDruidPageStandard</TITLE>
GnomeDruidPageStandard
gnome_druid_page_standard_set_bg_color
gnome_druid_page_standard_set_logo_bg_color
gnome_druid_page_standard_set_title_color
gnome_druid_page_standard_new
gnome_druid_page_standard_new_with_vals
gnome_druid_page_standard_set_title
gnome_druid_page_standard_set_logo
gnome_druid_page_standard_set_top_watermark
gnome_druid_page_standard_set_title_foreground
gnome_druid_page_standard_set_background
gnome_druid_page_standard_set_logo_background
gnome_druid_page_standard_set_contents_background
gnome_druid_page_standard_append_item
<SUBSECTION Standard>
GnomeDruidPageStandardClass
GNOME_DRUID_PAGE_STANDARD
GNOME_IS_DRUID_PAGE_STANDARD
GNOME_TYPE_DRUID_PAGE_STANDARD
gnome_druid_page_standard_get_type
GNOME_DRUID_PAGE_STANDARD_CLASS
GNOME_IS_DRUID_PAGE_STANDARD_CLASS
GNOME_DRUID_PAGE_STANDARD_GET_CLASS
<SUBSECTION Private>
GnomeDruidPageStandardPrivate
</SECTION>
<SECTION>
<FILE>gnome-druid-page</FILE>
<TITLE>GnomeDruidPage</TITLE>
GnomeDruidPage
gnome_druid_page_new
gnome_druid_page_next
gnome_druid_page_prepare
gnome_druid_page_back
gnome_druid_page_cancel
gnome_druid_page_finish
<SUBSECTION Standard>
GnomeDruidPageClass
GNOME_DRUID_PAGE
GNOME_IS_DRUID_PAGE
GNOME_TYPE_DRUID_PAGE
gnome_druid_page_get_type
GNOME_DRUID_PAGE_CLASS
GNOME_IS_DRUID_PAGE_CLASS
GNOME_DRUID_PAGE_GET_CLASS
<SUBSECTION Private>
GnomeDruidPagePrivate
</SECTION>
<SECTION>
<FILE>gnome-druid</FILE>
<TITLE>GnomeDruid</TITLE>
GnomeDruid
gnome_druid_new
gnome_druid_set_buttons_sensitive
gnome_druid_set_show_finish
gnome_druid_set_show_help
gnome_druid_prepend_page
gnome_druid_insert_page
gnome_druid_append_page
gnome_druid_set_page
gnome_druid_new_with_window
gnome_druid_construct_with_window
<SUBSECTION Standard>
GnomeDruidClass
GNOME_DRUID
GNOME_IS_DRUID
GNOME_TYPE_DRUID
gnome_druid_get_type
GNOME_DRUID_CLASS
GNOME_IS_DRUID_CLASS
GNOME_DRUID_GET_CLASS
<SUBSECTION Private>
GnomeDruidPrivate
</SECTION>
<SECTION>
<FILE>gnome-entry</FILE>
GnomeEntryPrivate
<TITLE>GnomeEntry</TITLE>
GnomeEntry
gnome_entry_new
gnome_entry_construct
gnome_entry_gtk_entry
gnome_entry_get_history_id
gnome_entry_set_history_id
gnome_entry_set_max_saved
gnome_entry_get_max_saved
gnome_entry_prepend_history
gnome_entry_append_history
gnome_entry_clear_history
<SUBSECTION Standard>
GnomeEntryClass
GNOME_ENTRY
GNOME_IS_ENTRY
GNOME_TYPE_ENTRY
gnome_entry_get_type
GNOME_ENTRY_CLASS
GNOME_IS_ENTRY_CLASS
GNOME_ENTRY_GET_CLASS
</SECTION>
<SECTION>
<FILE>gnome-file-entry</FILE>
<TITLE>GnomeFileEntry</TITLE>
GnomeFileEntry
gnome_file_entry_new
gnome_file_entry_construct
gnome_file_entry_gnome_entry
gnome_file_entry_gtk_entry
gnome_file_entry_set_title
gnome_file_entry_set_default_path
gnome_file_entry_set_directory_entry
gnome_file_entry_get_directory_entry
gnome_file_entry_get_full_path
gnome_file_entry_set_filename
gnome_file_entry_set_modal
gnome_file_entry_get_modal
gnome_file_entry_set_directory
<SUBSECTION Standard>
GnomeFileEntryClass
GNOME_FILE_ENTRY
GNOME_IS_FILE_ENTRY
GNOME_TYPE_FILE_ENTRY
gnome_file_entry_get_type
GNOME_FILE_ENTRY_CLASS
GNOME_IS_FILE_ENTRY_CLASS
GNOME_FILE_ENTRY_GET_CLASS
<SUBSECTION Private>
GnomeFileEntryPrivate
</SECTION>
<SECTION>
<FILE>gnome-font-picker</FILE>
GnomeFontPickerMode
GnomeFontPickerPrivate
<TITLE>GnomeFontPicker</TITLE>
GnomeFontPicker
gnome_font_picker_new
gnome_font_picker_set_title
gnome_font_picker_get_title
gnome_font_picker_get_mode
gnome_font_picker_set_mode
gnome_font_picker_fi_set_use_font_in_label
gnome_font_picker_fi_set_show_size
gnome_font_picker_uw_set_widget
gnome_font_picker_uw_get_widget
gnome_font_picker_get_font_name
gnome_font_picker_get_font
gnome_font_picker_set_font_name
gnome_font_picker_get_preview_text
gnome_font_picker_set_preview_text
<SUBSECTION Standard>
GnomeFontPickerClass
GNOME_FONT_PICKER
GNOME_IS_FONT_PICKER
GNOME_TYPE_FONT_PICKER
gnome_font_picker_get_type
GNOME_FONT_PICKER_CLASS
GNOME_IS_FONT_PICKER_CLASS
GNOME_FONT_PICKER_GET_CLASS
</SECTION>
<SECTION>
<FILE>gnome-href</FILE>
<TITLE>GnomeHRef</TITLE>
GnomeHRef
gnome_href_new
gnome_href_construct
gnome_href_set_url
gnome_href_get_url
gnome_href_set_text
gnome_href_get_text
gnome_href_set_label
gnome_href_get_label
<SUBSECTION Standard>
GnomeHRefClass
GNOME_HREF
GNOME_IS_HREF
GNOME_TYPE_HREF
gnome_href_get_type
GNOME_HREF_CLASS
GNOME_IS_HREF_CLASS
GNOME_HREF_GET_CLASS
<SUBSECTION Private>
GnomeHRefPrivate
</SECTION>
<SECTION>
<FILE>gnome-icon-entry</FILE>
GnomeIconEntryPrivate
<TITLE>GnomeIconEntry</TITLE>
GnomeIconEntry
gnome_icon_entry_new
gnome_icon_entry_construct
gnome_icon_entry_set_pixmap_subdir
gnome_icon_entry_get_filename
gnome_icon_entry_set_filename
gnome_icon_entry_set_browse_dialog_title
gnome_icon_entry_set_history_id
gnome_icon_entry_set_max_saved
gnome_icon_entry_pick_dialog
gnome_icon_entry_set_icon
gnome_icon_entry_gnome_file_entry
gnome_icon_entry_gnome_entry
gnome_icon_entry_gtk_entry
<SUBSECTION Standard>
GnomeIconEntryClass
GNOME_ICON_ENTRY
GNOME_IS_ICON_ENTRY
GNOME_TYPE_ICON_ENTRY
gnome_icon_entry_get_type
GNOME_ICON_ENTRY_CLASS
GNOME_IS_ICON_ENTRY_CLASS
GNOME_ICON_ENTRY_GET_CLASS
</SECTION>
<SECTION>
<FILE>gnome-icon-item</FILE>
<TITLE>GnomeIconTextItem</TITLE>
GnomeIconTextItem
gnome_icon_text_item_configure
gnome_icon_text_item_setxy
gnome_icon_text_item_select
gnome_icon_text_item_focus
gnome_icon_text_item_get_text
gnome_icon_text_item_start_editing
gnome_icon_text_item_stop_editing
gnome_icon_text_item_get_editable
<SUBSECTION Standard>
GnomeIconTextItemClass
GNOME_ICON_TEXT_ITEM
GNOME_IS_ICON_TEXT_ITEM
GNOME_TYPE_ICON_TEXT_ITEM
gnome_icon_text_item_get_type
GNOME_ICON_TEXT_ITEM_CLASS
GNOME_IS_ICON_TEXT_ITEM_CLASS
GNOME_ICON_TEXT_ITEM_GET_CLASS
<SUBSECTION Private>
GnomeIconTextItemPrivate
</SECTION>
<SECTION>
<FILE>gnome-icon-list</FILE>
GnomeIconListMode
<TITLE>GnomeIconList</TITLE>
GnomeIconList
gnome_icon_list_new
gnome_icon_list_construct
gnome_icon_list_set_hadjustment
gnome_icon_list_set_vadjustment
gnome_icon_list_freeze
gnome_icon_list_thaw
gnome_icon_list_insert
gnome_icon_list_insert_pixbuf
gnome_icon_list_append
gnome_icon_list_append_pixbuf
gnome_icon_list_clear
gnome_icon_list_remove
gnome_icon_list_get_num_icons
gnome_icon_list_get_selection_mode
gnome_icon_list_set_selection_mode
gnome_icon_list_select_icon
gnome_icon_list_select_all
gnome_icon_list_unselect_icon
gnome_icon_list_unselect_all
gnome_icon_list_get_selection
gnome_icon_list_focus_icon
gnome_icon_list_set_icon_width
gnome_icon_list_set_row_spacing
gnome_icon_list_set_col_spacing
gnome_icon_list_set_text_spacing
gnome_icon_list_set_icon_border
gnome_icon_list_set_separators
gnome_icon_list_get_icon_filename
gnome_icon_list_find_icon_from_filename
gnome_icon_list_set_icon_data
gnome_icon_list_set_icon_data_full
gnome_icon_list_find_icon_from_data
gnome_icon_list_get_icon_data
gnome_icon_list_moveto
gnome_icon_list_icon_is_visible
gnome_icon_list_get_icon_at
gnome_icon_list_get_items_per_line
gnome_icon_list_get_icon_text_item
gnome_icon_list_get_icon_pixbuf_item
<SUBSECTION Standard>
GnomeIconListClass
GNOME_ICON_LIST
GNOME_IS_ICON_LIST
GNOME_TYPE_ICON_LIST
gnome_icon_list_get_type
GNOME_ICON_LIST_CLASS
GNOME_IS_ICON_LIST_CLASS
GNOME_ICON_LIST_GET_CLASS
<SUBSECTION Private>
GnomeIconListPrivate
</SECTION>
<SECTION>
<FILE>gnome-icon-lookup</FILE>
<TITLE>GnomeIconLookup</TITLE>
GnomeIconLookupFlags
GnomeIconLookupResultFlags
gnome_icon_lookup
gnome_icon_lookup_sync
</SECTION>
<SECTION>
<FILE>gnome-icon-theme</FILE>
<TITLE>GnomeIconTheme</TITLE>
GnomeIconThemeClass
GnomeIconTheme
gnome_icon_theme_new
gnome_icon_theme_get_search_path
gnome_icon_theme_set_search_path
gnome_icon_theme_get_allow_svg
gnome_icon_theme_set_allow_svg
gnome_icon_theme_get_example_icon_name
gnome_icon_theme_append_search_path
gnome_icon_theme_prepend_search_path
gnome_icon_theme_set_custom_theme
gnome_icon_theme_lookup_icon
gnome_icon_theme_has_icon
gnome_icon_theme_list_icons
gnome_icon_theme_rescan_if_needed
gnome_icon_data_dup
gnome_icon_data_free
<SUBSECTION Standard>
GNOME_IS_ICON_THEME
GNOME_IS_ICON_THEME_CLASS
GNOME_ICON_THEME
GNOME_ICON_THEME_CLASS
GNOME_ICON_THEME_GET_CLASS
<SUBSECTION Private>
GnomeIconThemePrivate
</SECTION>
<SECTION>
<FILE>gnome-icon-sel</FILE>
<TITLE>GnomeIconSelection</TITLE>
GnomeIconSelection
gnome_icon_selection_new
gnome_icon_selection_add_defaults
gnome_icon_selection_add_directory
gnome_icon_selection_show_icons
gnome_icon_selection_clear
gnome_icon_selection_get_icon
gnome_icon_selection_select_icon
gnome_icon_selection_stop_loading
gnome_icon_selection_get_gil
gnome_icon_selection_get_box
<SUBSECTION Standard>
GnomeIconSelectionClass
GNOME_ICON_SELECTION
GNOME_IS_ICON_SELECTION
GNOME_TYPE_ICON_SELECTION
gnome_icon_selection_get_type
GNOME_ICON_SELECTION_CLASS
GNOME_IS_ICON_SELECTION_CLASS
GNOME_ICON_SELECTION_GET_CLASS
<SUBSECTION Private>
GnomeIconSelectionPrivate
</SECTION>
<SECTION>
<FILE>gnome-password</FILE>
<TITLE>GnomePassword</TITLE>
GnomePasswordDialog
GnomePasswordDialogDetails
GnomePasswordDialogRemember
gnome_password_dialog_anon_selected
gnome_password_dialog_get_domain
gnome_password_dialog_get_password
gnome_password_dialog_get_new_password
gnome_password_dialog_get_remember
gnome_password_dialog_get_username
gnome_password_dialog_new
gnome_password_dialog_run_and_block
gnome_password_dialog_set_domain
gnome_password_dialog_set_password
gnome_password_dialog_set_readonly_domain
gnome_password_dialog_set_readonly_username
gnome_password_dialog_set_remember
gnome_password_dialog_set_show_domain
gnome_password_dialog_set_show_password
gnome_password_dialog_set_show_new_password
gnome_password_dialog_set_show_new_password_quality
gnome_password_dialog_set_show_remember
gnome_password_dialog_set_show_username
gnome_password_dialog_set_show_userpass_buttons
gnome_password_dialog_set_username
gnome_password_dialog_set_password_quality_func
<SUBSECTION Standard>
GnomePasswordDialogClass
GNOME_TYPE_PASSWORD_DIALOG
gnome_password_dialog_get_type
GNOME_PASSWORD_DIALOG
GNOME_PASSWORD_DIALOG_CLASS
GNOME_IS_PASSWORD_DIALOG
GNOME_IS_PASSWORD_DIALOG_CLASS
</SECTION>
<SECTION>
<FILE>gnome-thumbnail</FILE>
<TITLE>GnomeThumbnail</TITLE>
GnomeThumbnailFactory
GnomeThumbnailSize
GnomeThumbnailFactoryClass
gnome_thumbnail_factory_new
gnome_thumbnail_factory_lookup
gnome_thumbnail_factory_has_valid_failed_thumbnail
gnome_thumbnail_factory_can_thumbnail
gnome_thumbnail_factory_generate_thumbnail
gnome_thumbnail_factory_save_thumbnail
gnome_thumbnail_factory_create_failed_thumbnail
gnome_thumbnail_scale_down_pixbuf
gnome_thumbnail_has_uri
gnome_thumbnail_is_valid
gnome_thumbnail_md5
gnome_thumbnail_path_for_uri
<SUBSECTION Standard>
GNOME_THUMBNAIL_FACTORY
GNOME_THUMBNAIL_FACTORY_CLASS
GNOME_IS_THUMBNAIL_FACTORY
GNOME_IS_THUMBNAIL_FACTORY_CLASS
<SUBSECTION Private>
GnomeThumbnailFactoryPrivate
</SECTION>
<SECTION>
<FILE>gnome-theme-parse</FILE>
<TITLE>GnomeThemeFile</TITLE>
GnomeThemeFile
GnomeThemeFileSectionFunc
GnomeThemeFileParseError
GnomeThemeFileLineFunc
gnome_theme_file_new_from_string
gnome_theme_file_to_string
gnome_theme_file_free
gnome_theme_file_foreach_section
gnome_theme_file_foreach_key
gnome_theme_file_get_raw
gnome_theme_file_get_integer
gnome_theme_file_get_string
gnome_theme_file_get_locale_string
GNOME_THEME_FILE_PARSE_ERROR
gnome_theme_file_parse_error_quark
</SECTION>
<SECTION>
<FILE>gnome-mdi-child</FILE>
GnomeMDIChildViewCreator
GnomeMDIChildMenuCreator
GnomeMDIChildConfigFunc
GnomeMDIChildLabelFunc
<TITLE>GnomeMDIChild</TITLE>
GnomeMDIChild
gnome_mdi_child_add_view
gnome_mdi_child_remove_view
gnome_mdi_child_set_name
gnome_mdi_child_set_menu_template
<SUBSECTION Standard>
GnomeMDIChildClass
GNOME_MDI_CHILD
GNOME_IS_MDI_CHILD
GNOME_TYPE_MDI_CHILD
gnome_mdi_child_get_type
GNOME_MDI_CHILD_CLASS
GNOME_IS_MDI_CHILD_CLASS
GNOME_MDI_CHILD_GET_CLASS
</SECTION>
<SECTION>
<FILE>gnome-mdi-generic-child</FILE>
<TITLE>GnomeMDIGenericChild</TITLE>
GnomeMDIGenericChild
gnome_mdi_generic_child_new
gnome_mdi_generic_child_set_view_creator
gnome_mdi_generic_child_set_view_creator_full
gnome_mdi_generic_child_set_menu_creator
gnome_mdi_generic_child_set_menu_creator_full
gnome_mdi_generic_child_set_config_func
gnome_mdi_generic_child_set_config_func_full
gnome_mdi_generic_child_set_label_func
gnome_mdi_generic_child_set_label_func_full
<SUBSECTION Standard>
GnomeMDIGenericChildClass
GNOME_MDI_GENERIC_CHILD
GNOME_IS_MDI_GENERIC_CHILD
GNOME_TYPE_MDI_GENERIC_CHILD
gnome_mdi_generic_child_get_type
GNOME_MDI_GENERIC_CHILD_CLASS
GNOME_IS_MDI_GENERIC_CHILD_CLASS
GNOME_MDI_GENERIC_CHILD_GET_CLASS
</SECTION>
<SECTION>
<FILE>gnome-mdi</FILE>
GnomeMDIMode
<TITLE>GnomeMDI</TITLE>
GnomeMDI
gnome_mdi_new
gnome_mdi_set_mode
gnome_mdi_set_menubar_template
gnome_mdi_set_toolbar_template
gnome_mdi_set_child_menu_path
gnome_mdi_set_child_list_path
gnome_mdi_add_view
gnome_mdi_add_toplevel_view
gnome_mdi_remove_view
gnome_mdi_get_active_view
gnome_mdi_set_active_view
gnome_mdi_add_child
gnome_mdi_remove_child
gnome_mdi_remove_all
gnome_mdi_open_toplevel
gnome_mdi_update_child
gnome_mdi_get_active_child
gnome_mdi_find_child
gnome_mdi_get_active_window
gnome_mdi_register
gnome_mdi_unregister
gnome_mdi_get_app_from_view
gnome_mdi_get_child_from_view
gnome_mdi_get_view_from_window
gnome_mdi_get_menubar_info
gnome_mdi_get_toolbar_info
gnome_mdi_get_child_menu_info
<SUBSECTION Standard>
GnomeMDIClass
GNOME_MDI
GNOME_IS_MDI
GNOME_TYPE_MDI
gnome_mdi_get_type
GNOME_MDI_CLASS
GNOME_IS_MDI_CLASS
GNOME_MDI_GET_CLASS
</SECTION>
<SECTION>
<FILE>gnome-messagebox</FILE>
GNOME_MESSAGE_BOX_INFO
GNOME_MESSAGE_BOX_WARNING
GNOME_MESSAGE_BOX_ERROR
GNOME_MESSAGE_BOX_QUESTION
GNOME_MESSAGE_BOX_GENERIC
<TITLE>GnomeMessageBox</TITLE>
GnomeMessageBox
gnome_message_box_new
gnome_message_box_newv
gnome_message_box_construct
<SUBSECTION Standard>
GnomeMessageBoxClass
GNOME_MESSAGE_BOX
GNOME_IS_MESSAGE_BOX
GNOME_TYPE_MESSAGE_BOX
gnome_message_box_get_type
GNOME_MESSAGE_BOX_CLASS
GNOME_IS_MESSAGE_BOX_CLASS
GNOME_MESSAGE_BOX_GET_CLASS
<SUBSECTION Private>
GnomeMessageBoxPrivate
GnomeMessageBoxButton
</SECTION>
<SECTION>
<FILE>gnome-multi-screen</FILE>
<TITLE>GnomeMultiScreen</TITLE>
gnome_url_show_on_screen
gnome_help_display_on_screen
gnome_help_display_with_doc_id_on_screen
gnome_help_display_desktop_on_screen
gnome_help_display_uri_on_screen
</SECTION>
<SECTION>
<FILE>gnome-pixmap-entry</FILE>
<TITLE>GnomePixmapEntry</TITLE>
GnomePixmapEntry
gnome_pixmap_entry_new
gnome_pixmap_entry_construct
gnome_pixmap_entry_set_pixmap_subdir
gnome_pixmap_entry_gnome_file_entry
gnome_pixmap_entry_gnome_entry
gnome_pixmap_entry_gtk_entry
gnome_pixmap_entry_scrolled_window
gnome_pixmap_entry_preview_widget
gnome_pixmap_entry_set_preview
gnome_pixmap_entry_set_preview_size
gnome_pixmap_entry_get_filename
<SUBSECTION Standard>
GnomePixmapEntryClass
GNOME_PIXMAP_ENTRY
GNOME_IS_PIXMAP_ENTRY
GNOME_TYPE_PIXMAP_ENTRY
gnome_pixmap_entry_get_type
GNOME_PIXMAP_ENTRY_CLASS
GNOME_IS_PIXMAP_ENTRY_CLASS
GNOME_PIXMAP_ENTRY_GET_CLASS
<SUBSECTION Private>
GnomePixmapEntryPrivate
</SECTION>
<SECTION>
<FILE>gnome-pixmap</FILE>
GnomePixmapPrivate
<TITLE>GnomePixmap</TITLE>
GnomePixmap
gnome_pixmap_new_from_file
gnome_pixmap_new_from_file_at_size
gnome_pixmap_new_from_xpm_d
gnome_pixmap_new_from_xpm_d_at_size
gnome_pixmap_new_from_gnome_pixmap
gnome_pixmap_load_file
gnome_pixmap_load_file_at_size
gnome_pixmap_load_xpm_d
gnome_pixmap_load_xpm_d_at_size
<SUBSECTION Standard>
GnomePixmapClass
GNOME_PIXMAP
GNOME_IS_PIXMAP
GNOME_TYPE_PIXMAP
gnome_pixmap_get_type
GNOME_PIXMAP_CLASS
GNOME_IS_PIXMAP_CLASS
GNOME_PIXMAP_GET_CLASS
</SECTION>
<SECTION>
<FILE>gnome-propertybox</FILE>
<TITLE>GnomePropertyBox</TITLE>
GnomePropertyBox
gnome_property_box_new
gnome_property_box_changed
gnome_property_box_set_modified
gnome_property_box_append_page
gnome_property_box_set_state
<SUBSECTION Standard>
GnomePropertyBoxClass
GNOME_PROPERTY_BOX
GNOME_IS_PROPERTY_BOX
GNOME_TYPE_PROPERTY_BOX
gnome_property_box_get_type
GNOME_PROPERTY_BOX_CLASS
GNOME_IS_PROPERTY_BOX_CLASS
GNOME_PROPERTY_BOX_GET_CLASS
<SUBSECTION Private>
GNOME_PROPERTY_BOX_DIRTY
</SECTION>
<SECTION>
<FILE>gnome-scores</FILE>
<TITLE>GnomeScores</TITLE>
GnomeScores
gnome_scores_display_with_pixmap
gnome_scores_new
gnome_scores_construct
gnome_scores_set_logo_label
gnome_scores_set_logo_pixmap
gnome_scores_set_logo_widget
gnome_scores_set_color
gnome_scores_set_def_color
gnome_scores_set_colors
gnome_scores_set_logo_label_title
gnome_scores_set_current_player
<SUBSECTION Standard>
GnomeScoresClass
GNOME_SCORES
GNOME_IS_SCORES
GNOME_TYPE_SCORES
gnome_scores_get_type
GNOME_SCORES_CLASS
GNOME_IS_SCORES_CLASS
GNOME_SCORES_GET_CLASS
<SUBSECTION Private>
GnomeScoresPrivate
</SECTION>
<SECTION>
<FILE>gnome-app-helper</FILE>
GnomeUIInfoType
GnomeUIInfoConfigurableTypes
GNOME_APP_CONFIGURABLE_ITEM_EXIT
GnomeUIPixmapType
GnomeUIInfo
GnomeUIBuilderData
GNOMEUIINFO_KEY_UIDATA
GNOMEUIINFO_KEY_UIBDATA
GnomeUISignalConnectFunc
gnome_accelerators_sync
gnome_app_fill_menu
gnome_app_fill_menu_with_data
gnome_app_fill_menu_custom
gnome_app_ui_configure_configurable
gnome_app_create_menus
gnome_app_create_menus_interp
gnome_app_create_menus_with_data
gnome_app_create_menus_custom
gnome_app_fill_toolbar
gnome_app_fill_toolbar_with_data
gnome_app_fill_toolbar_custom
gnome_app_create_toolbar
gnome_app_create_toolbar_interp
gnome_app_create_toolbar_with_data
gnome_app_create_toolbar_custom
gnome_app_find_menu_pos
gnome_app_remove_menus
gnome_app_remove_menu_range
gnome_app_insert_menus_custom
gnome_app_insert_menus
gnome_app_insert_menus_with_data
gnome_app_insert_menus_interp
gnome_app_install_appbar_menu_hints
gnome_app_install_statusbar_menu_hints
gnome_app_install_menu_hints
gnome_app_setup_toolbar
GNOMEUIINFO_END
GNOMEUIINFO_SEPARATOR
GNOMEUIINFO_ITEM
GNOMEUIINFO_ITEM_STOCK
GNOMEUIINFO_ITEM_NONE
GNOMEUIINFO_ITEM_DATA
GNOMEUIINFO_TOGGLEITEM
GNOMEUIINFO_TOGGLEITEM_DATA
GNOMEUIINFO_HELP
GNOMEUIINFO_SUBTREE
GNOMEUIINFO_SUBTREE_HINT
GNOMEUIINFO_SUBTREE_STOCK
GNOMEUIINFO_INCLUDE
GNOMEUIINFO_RADIOLIST
GNOMEUIINFO_RADIOITEM
GNOMEUIINFO_RADIOITEM_DATA
GNOMEUIINFO_MENU_NEW_ITEM
GNOMEUIINFO_MENU_NEW_SUBTREE
GNOMEUIINFO_MENU_OPEN_ITEM
GNOMEUIINFO_MENU_SAVE_ITEM
GNOMEUIINFO_MENU_SAVE_AS_ITEM
GNOMEUIINFO_MENU_REVERT_ITEM
GNOMEUIINFO_MENU_PRINT_ITEM
GNOMEUIINFO_MENU_PRINT_SETUP_ITEM
GNOMEUIINFO_MENU_CLOSE_ITEM
GNOMEUIINFO_MENU_EXIT_ITEM
GNOMEUIINFO_MENU_QUIT_ITEM
GNOMEUIINFO_MENU_CUT_ITEM
GNOMEUIINFO_MENU_COPY_ITEM
GNOMEUIINFO_MENU_PASTE_ITEM
GNOMEUIINFO_MENU_SELECT_ALL_ITEM
GNOMEUIINFO_MENU_CLEAR_ITEM
GNOMEUIINFO_MENU_UNDO_ITEM
GNOMEUIINFO_MENU_REDO_ITEM
GNOMEUIINFO_MENU_FIND_ITEM
GNOMEUIINFO_MENU_FIND_AGAIN_ITEM
GNOMEUIINFO_MENU_REPLACE_ITEM
GNOMEUIINFO_MENU_PROPERTIES_ITEM
GNOMEUIINFO_MENU_PREFERENCES_ITEM
GNOMEUIINFO_MENU_NEW_WINDOW_ITEM
GNOMEUIINFO_MENU_CLOSE_WINDOW_ITEM
GNOMEUIINFO_MENU_ABOUT_ITEM
GNOMEUIINFO_MENU_NEW_GAME_ITEM
GNOMEUIINFO_MENU_PAUSE_GAME_ITEM
GNOMEUIINFO_MENU_RESTART_GAME_ITEM
GNOMEUIINFO_MENU_UNDO_MOVE_ITEM
GNOMEUIINFO_MENU_REDO_MOVE_ITEM
GNOMEUIINFO_MENU_HINT_ITEM
GNOMEUIINFO_MENU_SCORES_ITEM
GNOMEUIINFO_MENU_END_GAME_ITEM
GNOMEUIINFO_MENU_FILE_TREE
GNOMEUIINFO_MENU_EDIT_TREE
GNOMEUIINFO_MENU_VIEW_TREE
GNOMEUIINFO_MENU_SETTINGS_TREE
GNOMEUIINFO_MENU_FILES_TREE
GNOMEUIINFO_MENU_WINDOWS_TREE
GNOMEUIINFO_MENU_HELP_TREE
GNOMEUIINFO_MENU_GAME_TREE
GNOME_MENU_FILE_STRING
GNOME_MENU_FILE_PATH
GNOME_MENU_EDIT_STRING
GNOME_MENU_EDIT_PATH
GNOME_MENU_VIEW_STRING
GNOME_MENU_VIEW_PATH
GNOME_MENU_SETTINGS_STRING
GNOME_MENU_SETTINGS_PATH
GNOME_MENU_NEW_STRING
GNOME_MENU_NEW_PATH
GNOME_MENU_FILES_STRING
GNOME_MENU_FILES_PATH
GNOME_MENU_WINDOWS_STRING
GNOME_MENU_WINDOWS_PATH
gnome_app_helper_gettext
L_
D_
</SECTION>
<SECTION>
<FILE>gnome-app-util</FILE>
gnome_app_message
gnome_app_flash
gnome_app_error
gnome_app_warning
gnome_app_question
gnome_app_question_modal
gnome_app_ok_cancel
gnome_app_ok_cancel_modal
gnome_app_request_string
gnome_app_request_password
GnomeAppProgressFunc
GnomeAppProgressCancelFunc
GnomeAppProgressKey
gnome_app_progress_timeout
gnome_app_progress_manual
gnome_app_set_progress
gnome_app_progress_done
</SECTION>
<SECTION>
<FILE>gnome-dialog-util</FILE>
gnome_ok_dialog
gnome_ok_dialog_parented
gnome_error_dialog
gnome_error_dialog_parented
gnome_warning_dialog
gnome_warning_dialog_parented
gnome_question_dialog
gnome_question_dialog_parented
gnome_question_dialog_modal
gnome_question_dialog_modal_parented
gnome_ok_cancel_dialog
gnome_ok_cancel_dialog_parented
gnome_ok_cancel_dialog_modal
gnome_ok_cancel_dialog_modal_parented
gnome_request_string_dialog
gnome_request_string_dialog_parented
gnome_request_password_dialog
gnome_request_password_dialog_parented
gnome_request_dialog
</SECTION>
<SECTION>
<FILE>gnome-mdi-session</FILE>
GnomeMDIChildCreator
gnome_mdi_restore_state
gnome_mdi_save_state
</SECTION>
<SECTION>
<FILE>gnome-popup-menu</FILE>
gnome_popup_menu_new
gnome_popup_menu_new_with_accelgroup
gnome_popup_menu_get_accel_group
gnome_popup_menu_attach
gnome_popup_menu_do_popup
gnome_popup_menu_do_popup_modal
gnome_popup_menu_append
gnome_gtk_widget_add_popup_items
</SECTION>
<SECTION>
<FILE>gnome-stock-icons</FILE>
GNOME_STOCK_TIMER
GNOME_STOCK_TIMER_STOP
GNOME_STOCK_TRASH
GNOME_STOCK_TRASH_FULL
GNOME_STOCK_SCORES
GNOME_STOCK_ABOUT
GNOME_STOCK_BLANK
GNOME_STOCK_VOLUME
GNOME_STOCK_MIDI
GNOME_STOCK_MIC
GNOME_STOCK_LINE_IN
GNOME_STOCK_MAIL
GNOME_STOCK_MAIL_RCV
GNOME_STOCK_MAIL_SND
GNOME_STOCK_MAIL_RPL
GNOME_STOCK_MAIL_FWD
GNOME_STOCK_MAIL_NEW
GNOME_STOCK_ATTACH
GNOME_STOCK_BOOK_RED
GNOME_STOCK_BOOK_GREEN
GNOME_STOCK_BOOK_BLUE
GNOME_STOCK_BOOK_YELLOW
GNOME_STOCK_BOOK_OPEN
GNOME_STOCK_MULTIPLE_FILE
GNOME_STOCK_NOT
GNOME_STOCK_TABLE_BORDERS
GNOME_STOCK_TABLE_FILL
GNOME_STOCK_TEXT_INDENT
GNOME_STOCK_TEXT_UNINDENT
GNOME_STOCK_TEXT_BULLETED_LIST
GNOME_STOCK_TEXT_NUMBERED_LIST
GNOME_STOCK_PIXMAP_NEW
GNOME_STOCK_PIXMAP_OPEN
GNOME_STOCK_PIXMAP_CLOSE
GNOME_STOCK_PIXMAP_REVERT
GNOME_STOCK_PIXMAP_SAVE
GNOME_STOCK_PIXMAP_SAVE_AS
GNOME_STOCK_PIXMAP_CUT
GNOME_STOCK_PIXMAP_COPY
GNOME_STOCK_PIXMAP_PASTE
GNOME_STOCK_PIXMAP_CLEAR
GNOME_STOCK_PIXMAP_PROPERTIES
GNOME_STOCK_PIXMAP_PREFERENCES
GNOME_STOCK_PIXMAP_HELP
GNOME_STOCK_PIXMAP_SCORES
GNOME_STOCK_PIXMAP_PRINT
GNOME_STOCK_PIXMAP_SEARCH
GNOME_STOCK_PIXMAP_SRCHRPL
GNOME_STOCK_PIXMAP_BACK
GNOME_STOCK_PIXMAP_FORWARD
GNOME_STOCK_PIXMAP_FIRST
GNOME_STOCK_PIXMAP_LAST
GNOME_STOCK_PIXMAP_HOME
GNOME_STOCK_PIXMAP_STOP
GNOME_STOCK_PIXMAP_REFRESH
GNOME_STOCK_PIXMAP_UNDO
GNOME_STOCK_PIXMAP_REDO
GNOME_STOCK_PIXMAP_TIMER
GNOME_STOCK_PIXMAP_TIMER_STOP
GNOME_STOCK_PIXMAP_MAIL
GNOME_STOCK_PIXMAP_MAIL_RCV
GNOME_STOCK_PIXMAP_MAIL_SND
GNOME_STOCK_PIXMAP_MAIL_RPL
GNOME_STOCK_PIXMAP_MAIL_FWD
GNOME_STOCK_PIXMAP_MAIL_NEW
GNOME_STOCK_PIXMAP_TRASH
GNOME_STOCK_PIXMAP_TRASH_FULL
GNOME_STOCK_PIXMAP_UNDELETE
GNOME_STOCK_PIXMAP_SPELLCHECK
GNOME_STOCK_PIXMAP_MIC
GNOME_STOCK_PIXMAP_LINE_IN
GNOME_STOCK_PIXMAP_CDROM
GNOME_STOCK_PIXMAP_VOLUME
GNOME_STOCK_PIXMAP_MIDI
GNOME_STOCK_PIXMAP_BOOK_RED
GNOME_STOCK_PIXMAP_BOOK_GREEN
GNOME_STOCK_PIXMAP_BOOK_BLUE
GNOME_STOCK_PIXMAP_BOOK_YELLOW
GNOME_STOCK_PIXMAP_BOOK_OPEN
GNOME_STOCK_PIXMAP_ABOUT
GNOME_STOCK_PIXMAP_QUIT
GNOME_STOCK_PIXMAP_MULTIPLE
GNOME_STOCK_PIXMAP_NOT
GNOME_STOCK_PIXMAP_CONVERT
GNOME_STOCK_PIXMAP_JUMP_TO
GNOME_STOCK_PIXMAP_UP
GNOME_STOCK_PIXMAP_DOWN
GNOME_STOCK_PIXMAP_TOP
GNOME_STOCK_PIXMAP_BOTTOM
GNOME_STOCK_PIXMAP_ATTACH
GNOME_STOCK_PIXMAP_INDEX
GNOME_STOCK_PIXMAP_FONT
GNOME_STOCK_PIXMAP_EXEC
GNOME_STOCK_PIXMAP_ALIGN_LEFT
GNOME_STOCK_PIXMAP_ALIGN_RIGHT
GNOME_STOCK_PIXMAP_ALIGN_CENTER
GNOME_STOCK_PIXMAP_ALIGN_JUSTIFY
GNOME_STOCK_PIXMAP_TEXT_BOLD
GNOME_STOCK_PIXMAP_TEXT_ITALIC
GNOME_STOCK_PIXMAP_TEXT_UNDERLINE
GNOME_STOCK_PIXMAP_TEXT_STRIKEOUT
GNOME_STOCK_PIXMAP_TEXT_INDENT
GNOME_STOCK_PIXMAP_TEXT_UNINDENT
GNOME_STOCK_PIXMAP_EXIT
GNOME_STOCK_PIXMAP_COLORSELECTOR
GNOME_STOCK_PIXMAP_ADD
GNOME_STOCK_PIXMAP_REMOVE
GNOME_STOCK_PIXMAP_TABLE_BORDERS
GNOME_STOCK_PIXMAP_TABLE_FILL
GNOME_STOCK_PIXMAP_TEXT_BULLETED_LIST
GNOME_STOCK_PIXMAP_TEXT_NUMBERED_LIST
GNOME_STOCK_MENU_BLANK
GNOME_STOCK_MENU_NEW
GNOME_STOCK_MENU_SAVE
GNOME_STOCK_MENU_SAVE_AS
GNOME_STOCK_MENU_REVERT
GNOME_STOCK_MENU_OPEN
GNOME_STOCK_MENU_CLOSE
GNOME_STOCK_MENU_QUIT
GNOME_STOCK_MENU_CUT
GNOME_STOCK_MENU_COPY
GNOME_STOCK_MENU_PASTE
GNOME_STOCK_MENU_PROP
GNOME_STOCK_MENU_PREF
GNOME_STOCK_MENU_ABOUT
GNOME_STOCK_MENU_SCORES
GNOME_STOCK_MENU_UNDO
GNOME_STOCK_MENU_REDO
GNOME_STOCK_MENU_PRINT
GNOME_STOCK_MENU_SEARCH
GNOME_STOCK_MENU_SRCHRPL
GNOME_STOCK_MENU_BACK
GNOME_STOCK_MENU_FORWARD
GNOME_STOCK_MENU_FIRST
GNOME_STOCK_MENU_LAST
GNOME_STOCK_MENU_HOME
GNOME_STOCK_MENU_STOP
GNOME_STOCK_MENU_REFRESH
GNOME_STOCK_MENU_MAIL
GNOME_STOCK_MENU_MAIL_RCV
GNOME_STOCK_MENU_MAIL_SND
GNOME_STOCK_MENU_MAIL_RPL
GNOME_STOCK_MENU_MAIL_FWD
GNOME_STOCK_MENU_MAIL_NEW
GNOME_STOCK_MENU_TRASH
GNOME_STOCK_MENU_TRASH_FULL
GNOME_STOCK_MENU_UNDELETE
GNOME_STOCK_MENU_TIMER
GNOME_STOCK_MENU_TIMER_STOP
GNOME_STOCK_MENU_SPELLCHECK
GNOME_STOCK_MENU_MIC
GNOME_STOCK_MENU_LINE_IN
GNOME_STOCK_MENU_CDROM
GNOME_STOCK_MENU_VOLUME
GNOME_STOCK_MENU_MIDI
GNOME_STOCK_MENU_BOOK_RED
GNOME_STOCK_MENU_BOOK_GREEN
GNOME_STOCK_MENU_BOOK_BLUE
GNOME_STOCK_MENU_BOOK_YELLOW
GNOME_STOCK_MENU_BOOK_OPEN
GNOME_STOCK_MENU_CONVERT
GNOME_STOCK_MENU_JUMP_TO
GNOME_STOCK_MENU_UP
GNOME_STOCK_MENU_DOWN
GNOME_STOCK_MENU_TOP
GNOME_STOCK_MENU_BOTTOM
GNOME_STOCK_MENU_ATTACH
GNOME_STOCK_MENU_INDEX
GNOME_STOCK_MENU_FONT
GNOME_STOCK_MENU_EXEC
GNOME_STOCK_MENU_ALIGN_LEFT
GNOME_STOCK_MENU_ALIGN_RIGHT
GNOME_STOCK_MENU_ALIGN_CENTER
GNOME_STOCK_MENU_ALIGN_JUSTIFY
GNOME_STOCK_MENU_TEXT_BOLD
GNOME_STOCK_MENU_TEXT_ITALIC
GNOME_STOCK_MENU_TEXT_UNDERLINE
GNOME_STOCK_MENU_TEXT_STRIKEOUT
GNOME_STOCK_MENU_EXIT
</SECTION>
<SECTION>
<FILE>gnome-types</FILE>
GnomeStringCallback
GnomeReplyCallback
GnomePreferencesType
</SECTION>
<SECTION>
<FILE>gnome-ui-init</FILE>
LIBGNOMEUI_MODULE
LIBGNOMEUI_PARAM_CRASH_DIALOG
LIBGNOMEUI_PARAM_DISPLAY
LIBGNOMEUI_PARAM_DEFAULT_ICON
gnome_init_with_popt_table
gnome_init
gnome_gtk_module_info_get
<SUBSECTION Private>
libgnomeui_module_info_get
GNOME_GTK_MODULE
gnome_gtk_module_info_get
</SECTION>
<SECTION>
<FILE>gnome-uidefs</FILE>
GNOME_PAD
GNOME_PAD_SMALL
GNOME_PAD_BIG
GNOME_YES
GNOME_NO
GNOME_OK
GNOME_CANCEL
GNOME_KEY_NAME_QUIT
GNOME_KEY_MOD_QUIT
GNOME_KEY_NAME_EXIT
GNOME_KEY_MOD_EXIT
GNOME_KEY_NAME_CLOSE
GNOME_KEY_MOD_CLOSE
GNOME_KEY_NAME_CUT
GNOME_KEY_MOD_CUT
GNOME_KEY_NAME_COPY
GNOME_KEY_MOD_COPY
GNOME_KEY_NAME_PASTE
GNOME_KEY_MOD_PASTE
GNOME_KEY_NAME_SELECT_ALL
GNOME_KEY_MOD_SELECT_ALL
GNOME_KEY_NAME_CLEAR
GNOME_KEY_MOD_CLEAR
GNOME_KEY_NAME_UNDO
GNOME_KEY_MOD_UNDO
GNOME_KEY_NAME_REDO
GNOME_KEY_MOD_REDO
GNOME_KEY_NAME_SAVE
GNOME_KEY_MOD_SAVE
GNOME_KEY_NAME_OPEN
GNOME_KEY_MOD_OPEN
GNOME_KEY_NAME_SAVE_AS
GNOME_KEY_MOD_SAVE_AS
GNOME_KEY_NAME_NEW
GNOME_KEY_MOD_NEW
GNOME_KEY_NAME_PRINT
GNOME_KEY_MOD_PRINT
GNOME_KEY_NAME_PRINT_SETUP
GNOME_KEY_MOD_PRINT_SETUP
GNOME_KEY_NAME_FIND
GNOME_KEY_MOD_FIND
GNOME_KEY_NAME_FIND_AGAIN
GNOME_KEY_MOD_FIND_AGAIN
GNOME_KEY_NAME_REPLACE
GNOME_KEY_MOD_REPLACE
GNOME_KEY_NAME_NEW_WINDOW
GNOME_KEY_MOD_NEW_WINDOW
GNOME_KEY_NAME_CLOSE_WINDOW
GNOME_KEY_MOD_CLOSE_WINDOW
GNOME_KEY_NAME_REDO_MOVE
GNOME_KEY_MOD_REDO_MOVE
GNOME_KEY_NAME_UNDO_MOVE
GNOME_KEY_MOD_UNDO_MOVE
GNOME_KEY_NAME_PAUSE_GAME
GNOME_KEY_MOD_PAUSE_GAME
GNOME_KEY_NAME_NEW_GAME
GNOME_KEY_MOD_NEW_GAME
</SECTION>
<SECTION>
<FILE>gnome-vfs-util</FILE>
GnomeGdkPixbufLoadCallback
GnomeGdkPixbufDoneCallback
gnome_gdk_pixbuf_new_from_uri
gnome_gdk_pixbuf_new_from_uri_async
gnome_gdk_pixbuf_new_from_uri_cancel
</SECTION>
<SECTION>
<FILE>gnome-window-icon</FILE>
gnome_window_icon_set_from_default
gnome_window_icon_set_from_file
gnome_window_icon_set_from_file_list
gnome_window_icon_set_default_from_file
gnome_window_icon_set_default_from_file_list
gnome_window_icon_init
</SECTION>
<SECTION>
<FILE>gnome-window</FILE>
gnome_window_toplevel_set_title
</SECTION>
<SECTION>
<FILE>gnome</FILE>
</SECTION>
<SECTION>
<FILE>libgnomeui</FILE>
</SECTION>
<SECTION>
<FILE>gnometypebuiltins</FILE>
GNOME_TYPE_UI_INFO_TYPE
gnome_ui_info_type_get_type
GNOME_TYPE_UI_INFO_CONFIGURABLE_TYPES
gnome_ui_info_configurable_types_get_type
GNOME_TYPE_UI_PIXMAP_TYPE
gnome_ui_pixmap_type_get_type
GNOME_TYPE_INTERACT_STYLE
gnome_interact_style_get_type
GNOME_TYPE_DIALOG_TYPE
gnome_dialog_type_get_type
GNOME_TYPE_SAVE_STYLE
gnome_save_style_get_type
GNOME_TYPE_RESTART_STYLE
gnome_restart_style_get_type
GNOME_TYPE_CLIENT_STATE
gnome_client_state_get_type
GNOME_TYPE_CLIENT_FLAGS
gnome_client_flags_get_type
GNOME_TYPE_DATE_EDIT_FLAGS
gnome_date_edit_flags_get_type
GNOME_TYPE_EDGE_POSITION
gnome_edge_position_get_type
GNOME_TYPE_FONT_PICKER_MODE
gnome_font_picker_mode_get_type
GNOME_TYPE_ICON_LIST_MODE
gnome_icon_list_mode_get_type
GNOME_TYPE_MDI_MODE
gnome_mdi_mode_get_type
GNOME_TYPE_PREFERENCES_TYPE
gnome_preferences_type_get_type
GNOME_TYPE_THUMBNAIL_SIZE
gnome_thumbnail_size_get_type
GNOME_TYPE_ICON_LOOKUP_FLAGS
gnome_icon_lookup_flags_get_type
GNOME_TYPE_ICON_LOOKUP_RESULT_FLAGS
gnome_icon_lookup_result_flags_get_type
GNOME_TYPE_ICON_THEME
gnome_icon_theme_get_type
GNOME_TYPE_THUMBNAIL_FACTORY
gnome_thumbnail_factory_get_type
</SECTION>
<SECTION>
<FILE>gnome-marshal</FILE>
</SECTION>
<SECTION>
<FILE>gnome-stock-pixbufs</FILE>
</SECTION>
<SECTION>
<FILE>gnome-ice</FILE>
<TITLE>GnomeIce</TITLE>
gnome_ice_init
</SECTION>
|