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
|
<SECTION>
<FILE>gimpbrowser</FILE>
<TITLE>GimpBrowser</TITLE>
GimpBrowser
gimp_browser_new
gimp_browser_add_search_types
gimp_browser_set_widget
gimp_browser_show_message
<SUBSECTION Standard>
GimpBrowserClass
GIMP_BROWSER
GIMP_IS_BROWSER
GIMP_TYPE_BROWSER
gimp_browser_get_type
GIMP_BROWSER_CLASS
GIMP_IS_BROWSER_CLASS
GIMP_BROWSER_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpbutton</FILE>
<TITLE>GimpButton</TITLE>
GimpButton
gimp_button_new
gimp_button_extended_clicked
<SUBSECTION Standard>
GIMP_BUTTON
GIMP_IS_BUTTON
GIMP_TYPE_BUTTON
gimp_button_get_type
GimpButtonClass
GIMP_BUTTON_CLASS
GIMP_IS_BUTTON_CLASS
GIMP_BUTTON_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpcairo-utils</FILE>
<TITLE>GimpCairoUtils</TITLE>
gimp_cairo_set_focus_line_pattern
gimp_cairo_surface_create_from_pixbuf
</SECTION>
<SECTION>
<FILE>gimpcellrenderercolor</FILE>
<TITLE>GimpCellRendererColor</TITLE>
GimpCellRendererColor
gimp_cell_renderer_color_new
<SUBSECTION Standard>
GimpCellRendererColorClass
GIMP_CELL_RENDERER_COLOR
GIMP_IS_CELL_RENDERER_COLOR
GIMP_TYPE_CELL_RENDERER_COLOR
gimp_cell_renderer_color_get_type
GIMP_CELL_RENDERER_COLOR_CLASS
GIMP_IS_CELL_RENDERER_COLOR_CLASS
GIMP_CELL_RENDERER_COLOR_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpcellrenderertoggle</FILE>
<TITLE>GimpCellRendererToggle</TITLE>
GimpCellRendererToggle
gimp_cell_renderer_toggle_new
gimp_cell_renderer_toggle_clicked
<SUBSECTION Standard>
GimpCellRendererToggleClass
GIMP_CELL_RENDERER_TOGGLE
GIMP_IS_CELL_RENDERER_TOGGLE
GIMP_TYPE_CELL_RENDERER_TOGGLE
gimp_cell_renderer_toggle_get_type
GIMP_CELL_RENDERER_TOGGLE_CLASS
GIMP_IS_CELL_RENDERER_TOGGLE_CLASS
GIMP_CELL_RENDERER_TOGGLE_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpchainbutton</FILE>
<TITLE>GimpChainButton</TITLE>
GimpChainButton
GimpChainPosition
gimp_chain_button_new
gimp_chain_button_set_active
gimp_chain_button_get_active
<SUBSECTION Standard>
GIMP_CHAIN_BUTTON
GIMP_IS_CHAIN_BUTTON
GIMP_TYPE_CHAIN_BUTTON
gimp_chain_button_get_type
GimpChainButtonClass
GIMP_CHAIN_BUTTON_CLASS
GIMP_IS_CHAIN_BUTTON_CLASS
GIMP_CHAIN_BUTTON_GET_CLASS
GIMP_TYPE_CHAIN_POSITION
gimp_chain_position_get_type
</SECTION>
<SECTION>
<FILE>gimpcolorarea</FILE>
<TITLE>GimpColorArea</TITLE>
GimpColorArea
GimpColorAreaType
gimp_color_area_new
gimp_color_area_set_color
gimp_color_area_get_color
gimp_color_area_has_alpha
gimp_color_area_set_type
gimp_color_area_set_draw_border
<SUBSECTION Standard>
GIMP_COLOR_AREA
GIMP_IS_COLOR_AREA
GIMP_TYPE_COLOR_AREA
gimp_color_area_get_type
GimpColorAreaClass
GIMP_COLOR_AREA_CLASS
GIMP_IS_COLOR_AREA_CLASS
GIMP_COLOR_AREA_GET_CLASS
GIMP_TYPE_COLOR_AREA_TYPE
gimp_color_area_type_get_type
</SECTION>
<SECTION>
<FILE>gimpcolorbutton</FILE>
<TITLE>GimpColorButton</TITLE>
GimpColorButton
gimp_color_button_new
gimp_color_button_set_color
gimp_color_button_get_color
gimp_color_button_set_update
gimp_color_button_get_update
gimp_color_button_has_alpha
gimp_color_button_set_type
<SUBSECTION Standard>
GIMP_COLOR_BUTTON
GIMP_IS_COLOR_BUTTON
GIMP_TYPE_COLOR_BUTTON
gimp_color_button_get_type
GimpColorButtonClass
GIMP_COLOR_BUTTON_CLASS
GIMP_IS_COLOR_BUTTON_CLASS
GIMP_COLOR_BUTTON_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpcolorhexentry</FILE>
<TITLE>GimpColorHexEntry</TITLE>
GimpColorHexEntry
gimp_color_hex_entry_new
gimp_color_hex_entry_set_color
gimp_color_hex_entry_get_color
<SUBSECTION Standard>
GimpColorHexEntryClass
GIMP_COLOR_HEX_ENTRY
GIMP_IS_COLOR_HEX_ENTRY
GIMP_TYPE_COLOR_HEX_ENTRY
gimp_color_hex_entry_get_type
GIMP_COLOR_HEX_ENTRY_CLASS
GIMP_IS_COLOR_HEX_ENTRY_CLASS
GIMP_COLOR_HEX_ENTRY_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpcolorscale</FILE>
<TITLE>GimpColorScale</TITLE>
GimpColorScale
gimp_color_scale_new
gimp_color_scale_set_channel
gimp_color_scale_set_color
<SUBSECTION Standard>
GimpColorScaleClass
GIMP_COLOR_SCALE
GIMP_IS_COLOR_SCALE
GIMP_TYPE_COLOR_SCALE
gimp_color_scale_get_type
GIMP_COLOR_SCALE_CLASS
GIMP_IS_COLOR_SCALE_CLASS
GIMP_COLOR_SCALE_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpcolorselection</FILE>
<TITLE>GimpColorSelection</TITLE>
GimpColorSelection
gimp_color_selection_new
gimp_color_selection_set_show_alpha
gimp_color_selection_get_show_alpha
gimp_color_selection_set_color
gimp_color_selection_get_color
gimp_color_selection_set_old_color
gimp_color_selection_get_old_color
gimp_color_selection_reset
gimp_color_selection_color_changed
gimp_color_selection_set_config
<SUBSECTION Standard>
GIMP_COLOR_SELECTION
GIMP_IS_COLOR_SELECTION
GIMP_TYPE_COLOR_SELECTION
gimp_color_selection_get_type
GimpColorSelectionClass
GIMP_COLOR_SELECTION_CLASS
GIMP_IS_COLOR_SELECTION_CLASS
GIMP_COLOR_SELECTION_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpcolorprofilestore</FILE>
<TITLE>GimpColorProfileStore</TITLE>
GimpColorProfileStore
gimp_color_profile_store_new
gimp_color_profile_store_add
<SUBSECTION Standard>
GimpColorProfileStoreClass
GIMP_COLOR_PROFILE_STORE
GIMP_IS_COLOR_PROFILE_STORE
GIMP_TYPE_COLOR_PROFILE_STORE
gimp_color_profile_store_get_type
GIMP_COLOR_PROFILE_STORE_CLASS
GIMP_IS_COLOR_PROFILE_STORE_CLASS
GIMP_COLOR_PROFILE_STORE_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpcolorprofilecombobox</FILE>
<TITLE>GimpColorProfileComboBox</TITLE>
GimpColorProfileComboBox
gimp_color_profile_combo_box_new
gimp_color_profile_combo_box_new_with_model
gimp_color_profile_combo_box_add
gimp_color_profile_combo_box_set_active
gimp_color_profile_combo_box_get_active
<SUBSECTION Standard>
GimpColorProfileComboBoxClass
GIMP_COLOR_PROFILE_COMBO_BOX
GIMP_IS_COLOR_PROFILE_COMBO_BOX
GIMP_TYPE_COLOR_PROFILE_COMBO_BOX
gimp_color_profile_combo_box_get_type
GIMP_COLOR_PROFILE_COMBO_BOX_CLASS
GIMP_IS_COLOR_PROFILE_COMBO_BOX_CLASS
GIMP_COLOR_PROFILE_COMBO_BOX_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpenumstore</FILE>
<TITLE>GimpEnumStore</TITLE>
GimpEnumStore
gimp_enum_store_new
gimp_enum_store_new_with_range
gimp_enum_store_new_with_values
gimp_enum_store_new_with_values_valist
gimp_enum_store_set_stock_prefix
<SUBSECTION Standard>
GimpEnumStoreClass
GIMP_ENUM_STORE
GIMP_IS_ENUM_STORE
GIMP_TYPE_ENUM_STORE
gimp_enum_store_get_type
GIMP_ENUM_STORE_CLASS
GIMP_IS_ENUM_STORE_CLASS
GIMP_ENUM_STORE_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpenumcombobox</FILE>
<TITLE>GimpEnumComboBox</TITLE>
GimpEnumComboBox
gimp_enum_combo_box_new
gimp_enum_combo_box_new_with_model
gimp_enum_combo_box_set_stock_prefix
<SUBSECTION Standard>
GimpEnumComboBoxClass
GIMP_ENUM_COMBO_BOX
GIMP_IS_ENUM_COMBO_BOX
GIMP_TYPE_ENUM_COMBO_BOX
gimp_enum_combo_box_get_type
GIMP_ENUM_COMBO_BOX_CLASS
GIMP_IS_ENUM_COMBO_BOX_CLASS
GIMP_ENUM_COMBO_BOX_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpenumlabel</FILE>
<TITLE>GimpEnumLabel</TITLE>
GimpEnumLabel
gimp_enum_label_new
gimp_enum_label_set_value
<SUBSECTION Standard>
GimpEnumLabelClass
GIMP_ENUM_LABEL
GIMP_IS_ENUM_LABEL
GIMP_TYPE_ENUM_LABEL
gimp_enum_label_get_type
GIMP_ENUM_LABEL_CLASS
GIMP_IS_ENUM_LABEL_CLASS
GIMP_ENUM_LABEL_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpfileentry</FILE>
<TITLE>GimpFileEntry</TITLE>
GimpFileEntry
gimp_file_entry_new
gimp_file_entry_get_filename
gimp_file_entry_set_filename
<SUBSECTION Standard>
GIMP_FILE_ENTRY
GIMP_IS_FILE_ENTRY
GIMP_TYPE_FILE_ENTRY
gimp_file_entry_get_type
GimpFileEntryClass
GIMP_FILE_ENTRY_CLASS
GIMP_IS_FILE_ENTRY_CLASS
GIMP_FILE_ENTRY_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpframe</FILE>
<TITLE>GimpFrame</TITLE>
GimpFrame
gimp_frame_new
<SUBSECTION Standard>
GimpFrameClass
GIMP_FRAME
GIMP_IS_FRAME
GIMP_TYPE_FRAME
gimp_frame_get_type
GIMP_FRAME_CLASS
GIMP_IS_FRAME_CLASS
GIMP_FRAME_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimphintbox</FILE>
<TITLE>GimpHintBox</TITLE>
gimp_hint_box_new
<SUBSECTION Standard>
GIMP_TYPE_HINT_BOX
gimp_hint_box_get_type
</SECTION>
<SECTION>
<FILE>gimppageselector</FILE>
<TITLE>GimpPageSelector</TITLE>
GimpPageSelector
GimpPageSelectorTarget
gimp_page_selector_new
gimp_page_selector_set_n_pages
gimp_page_selector_get_n_pages
gimp_page_selector_set_target
gimp_page_selector_get_target
gimp_page_selector_set_page_thumbnail
gimp_page_selector_get_page_thumbnail
gimp_page_selector_set_page_label
gimp_page_selector_get_page_label
gimp_page_selector_select_all
gimp_page_selector_unselect_all
gimp_page_selector_select_page
gimp_page_selector_unselect_page
gimp_page_selector_page_is_selected
gimp_page_selector_get_selected_pages
gimp_page_selector_select_range
gimp_page_selector_get_selected_range
<SUBSECTION Standard>
GimpPageSelectorClass
GIMP_PAGE_SELECTOR
GIMP_IS_PAGE_SELECTOR
GIMP_TYPE_PAGE_SELECTOR
gimp_page_selector_get_type
GIMP_PAGE_SELECTOR_CLASS
GIMP_IS_PAGE_SELECTOR_CLASS
GIMP_PAGE_SELECTOR_GET_CLASS
GIMP_TYPE_PAGE_SELECTOR_TARGET
gimp_page_selector_target_get_type
</SECTION>
<SECTION>
<FILE>gimppatheditor</FILE>
<TITLE>GimpPathEditor</TITLE>
GimpPathEditor
gimp_path_editor_new
gimp_path_editor_get_path
gimp_path_editor_set_path
gimp_path_editor_get_writable_path
gimp_path_editor_set_writable_path
gimp_path_editor_get_dir_writable
gimp_path_editor_set_dir_writable
<SUBSECTION Standard>
GIMP_PATH_EDITOR
GIMP_IS_PATH_EDITOR
GIMP_TYPE_PATH_EDITOR
gimp_path_editor_get_type
GimpPathEditorClass
GIMP_PATH_EDITOR_CLASS
GIMP_IS_PATH_EDITOR_CLASS
GIMP_PATH_EDITOR_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimppixmap</FILE>
<TITLE>GimpPixmap</TITLE>
GimpPixmap
gimp_pixmap_new
gimp_pixmap_set
<SUBSECTION Standard>
GIMP_PIXMAP
GIMP_IS_PIXMAP
GIMP_TYPE_PIXMAP
gimp_pixmap_get_type
GimpPixmapClass
GIMP_PIXMAP_CLASS
GIMP_IS_PIXMAP_CLASS
GIMP_PIXMAP_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpintstore</FILE>
<TITLE>GimpIntStore</TITLE>
GimpIntStore
GimpIntStoreColumns
gimp_int_store_new
gimp_int_store_lookup_by_value
<SUBSECTION Standard>
GimpIntStoreClass
GIMP_INT_STORE
GIMP_IS_INT_STORE
GIMP_TYPE_INT_STORE
gimp_int_store_get_type
GIMP_INT_STORE_CLASS
GIMP_IS_INT_STORE_CLASS
GIMP_INT_STORE_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpintcombobox</FILE>
<TITLE>GimpIntComboBox</TITLE>
GimpIntComboBox
GimpIntSensitivityFunc
gimp_int_combo_box_new
gimp_int_combo_box_new_valist
gimp_int_combo_box_new_array
gimp_int_combo_box_prepend
gimp_int_combo_box_append
gimp_int_combo_box_set_active
gimp_int_combo_box_get_active
gimp_int_combo_box_connect
gimp_int_combo_box_set_sensitivity
<SUBSECTION Standard>
GimpIntComboBoxClass
GIMP_INT_COMBO_BOX
GIMP_IS_INT_COMBO_BOX
GIMP_TYPE_INT_COMBO_BOX
gimp_int_combo_box_get_type
GIMP_INT_COMBO_BOX_CLASS
GIMP_IS_INT_COMBO_BOX_CLASS
GIMP_INT_COMBO_BOX_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpstringcombobox</FILE>
<TITLE>GimpStringComboBox</TITLE>
GimpStringComboBox
gimp_string_combo_box_new
gimp_string_combo_box_set_active
gimp_string_combo_box_get_active
<SUBSECTION Standard>
GimpStringComboBoxClass
GIMP_STRING_COMBO_BOX
GIMP_IS_STRING_COMBO_BOX
GIMP_TYPE_STRING_COMBO_BOX
gimp_string_combo_box_get_type
GIMP_STRING_COMBO_BOX_CLASS
GIMP_IS_STRING_COMBO_BOX_CLASS
GIMP_STRING_COMBO_BOX_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpmemsizeentry</FILE>
<TITLE>GimpMemsizeEntry</TITLE>
GimpMemsizeEntry
gimp_memsize_entry_new
gimp_memsize_entry_set_value
gimp_memsize_entry_get_value
<SUBSECTION Standard>
GimpMemsizeEntryClass
GIMP_MEMSIZE_ENTRY
GIMP_IS_MEMSIZE_ENTRY
GIMP_TYPE_MEMSIZE_ENTRY
gimp_memsize_entry_get_type
GIMP_MEMSIZE_ENTRY_CLASS
GIMP_IS_MEMSIZE_ENTRY_CLASS
GIMP_MEMSIZE_ENTRY_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpsizeentry</FILE>
<TITLE>GimpSizeEntry</TITLE>
GimpSizeEntry
GimpSizeEntryField
GimpSizeEntryUpdatePolicy
gimp_size_entry_new
gimp_size_entry_add_field
gimp_size_entry_attach_label
gimp_size_entry_set_resolution
gimp_size_entry_set_size
gimp_size_entry_set_value_boundaries
gimp_size_entry_get_value
gimp_size_entry_set_value
gimp_size_entry_set_refval_boundaries
gimp_size_entry_set_refval_digits
gimp_size_entry_get_refval
gimp_size_entry_set_refval
gimp_size_entry_get_unit
gimp_size_entry_set_unit
gimp_size_entry_set_pixel_digits
gimp_size_entry_show_unit_menu
gimp_size_entry_grab_focus
gimp_size_entry_set_activates_default
gimp_size_entry_get_help_widget
<SUBSECTION Standard>
GIMP_SIZE_ENTRY
GIMP_IS_SIZE_ENTRY
GIMP_TYPE_SIZE_ENTRY
gimp_size_entry_get_type
GimpSizeEntryClass
GIMP_SIZE_ENTRY_CLASS
GIMP_IS_SIZE_ENTRY_CLASS
GIMP_SIZE_ENTRY_GET_CLASS
GIMP_TYPE_SIZE_ENTRY_UPDATE_POLICY
gimp_size_entry_update_policy_get_type
</SECTION>
<SECTION>
<FILE>gimpnumberpairentry</FILE>
<TITLE>GimpNumberPairEntry</TITLE>
GimpNumberPairEntry
GimpAspectType
gimp_number_pair_entry_new
gimp_number_pair_entry_set_default_values
gimp_number_pair_entry_get_default_values
gimp_number_pair_entry_set_values
gimp_number_pair_entry_get_values
gimp_number_pair_entry_get_aspect
gimp_number_pair_entry_set_aspect
gimp_number_pair_entry_get_ratio
gimp_number_pair_entry_set_ratio
gimp_number_pair_entry_get_user_override
gimp_number_pair_entry_set_user_override
gimp_number_pair_entry_get_default_text
gimp_number_pair_entry_set_default_text
<SUBSECTION Standard>
GIMP_NUMBER_PAIR_ENTRY
GIMP_IS_NUMBER_PAIR_ENTRY
GIMP_TYPE_NUMBER_PAIR_ENTRY
gimp_number_pair_entry_get_type
GimpNumberPairEntryClass
GIMP_NUMBER_PAIR_ENTRY_CLASS
GIMP_IS_NUMBER_PAIR_ENTRY_CLASS
GIMP_NUMBER_PAIR_ENTRY_GET_CLASS
GIMP_TYPE_ASPECT_TYPE
gimp_aspect_type_get_type
</SECTION>
<SECTION>
<FILE>gimpruler</FILE>
<TITLE>GimpRuler</TITLE>
GimpRuler
gimp_ruler_new
gimp_ruler_set_unit
gimp_ruler_get_unit
gimp_ruler_set_position
gimp_ruler_get_position
gimp_ruler_set_range
gimp_ruler_get_range
gimp_ruler_add_track_widget
gimp_ruler_remove_track_widget
<SUBSECTION Standard>
GimpRulerClass
GIMP_RULER
GIMP_IS_RULER
GIMP_TYPE_RULER
gimp_ruler_get_type
GIMP_RULER_CLASS
GIMP_IS_RULER_CLASS
GIMP_RULER_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpunitstore</FILE>
<TITLE>GimpUnitStore</TITLE>
GimpUnitStore
GimpUnitStoreClass
gimp_unit_store_new
gimp_unit_store_set_has_pixels
gimp_unit_store_get_has_pixels
gimp_unit_store_set_has_percent
gimp_unit_store_get_has_percent
gimp_unit_store_set_pixel_value
gimp_unit_store_set_pixel_values
gimp_unit_store_set_resolution
gimp_unit_store_set_resolutions
gimp_unit_store_get_value
gimp_unit_store_get_values
<SUBSECTION Standard>
GIMP_UNIT_STORE
GIMP_IS_UNIT_STORE
GIMP_TYPE_UNIT_STORE
gimp_unit_store_get_type
GIMP_UNIT_STORE_CLASS
GIMP_IS_UNIT_STORE_CLASS
GIMP_UNIT_STORE_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpunitcombobox</FILE>
<TITLE>GimpUnitComboBox</TITLE>
GimpUnitComboBox
GimpUnitComboBoxClass
gimp_unit_combo_box_new
gimp_unit_combo_box_new_with_model
gimp_unit_combo_box_get_active
gimp_unit_combo_box_set_active
<SUBSECTION Standard>
GIMP_UNIT_COMBO_BOX
GIMP_IS_UNIT_COMBO_BOX
GIMP_TYPE_UNIT_COMBO_BOX
gimp_unit_combo_box_get_type
GIMP_UNIT_COMBO_BOX_CLASS
GIMP_IS_UNIT_COMBO_BOX_CLASS
GIMP_UNIT_COMBO_BOX_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpunitmenu</FILE>
<TITLE>GimpUnitMenu</TITLE>
GimpUnitMenu
gimp_unit_menu_new
gimp_unit_menu_set_unit
gimp_unit_menu_get_unit
gimp_unit_menu_get_pixel_digits
gimp_unit_menu_set_pixel_digits
<SUBSECTION Standard>
GIMP_UNIT_MENU
GIMP_IS_UNIT_MENU
GIMP_TYPE_UNIT_MENU
gimp_unit_menu_get_type
GimpUnitMenuClass
GIMP_UNIT_MENU_CLASS
GIMP_IS_UNIT_MENU_CLASS
GIMP_UNIT_MENU_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpoffsetarea</FILE>
<TITLE>GimpOffsetArea</TITLE>
GimpOffsetArea
gimp_offset_area_new
gimp_offset_area_set_size
gimp_offset_area_set_offsets
gimp_offset_area_set_pixbuf
<SUBSECTION Standard>
GIMP_OFFSET_AREA
GIMP_IS_OFFSET_AREA
GIMP_TYPE_OFFSET_AREA
gimp_offset_area_get_type
GimpOffsetAreaClass
GIMP_OFFSET_AREA_CLASS
GIMP_IS_OFFSET_AREA_CLASS
GIMP_OFFSET_AREA_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpdialog</FILE>
<TITLE>GimpDialog</TITLE>
GimpDialog
gimp_dialog_new
gimp_dialog_new_valist
gimp_dialog_add_button
gimp_dialog_add_buttons
gimp_dialog_add_buttons_valist
gimp_dialog_run
gimp_dialogs_show_help_button
<SUBSECTION Standard>
GIMP_TYPE_DIALOG
GIMP_DIALOG
GIMP_IS_DIALOG
gimp_dialog_get_type
GimpDialogClass
GIMP_DIALOG_CLASS
GIMP_IS_DIALOG_CLASS
GIMP_DIALOG_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimphelpui</FILE>
<TITLE>GimpHelpUI</TITLE>
GimpHelpFunc
GIMP_HELP_ID
gimp_help_enable_tooltips
gimp_help_disable_tooltips
gimp_standard_help_func
gimp_help_connect
gimp_help_set_help_data
gimp_help_set_help_data_with_markup
gimp_context_help
<SUBSECTION Standard>
gimp_help_id_quark
</SECTION>
<SECTION>
<FILE>gimpquerybox</FILE>
<TITLE>GimpQueryBox</TITLE>
GimpQueryStringCallback
GimpQueryIntCallback
GimpQueryDoubleCallback
GimpQuerySizeCallback
GimpQueryBooleanCallback
gimp_query_string_box
gimp_query_int_box
gimp_query_double_box
gimp_query_size_box
gimp_query_boolean_box
GIMP_QUERY_BOX_VBOX
</SECTION>
<SECTION>
<FILE>gimpstock</FILE>
<TITLE>GimpStock</TITLE>
gimp_stock_init
<SUBSECTION Stock IDs>
GIMP_STOCK_ANCHOR
GIMP_STOCK_CENTER
GIMP_STOCK_DUPLICATE
GIMP_STOCK_EDIT
GIMP_STOCK_RESET
GIMP_STOCK_CLOSE
GIMP_STOCK_MENU_LEFT
GIMP_STOCK_MENU_RIGHT
GIMP_STOCK_MOVE_TO_SCREEN
GIMP_STOCK_INVERT
GIMP_STOCK_LAYER_TO_IMAGESIZE
GIMP_STOCK_MERGE_DOWN
GIMP_STOCK_NAVIGATION
GIMP_STOCK_PASTE_AS_NEW
GIMP_STOCK_PASTE_INTO
GIMP_STOCK_PATH_STROKE
GIMP_STOCK_PLUGIN
GIMP_STOCK_QUICK_MASK_OFF
GIMP_STOCK_QUICK_MASK_ON
GIMP_STOCK_HISTOGRAM
GIMP_STOCK_HISTOGRAM_LINEAR
GIMP_STOCK_HISTOGRAM_LOGARITHMIC
GIMP_STOCK_RESHOW_FILTER
GIMP_STOCK_RESIZE
GIMP_STOCK_FLIP_HORIZONTAL
GIMP_STOCK_FLIP_VERTICAL
GIMP_STOCK_ROTATE_180
GIMP_STOCK_ROTATE_270
GIMP_STOCK_ROTATE_90
GIMP_STOCK_SCALE
GIMP_STOCK_LINKED
GIMP_STOCK_VISIBLE
GIMP_STOCK_LIST
GIMP_STOCK_GRID
GIMP_STOCK_PORTRAIT
GIMP_STOCK_LANDSCAPE
GIMP_STOCK_VIDEO
GIMP_STOCK_WEB
GIMP_STOCK_IMAGE
GIMP_STOCK_LAYER
GIMP_STOCK_LAYER_MASK
GIMP_STOCK_CHANNEL
GIMP_STOCK_CHANNEL_RED
GIMP_STOCK_CHANNEL_GREEN
GIMP_STOCK_CHANNEL_BLUE
GIMP_STOCK_CHANNEL_GRAY
GIMP_STOCK_CHANNEL_INDEXED
GIMP_STOCK_CHANNEL_ALPHA
GIMP_STOCK_PATH
GIMP_STOCK_TEXT_LAYER
GIMP_STOCK_FLOATING_SELECTION
GIMP_STOCK_TEMPLATE
GIMP_STOCK_IMAGES
GIMP_STOCK_LAYERS
GIMP_STOCK_CHANNELS
GIMP_STOCK_PATHS
GIMP_STOCK_COLORMAP
GIMP_STOCK_INDEXED_PALETTE
GIMP_STOCK_CURSOR
GIMP_STOCK_SAMPLE_POINT
GIMP_STOCK_SHAPE_CIRCLE
GIMP_STOCK_SHAPE_SQUARE
GIMP_STOCK_SHAPE_DIAMOND
GIMP_STOCK_CAP_BUTT
GIMP_STOCK_CAP_ROUND
GIMP_STOCK_CAP_SQUARE
GIMP_STOCK_JOIN_MITER
GIMP_STOCK_JOIN_ROUND
GIMP_STOCK_JOIN_BEVEL
GIMP_STOCK_SELECTION
GIMP_STOCK_SELECTION_ALL
GIMP_STOCK_SELECTION_NONE
GIMP_STOCK_SELECTION_GROW
GIMP_STOCK_SELECTION_SHRINK
GIMP_STOCK_SELECTION_BORDER
GIMP_STOCK_SELECTION_ADD
GIMP_STOCK_SELECTION_SUBTRACT
GIMP_STOCK_SELECTION_REPLACE
GIMP_STOCK_SELECTION_INTERSECT
GIMP_STOCK_SELECTION_STROKE
GIMP_STOCK_SELECTION_TO_CHANNEL
GIMP_STOCK_SELECTION_TO_PATH
GIMP_STOCK_GRADIENT_LINEAR
GIMP_STOCK_GRADIENT_BILINEAR
GIMP_STOCK_GRADIENT_RADIAL
GIMP_STOCK_GRADIENT_SQUARE
GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC
GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC
GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL
GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR
GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED
GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE
GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE
GIMP_STOCK_GRAVITY_NORTH_WEST
GIMP_STOCK_GRAVITY_NORTH
GIMP_STOCK_GRAVITY_NORTH_EAST
GIMP_STOCK_GRAVITY_WEST
GIMP_STOCK_GRAVITY_EAST
GIMP_STOCK_GRAVITY_SOUTH_WEST
GIMP_STOCK_GRAVITY_SOUTH
GIMP_STOCK_GRAVITY_SOUTH_EAST
GIMP_STOCK_HCENTER
GIMP_STOCK_VCENTER
GIMP_STOCK_CHAR_PICKER
GIMP_STOCK_LETTER_SPACING
GIMP_STOCK_LINE_SPACING
GIMP_STOCK_TEXT_DIR_LTR
GIMP_STOCK_TEXT_DIR_RTL
GIMP_STOCK_PRINT_RESOLUTION
GIMP_STOCK_TOOLS
GIMP_STOCK_TOOL_OPTIONS
GIMP_STOCK_DEVICE_STATUS
GIMP_STOCK_INPUT_DEVICE
GIMP_STOCK_DISPLAY_FILTER
GIMP_STOCK_CURVE_FREE
GIMP_STOCK_CURVE_SMOOTH
GIMP_STOCK_COLOR_PICKER_BLACK
GIMP_STOCK_COLOR_PICKER_GRAY
GIMP_STOCK_COLOR_PICKER_WHITE
GIMP_STOCK_COLOR_TRIANGLE
GIMP_STOCK_COLOR_PICK_FROM_SCREEN
GIMP_STOCK_CONVERT_GRAYSCALE
GIMP_STOCK_CONVERT_INDEXED
GIMP_STOCK_CONVERT_RGB
GIMP_STOCK_TRANSPARENCY
GIMP_STOCK_DEFAULT_COLORS
GIMP_STOCK_SWAP_COLORS
GIMP_STOCK_UNDO_HISTORY
GIMP_STOCK_HCHAIN
GIMP_STOCK_HCHAIN_BROKEN
GIMP_STOCK_VCHAIN
GIMP_STOCK_VCHAIN_BROKEN
GIMP_STOCK_TEXTURE
GIMP_STOCK_FRAME
GIMP_STOCK_ERROR
GIMP_STOCK_INFO
GIMP_STOCK_QUESTION
GIMP_STOCK_WARNING
GIMP_STOCK_GEGL
GIMP_STOCK_USER_MANUAL
GIMP_STOCK_WILBER
GIMP_STOCK_WILBER_EEK
GIMP_STOCK_ZOOM_FOLLOW_WINDOW
GIMP_STOCK_TOOL_AIRBRUSH
GIMP_STOCK_TOOL_ALIGN
GIMP_STOCK_TOOL_BLEND
GIMP_STOCK_TOOL_BLUR
GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST
GIMP_STOCK_TOOL_BUCKET_FILL
GIMP_STOCK_TOOL_BY_COLOR_SELECT
GIMP_STOCK_TOOL_CAGE
GIMP_STOCK_TOOL_CLONE
GIMP_STOCK_TOOL_COLOR_BALANCE
GIMP_STOCK_TOOL_COLOR_PICKER
GIMP_STOCK_TOOL_COLORIZE
GIMP_STOCK_TOOL_CROP
GIMP_STOCK_TOOL_CURVES
GIMP_STOCK_TOOL_DESATURATE
GIMP_STOCK_TOOL_DODGE
GIMP_STOCK_TOOL_ELLIPSE_SELECT
GIMP_STOCK_TOOL_ERASER
GIMP_STOCK_TOOL_FLIP
GIMP_STOCK_TOOL_FOREGROUND_SELECT
GIMP_STOCK_TOOL_FREE_SELECT
GIMP_STOCK_TOOL_FUZZY_SELECT
GIMP_STOCK_TOOL_HEAL
GIMP_STOCK_TOOL_HUE_SATURATION
GIMP_STOCK_TOOL_INK
GIMP_STOCK_TOOL_ISCISSORS
GIMP_STOCK_TOOL_LEVELS
GIMP_STOCK_TOOL_MEASURE
GIMP_STOCK_TOOL_MOVE
GIMP_STOCK_TOOL_PAINTBRUSH
GIMP_STOCK_TOOL_PATH
GIMP_STOCK_TOOL_PENCIL
GIMP_STOCK_TOOL_PERSPECTIVE
GIMP_STOCK_TOOL_PERSPECTIVE_CLONE
GIMP_STOCK_TOOL_POSTERIZE
GIMP_STOCK_TOOL_RECT_SELECT
GIMP_STOCK_TOOL_ROTATE
GIMP_STOCK_TOOL_SCALE
GIMP_STOCK_TOOL_SHEAR
GIMP_STOCK_TOOL_SMUDGE
GIMP_STOCK_TOOL_TEXT
GIMP_STOCK_TOOL_THRESHOLD
GIMP_STOCK_TOOL_ZOOM
GIMP_STOCK_CONTROLLER
GIMP_STOCK_CONTROLLER_KEYBOARD
GIMP_STOCK_CONTROLLER_LINUX_INPUT
GIMP_STOCK_CONTROLLER_MIDI
GIMP_STOCK_CONTROLLER_MOUSE
GIMP_STOCK_CONTROLLER_WHEEL
GIMP_STOCK_DISPLAY_FILTER_COLORBLIND
GIMP_STOCK_DISPLAY_FILTER_CONTRAST
GIMP_STOCK_DISPLAY_FILTER_GAMMA
GIMP_STOCK_DISPLAY_FILTER_LCMS
GIMP_STOCK_DISPLAY_FILTER_PROOF
GIMP_STOCK_QMASK_ON
GIMP_STOCK_QMASK_OFF
GIMP_STOCK_BRUSH
GIMP_STOCK_DYNAMICS
GIMP_STOCK_BUFFER
GIMP_STOCK_DETACH
GIMP_STOCK_FONT
GIMP_STOCK_GRADIENT
GIMP_STOCK_PALETTE
GIMP_STOCK_PATTERN
GIMP_STOCK_TOOL_PRESET
</SECTION>
<SECTION>
<FILE>gimpenumwidgets</FILE>
<TITLE>GimpEnumWidgets</TITLE>
gimp_enum_radio_box_new
gimp_enum_radio_box_new_with_range
gimp_enum_radio_frame_new
gimp_enum_radio_frame_new_with_range
gimp_enum_stock_box_new
gimp_enum_stock_box_new_with_range
gimp_enum_stock_box_set_child_padding
</SECTION>
<SECTION>
<FILE>gimpwidgets</FILE>
<TITLE>GimpWidgets</TITLE>
GimpWidgetsError
gimp_radio_group_new
gimp_radio_group_new2
gimp_radio_group_set_active
gimp_int_radio_group_new
gimp_int_radio_group_set_active
gimp_spin_button_new
GIMP_SCALE_ENTRY_LABEL
GIMP_SCALE_ENTRY_SCALE
GIMP_SCALE_ENTRY_SCALE_ADJ
GIMP_SCALE_ENTRY_SPINBUTTON
GIMP_SCALE_ENTRY_SPINBUTTON_ADJ
gimp_scale_entry_new
gimp_scale_entry_set_sensitive
gimp_scale_entry_set_logarithmic
gimp_scale_entry_get_logarithmic
gimp_color_scale_entry_new
GIMP_RANDOM_SEED_SPINBUTTON
GIMP_RANDOM_SEED_SPINBUTTON_ADJ
GIMP_RANDOM_SEED_TOGGLE
gimp_random_seed_new
GIMP_COORDINATES_CHAINBUTTON
gimp_coordinates_new
gimp_toggle_button_update
gimp_radio_button_update
gimp_int_adjustment_update
gimp_uint_adjustment_update
gimp_float_adjustment_update
gimp_double_adjustment_update
gimp_table_attach_aligned
gimp_label_set_attributes
GIMP_WIDGETS_ERROR
gimp_widgets_error_quark
</SECTION>
<SECTION>
<FILE>gimppropwidgets</FILE>
<TITLE>GimpPropWidgets</TITLE>
gimp_prop_boolean_combo_box_new
gimp_prop_boolean_radio_frame_new
gimp_prop_check_button_new
gimp_prop_color_area_new
gimp_prop_coordinates_connect
gimp_prop_coordinates_new
gimp_prop_entry_new
gimp_prop_enum_check_button_new
gimp_prop_enum_combo_box_new
gimp_prop_enum_label_new
gimp_prop_enum_radio_box_new
gimp_prop_enum_radio_frame_new
gimp_prop_enum_stock_box_new
gimp_prop_expander_new
gimp_prop_file_chooser_button_new
gimp_prop_file_chooser_button_new_with_dialog
gimp_prop_hscale_new
gimp_prop_int_combo_box_new
gimp_prop_label_new
gimp_prop_memsize_entry_new
gimp_prop_opacity_entry_new
gimp_prop_path_editor_new
gimp_prop_scale_entry_new
gimp_prop_size_entry_new
gimp_prop_spin_button_new
gimp_prop_stock_image_new
gimp_prop_string_combo_box_new
gimp_prop_text_buffer_new
gimp_prop_unit_combo_box_new
gimp_prop_unit_menu_new
</SECTION>
<SECTION>
<FILE>gimpcolordisplay</FILE>
<TITLE>GimpColorDisplay</TITLE>
GimpColorDisplay
gimp_color_display_new
gimp_color_display_clone
gimp_color_display_set_enabled
gimp_color_display_get_enabled
gimp_color_display_get_config
gimp_color_display_get_managed
gimp_color_display_convert
gimp_color_display_convert_surface
gimp_color_display_load_state
gimp_color_display_save_state
gimp_color_display_configure
gimp_color_display_configure_reset
gimp_color_display_changed
<SUBSECTION Standard>
GimpColorDisplayClass
GIMP_COLOR_DISPLAY
GIMP_IS_COLOR_DISPLAY
GIMP_TYPE_COLOR_DISPLAY
gimp_color_display_get_type
GIMP_COLOR_DISPLAY_CLASS
GIMP_IS_COLOR_DISPLAY_CLASS
GIMP_COLOR_DISPLAY_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpcolordisplaystack</FILE>
<TITLE>GimpColorDisplayStack</TITLE>
GimpColorDisplayStack
gimp_color_display_stack_new
gimp_color_display_stack_clone
gimp_color_display_stack_changed
gimp_color_display_stack_add
gimp_color_display_stack_remove
gimp_color_display_stack_reorder_up
gimp_color_display_stack_reorder_down
gimp_color_display_stack_convert
gimp_color_display_stack_convert_surface
<SUBSECTION Standard>
GimpColorDisplayStackClass
GIMP_COLOR_DISPLAY_STACK
GIMP_IS_COLOR_DISPLAY_STACK
GIMP_TYPE_COLOR_DISPLAY_STACK
gimp_color_display_stack_get_type
GIMP_COLOR_DISPLAY_STACK_CLASS
GIMP_IS_COLOR_DISPLAY_STACK_CLASS
GIMP_COLOR_DISPLAY_STACK_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpcolorselector</FILE>
<TITLE>GimpColorSelector</TITLE>
GimpColorSelector
GIMP_COLOR_SELECTOR_SIZE
GIMP_COLOR_SELECTOR_BAR_SIZE
GimpColorSelectorChannel
gimp_color_selector_new
gimp_color_selector_set_toggles_visible
gimp_color_selector_set_toggles_sensitive
gimp_color_selector_set_show_alpha
gimp_color_selector_set_color
gimp_color_selector_set_channel
gimp_color_selector_color_changed
gimp_color_selector_channel_changed
gimp_color_selector_set_config
<SUBSECTION Standard>
GimpColorSelectorClass
GIMP_COLOR_SELECTOR
GIMP_IS_COLOR_SELECTOR
GIMP_TYPE_COLOR_SELECTOR
gimp_color_selector_get_type
GIMP_COLOR_SELECTOR_CLASS
GIMP_IS_COLOR_SELECTOR_CLASS
GIMP_COLOR_SELECTOR_GET_CLASS
GIMP_TYPE_COLOR_SELECTOR_CHANNEL
gimp_color_selector_channel_get_type
</SECTION>
<SECTION>
<FILE>gimpcolornotebook</FILE>
<TITLE>GimpColorNotebook</TITLE>
GimpColorNotebook
gimp_color_notebook_set_has_page
<SUBSECTION Standard>
GimpColorNotebookClass
GIMP_COLOR_NOTEBOOK
GIMP_IS_COLOR_NOTEBOOK
GIMP_TYPE_COLOR_NOTEBOOK
gimp_color_notebook_get_type
GIMP_COLOR_NOTEBOOK_CLASS
GIMP_IS_COLOR_NOTEBOOK_CLASS
GIMP_COLOR_NOTEBOOK_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpcolorscales</FILE>
<TITLE>GimpColorScales</TITLE>
GimpColorScales
<SUBSECTION Standard>
GIMP_COLOR_SCALES
GIMP_IS_COLOR_SCALES
GIMP_TYPE_COLOR_SCALES
gimp_color_scales_get_type
</SECTION>
<SECTION>
<FILE>gimpcolorselect</FILE>
<TITLE>GimpColorSelect</TITLE>
GimpColorSelect
<SUBSECTION Standard>
GIMP_COLOR_SELECT
GIMP_IS_COLOR_SELECT
GIMP_TYPE_COLOR_SELECT
gimp_color_select_get_type
</SECTION>
<SECTION>
<FILE>gimppickbutton</FILE>
<TITLE>GimpPickButton</TITLE>
GimpPickButton
gimp_pick_button_new
<SUBSECTION Standard>
GimpPickButtonClass
GIMP_PICK_BUTTON
GIMP_IS_PICK_BUTTON
GIMP_TYPE_PICK_BUTTON
gimp_pick_button_get_type
GIMP_PICK_BUTTON_CLASS
GIMP_IS_PICK_BUTTON_CLASS
GIMP_PICK_BUTTON_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimppreviewarea</FILE>
<TITLE>GimpPreviewArea</TITLE>
GimpPreviewArea
gimp_preview_area_new
gimp_preview_area_draw
gimp_preview_area_fill
gimp_preview_area_blend
gimp_preview_area_mask
gimp_preview_area_set_offsets
gimp_preview_area_set_colormap
gimp_preview_area_set_max_size
gimp_preview_area_menu_popup
<SUBSECTION Standard>
GimpPreviewAreaClass
GIMP_PREVIEW_AREA
GIMP_IS_PREVIEW_AREA
GIMP_TYPE_PREVIEW_AREA
gimp_preview_area_get_type
GIMP_PREVIEW_AREA_CLASS
GIMP_IS_PREVIEW_AREA_CLASS
GIMP_PREVIEW_AREA_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimppreview</FILE>
<TITLE>GimpPreview</TITLE>
GimpPreview
gimp_preview_get_update
gimp_preview_set_update
gimp_preview_set_bounds
gimp_preview_get_size
gimp_preview_get_position
gimp_preview_transform
gimp_preview_untransform
gimp_preview_get_area
gimp_preview_draw
gimp_preview_draw_buffer
gimp_preview_invalidate
gimp_preview_set_default_cursor
gimp_preview_get_controls
<SUBSECTION Standard>
GimpPreviewClass
GIMP_PREVIEW
GIMP_IS_PREVIEW
GIMP_TYPE_PREVIEW
gimp_preview_get_type
GIMP_PREVIEW_CLASS
GIMP_IS_PREVIEW_CLASS
GIMP_PREVIEW_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpscrolledpreview</FILE>
<TITLE>GimpScrolledPreview</TITLE>
GimpScrolledPreview
gimp_scrolled_preview_set_position
gimp_scrolled_preview_set_policy
gimp_scrolled_preview_freeze
gimp_scrolled_preview_thaw
<SUBSECTION Standard>
GimpScrolledPreviewClass
GIMP_SCROLLED_PREVIEW
GIMP_IS_SCROLLED_PREVIEW
GIMP_TYPE_SCROLLED_PREVIEW
gimp_scrolled_preview_get_type
GIMP_SCROLLED_PREVIEW_CLASS
GIMP_IS_SCROLLED_PREVIEW_CLASS
GIMP_SCROLLED_PREVIEW_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpzoommodel</FILE>
<TITLE>GimpZoomModel</TITLE>
GimpZoomModel
GimpZoomType
gimp_zoom_model_new
gimp_zoom_model_set_range
gimp_zoom_model_zoom
gimp_zoom_model_get_factor
gimp_zoom_model_get_fraction
gimp_zoom_button_new
gimp_zoom_model_zoom_step
<SUBSECTION Standard>
GimpZoomModelClass
GIMP_ZOOM_MODEL
GIMP_IS_ZOOM_MODEL
GIMP_TYPE_ZOOM_MODEL
gimp_zoom_model_get_type
GIMP_ZOOM_MODEL_CLASS
GIMP_IS_ZOOM_MODEL_CLASS
GIMP_ZOOM_MODEL_GET_CLASS
GIMP_TYPE_ZOOM_TYPE
gimp_zoom_type_get_type
</SECTION>
<SECTION>
<FILE>gimpoldwidgets</FILE>
gimp_int_option_menu_new
gimp_int_option_menu_set_history
GimpIntOptionMenuSensitivityCallback
gimp_int_option_menu_set_sensitive
gimp_option_menu_new
gimp_option_menu_new2
gimp_option_menu_set_history
GimpOptionMenuSensitivityCallback
gimp_option_menu_set_sensitive
gimp_menu_item_update
gimp_toggle_button_sensitive_update
gimp_pixmap_button_new
gimp_unit_menu_update
</SECTION>
<SECTION>
<FILE>gimpcontroller</FILE>
<TITLE>GimpController</TITLE>
GimpControllerEventType
GimpControllerEventAny
GimpControllerEventTrigger
GimpControllerEventValue
GimpControllerEvent
<TITLE>GimpController</TITLE>
GimpController
gimp_controller_new
gimp_controller_get_n_events
gimp_controller_get_event_name
gimp_controller_get_event_blurb
gimp_controller_event
<SUBSECTION Standard>
GimpControllerClass
GIMP_CONTROLLER
GIMP_IS_CONTROLLER
GIMP_TYPE_CONTROLLER
gimp_controller_get_type
GIMP_CONTROLLER_CLASS
GIMP_IS_CONTROLLER_CLASS
GIMP_CONTROLLER_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimp3migration</FILE>
GdkModifierIntent
gdk_event_triggers_context_menu
gdk_keymap_get_modifier_mask
gtk_box_new
gtk_button_box_new
gtk_paned_new
gtk_scale_new
gtk_scrollbar_new
gtk_separator_new
gtk_widget_get_modifier_mask
</SECTION>
|