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
|
<SECTION>
<FILE>gimp</FILE>
gimp_version
gimp_getpid
gimp_get_data
gimp_get_data_size
gimp_set_data
GimpInitProc
GimpQuitProc
GimpQueryProc
GimpRunProc
GimpPlugInInfo
GimpParamDef
GimpParamRegion
GimpParamData
GimpParam
MAIN
gimp_main
gimp_quit
gimp_install_procedure
gimp_install_temp_proc
gimp_uninstall_temp_proc
gimp_run_procedure
gimp_run_procedure2
gimp_destroy_params
gimp_destroy_paramdefs
gimp_tile_width
gimp_tile_height
gimp_shm_ID
gimp_shm_addr
gimp_gamma
gimp_install_cmap
gimp_min_colors
gimp_show_tool_tips
gimp_show_help_button
gimp_check_size
gimp_check_type
gimp_default_display
gimp_wm_class
gimp_display_name
gimp_monitor_number
gimp_get_progname
gimp_extension_enable
gimp_extension_ack
gimp_extension_process
gimp_parasite_find
gimp_parasite_list
gimp_parasite_attach
gimp_parasite_detach
gimp_attach_new_parasite
</SECTION>
<SECTION>
<FILE>gimpenums</FILE>
gimp_enums_init
GimpBrushApplicationMode
GimpBrushGeneratedShape
GimpConvertDitherType
GimpConvertPaletteType
GimpConvolutionType
GimpConvolveType
GimpFillType
GimpGradientSegmentColor
GimpGradientSegmentType
GimpHistogramChannel
GimpHueRange
GimpLayerModeEffects
GimpMaskApplyMode
GimpMergeType
GimpOffsetType
GimpOrientationType
GimpRotationType
GimpSelectCriterion
gimp_enums_get_type_names
<SUBSECTION Standard>
GIMP_TYPE_BRUSH_APPLICATION_MODE
GIMP_TYPE_BRUSH_GENERATED_SHAPE
GIMP_TYPE_CONVERT_DITHER_TYPE
GIMP_TYPE_CONVERT_PALETTE_TYPE
GIMP_TYPE_CONVOLUTION_TYPE
GIMP_TYPE_CONVOLVE_TYPE
GIMP_TYPE_FILL_TYPE
GIMP_TYPE_GRADIENT_SEGMENT_COLOR
GIMP_TYPE_GRADIENT_SEGMENT_TYPE
GIMP_TYPE_HISTOGRAM_CHANNEL
GIMP_TYPE_HUE_RANGE
GIMP_TYPE_LAYER_MODE_EFFECTS
GIMP_TYPE_MASK_APPLY_MODE
GIMP_TYPE_MERGE_TYPE
GIMP_TYPE_OFFSET_TYPE
GIMP_TYPE_ORIENTATION_TYPE
GIMP_TYPE_ROTATION_TYPE
GIMP_TYPE_SELECT_CRITERION
gimp_brush_application_mode_get_type
gimp_brush_generated_shape_get_type
gimp_convert_dither_type_get_type
gimp_convert_palette_type_get_type
gimp_convolution_type_get_type
gimp_convolve_type_get_type
gimp_fill_type_get_type
gimp_gradient_segment_color_get_type
gimp_gradient_segment_type_get_type
gimp_histogram_channel_get_type
gimp_hue_range_get_type
gimp_layer_mode_effects_get_type
gimp_mask_apply_mode_get_type
gimp_merge_type_get_type
gimp_offset_type_get_type
gimp_orientation_type_get_type
gimp_rotation_type_get_type
gimp_select_criterion_get_type
</SECTION>
<SECTION>
<FILE>gimpui</FILE>
gimp_ui_init
gimp_ui_get_display_window
gimp_ui_get_progress_window
gimp_window_set_transient
gimp_window_set_transient_for_display
</SECTION>
<SECTION>
<FILE>gimpexport</FILE>
GimpExportCapabilities
GimpExportReturn
gimp_export_image
</SECTION>
<SECTION>
<FILE>gimpbrush</FILE>
gimp_brush_new
gimp_brush_duplicate
gimp_brush_rename
gimp_brush_delete
gimp_brush_get_info
gimp_brush_get_pixels
gimp_brush_get_spacing
gimp_brush_set_spacing
gimp_brush_get_shape
gimp_brush_set_shape
gimp_brush_get_spikes
gimp_brush_set_spikes
gimp_brush_get_angle
gimp_brush_set_angle
gimp_brush_get_radius
gimp_brush_set_radius
gimp_brush_get_aspect_ratio
gimp_brush_set_aspect_ratio
gimp_brush_get_hardness
gimp_brush_set_hardness
gimp_brush_is_generated
gimp_brush_is_editable
</SECTION>
<SECTION>
<FILE>gimpbrushes</FILE>
gimp_brushes_refresh
gimp_brushes_get_list
gimp_brushes_get_brush
gimp_brushes_set_brush
gimp_brushes_get_opacity
gimp_brushes_set_opacity
gimp_brushes_get_paint_mode
gimp_brushes_set_paint_mode
gimp_brushes_get_spacing
gimp_brushes_set_spacing
gimp_brushes_get_brush_data
</SECTION>
<SECTION>
<FILE>gimpbrushselect</FILE>
GimpRunBrushCallback
gimp_brush_select_new
gimp_brush_select_destroy
gimp_brushes_popup
gimp_brushes_close_popup
gimp_brushes_set_popup
</SECTION>
<SECTION>
<FILE>gimpbuffer</FILE>
gimp_buffers_get_list
gimp_buffer_rename
gimp_buffer_delete
gimp_buffer_get_width
gimp_buffer_get_height
gimp_buffer_get_bytes
gimp_buffer_get_image_type
</SECTION>
<SECTION>
<FILE>gimpchannel</FILE>
gimp_channel_new
gimp_channel_new_from_component
gimp_channel_copy
gimp_channel_get_show_masked
gimp_channel_set_show_masked
gimp_channel_get_opacity
gimp_channel_set_opacity
gimp_channel_get_color
gimp_channel_set_color
gimp_channel_combine_masks
</SECTION>
<SECTION>
<FILE>gimpcolor</FILE>
gimp_brightness_contrast
gimp_levels
gimp_levels_auto
gimp_levels_stretch
gimp_posterize
gimp_desaturate
gimp_desaturate_full
gimp_equalize
gimp_invert
gimp_curves_spline
gimp_curves_explicit
gimp_color_balance
gimp_colorize
gimp_histogram
gimp_hue_saturation
gimp_threshold
</SECTION>
<SECTION>
<FILE>gimpcontext</FILE>
gimp_context_push
gimp_context_pop
gimp_context_get_foreground
gimp_context_set_foreground
gimp_context_get_background
gimp_context_set_background
gimp_context_set_default_colors
gimp_context_swap_colors
gimp_context_get_opacity
gimp_context_set_opacity
gimp_context_get_paint_mode
gimp_context_set_paint_mode
gimp_context_get_brush
gimp_context_set_brush
gimp_context_get_pattern
gimp_context_set_pattern
gimp_context_get_gradient
gimp_context_set_gradient
gimp_context_get_palette
gimp_context_set_palette
gimp_context_get_font
gimp_context_set_font
gimp_context_get_paint_method
gimp_context_set_paint_method
gimp_context_list_paint_methods
</SECTION>
<SECTION>
<FILE>gimpconvert</FILE>
gimp_image_convert_rgb
gimp_image_convert_grayscale
gimp_image_convert_indexed
gimp_image_convert_set_dither_matrix
</SECTION>
<SECTION>
<FILE>gimpdisplay</FILE>
gimp_display_new
gimp_display_delete
gimp_display_is_valid
gimp_display_get_window_handle
gimp_displays_flush
gimp_displays_reconnect
</SECTION>
<SECTION>
<FILE>gimpdrawable</FILE>
GimpDrawable
gimp_drawable_get
gimp_drawable_detach
gimp_drawable_flush
gimp_drawable_delete
gimp_drawable_is_valid
gimp_drawable_get_name
gimp_drawable_set_name
gimp_drawable_get_visible
gimp_drawable_set_visible
gimp_drawable_get_linked
gimp_drawable_set_linked
gimp_drawable_get_tattoo
gimp_drawable_set_tattoo
gimp_drawable_get_pixel
gimp_drawable_set_pixel
gimp_drawable_get_tile
gimp_drawable_get_tile2
gimp_drawable_get_thumbnail_data
gimp_drawable_get_sub_thumbnail_data
gimp_drawable_get_color_uchar
gimp_drawable_merge_shadow
gimp_drawable_fill
gimp_drawable_update
gimp_drawable_mask_bounds
gimp_drawable_mask_intersect
gimp_drawable_get_image
gimp_drawable_set_image
gimp_drawable_has_alpha
gimp_drawable_type_with_alpha
gimp_drawable_type
gimp_drawable_is_rgb
gimp_drawable_is_gray
gimp_drawable_is_indexed
gimp_drawable_bpp
gimp_drawable_width
gimp_drawable_height
gimp_drawable_offsets
gimp_drawable_is_layer
gimp_drawable_is_layer_mask
gimp_drawable_is_channel
gimp_drawable_offset
gimp_drawable_foreground_extract
gimp_drawable_parasite_find
gimp_drawable_parasite_list
gimp_drawable_parasite_attach
gimp_drawable_parasite_detach
gimp_drawable_attach_new_parasite
</SECTION>
<SECTION>
<FILE>gimpdrawabletransform</FILE>
gimp_drawable_transform_flip_simple
gimp_drawable_transform_flip
gimp_drawable_transform_flip_default
gimp_drawable_transform_perspective
gimp_drawable_transform_perspective_default
gimp_drawable_transform_rotate_simple
gimp_drawable_transform_rotate
gimp_drawable_transform_rotate_default
gimp_drawable_transform_scale
gimp_drawable_transform_scale_default
gimp_drawable_transform_shear
gimp_drawable_transform_shear_default
gimp_drawable_transform_2d
gimp_drawable_transform_2d_default
gimp_drawable_transform_matrix
gimp_drawable_transform_matrix_default
</SECTION>
<SECTION>
<FILE>gimpedit</FILE>
gimp_edit_cut
gimp_edit_copy
gimp_edit_copy_visible
gimp_edit_paste
gimp_edit_paste_as_new
gimp_edit_named_cut
gimp_edit_named_copy
gimp_edit_named_copy_visible
gimp_edit_named_paste
gimp_edit_named_paste_as_new
gimp_edit_clear
gimp_edit_fill
gimp_edit_bucket_fill
gimp_edit_blend
gimp_edit_stroke
gimp_edit_stroke_vectors
</SECTION>
<SECTION>
<FILE>gimpfileops</FILE>
gimp_temp_name
gimp_file_load
gimp_file_load_layer
gimp_file_load_layers
gimp_file_save
gimp_file_save_thumbnail
gimp_register_magic_load_handler
gimp_register_load_handler
gimp_register_save_handler
gimp_register_file_handler_mime
gimp_register_thumbnail_loader
</SECTION>
<SECTION>
<FILE>gimpfloatingsel</FILE>
gimp_floating_sel_remove
gimp_floating_sel_anchor
gimp_floating_sel_to_layer
gimp_floating_sel_attach
gimp_floating_sel_rigor
gimp_floating_sel_relax
</SECTION>
<SECTION>
<FILE>gimpfonts</FILE>
gimp_fonts_refresh
gimp_fonts_get_list
</SECTION>
<SECTION>
<FILE>gimpfontselect</FILE>
GimpRunFontCallback
gimp_font_select_new
gimp_font_select_destroy
gimp_fonts_popup
gimp_fonts_close_popup
gimp_fonts_set_popup
</SECTION>
<SECTION>
<FILE>gimpgimprc</FILE>
gimp_gimprc_query
gimp_gimprc_set
gimp_get_color_configuration
gimp_get_default_comment
gimp_get_default_unit
gimp_get_module_load_inhibit
gimp_get_monitor_resolution
gimp_get_theme_dir
</SECTION>
<SECTION>
<FILE>gimpgradient</FILE>
gimp_gradient_new
gimp_gradient_duplicate
gimp_gradient_rename
gimp_gradient_delete
gimp_gradient_is_editable
gimp_gradient_get_uniform_samples
gimp_gradient_get_custom_samples
gimp_gradient_segment_get_left_color
gimp_gradient_segment_set_left_color
gimp_gradient_segment_get_right_color
gimp_gradient_segment_set_right_color
gimp_gradient_segment_get_left_pos
gimp_gradient_segment_set_left_pos
gimp_gradient_segment_get_middle_pos
gimp_gradient_segment_set_middle_pos
gimp_gradient_segment_get_right_pos
gimp_gradient_segment_set_right_pos
gimp_gradient_segment_get_blending_function
gimp_gradient_segment_get_coloring_type
gimp_gradient_segment_range_set_blending_function
gimp_gradient_segment_range_set_coloring_type
gimp_gradient_segment_range_flip
gimp_gradient_segment_range_replicate
gimp_gradient_segment_range_split_midpoint
gimp_gradient_segment_range_split_uniform
gimp_gradient_segment_range_delete
gimp_gradient_segment_range_redistribute_handles
gimp_gradient_segment_range_blend_colors
gimp_gradient_segment_range_blend_opacity
gimp_gradient_segment_range_move
</SECTION>
<SECTION>
<FILE>gimpgradients</FILE>
gimp_gradients_refresh
gimp_gradients_get_list
gimp_gradients_get_gradient
gimp_gradients_set_gradient
gimp_gradients_sample_uniform
gimp_gradients_sample_custom
gimp_gradients_get_gradient_data
</SECTION>
<SECTION>
<FILE>gimpgradientselect</FILE>
GimpRunGradientCallback
gimp_gradient_select_new
gimp_gradient_select_destroy
gimp_gradients_popup
gimp_gradients_close_popup
gimp_gradients_set_popup
</SECTION>
<SECTION>
<FILE>gimpgrid</FILE>
gimp_image_grid_get_spacing
gimp_image_grid_set_spacing
gimp_image_grid_get_offset
gimp_image_grid_set_offset
gimp_image_grid_get_foreground_color
gimp_image_grid_set_foreground_color
gimp_image_grid_get_background_color
gimp_image_grid_set_background_color
gimp_image_grid_get_style
gimp_image_grid_set_style
</SECTION>
<SECTION>
<FILE>gimpguides</FILE>
gimp_image_add_hguide
gimp_image_add_vguide
gimp_image_delete_guide
gimp_image_find_next_guide
gimp_image_get_guide_orientation
gimp_image_get_guide_position
</SECTION>
<SECTION>
<FILE>gimphelp</FILE>
gimp_help
</SECTION>
<SECTION>
<FILE>gimpimage</FILE>
gimp_image_list
gimp_image_new
gimp_image_duplicate
gimp_image_delete
gimp_image_is_valid
gimp_image_base_type
gimp_image_width
gimp_image_height
gimp_image_free_shadow
gimp_image_flip
gimp_image_rotate
gimp_image_resize
gimp_image_resize_to_layers
gimp_image_scale
gimp_image_crop
gimp_image_get_layers
gimp_image_get_channels
gimp_image_get_active_drawable
gimp_image_get_floating_sel
gimp_image_floating_sel_attached_to
gimp_image_pick_color
gimp_image_pick_correlate_layer
gimp_image_add_layer
gimp_image_remove_layer
gimp_image_raise_layer
gimp_image_lower_layer
gimp_image_raise_layer_to_top
gimp_image_lower_layer_to_bottom
gimp_image_get_layer_position
gimp_image_add_channel
gimp_image_remove_channel
gimp_image_raise_channel
gimp_image_lower_channel
gimp_image_get_channel_position
gimp_image_flatten
gimp_image_merge_visible_layers
gimp_image_merge_down
gimp_image_clean_all
gimp_image_is_dirty
gimp_image_get_active_layer
gimp_image_set_active_layer
gimp_image_get_active_channel
gimp_image_set_active_channel
gimp_image_unset_active_channel
gimp_image_get_selection
gimp_image_get_component_active
gimp_image_set_component_active
gimp_image_get_component_visible
gimp_image_set_component_visible
gimp_image_get_filename
gimp_image_set_filename
gimp_image_get_name
gimp_image_get_resolution
gimp_image_set_resolution
gimp_image_get_unit
gimp_image_set_unit
gimp_image_set_tattoo_state
gimp_image_get_tattoo_state
gimp_image_get_layer_by_tattoo
gimp_image_get_channel_by_tattoo
gimp_image_get_cmap
gimp_image_set_cmap
gimp_image_get_colormap
gimp_image_set_colormap
gimp_image_get_vectors
gimp_image_get_thumbnail_data
gimp_image_parasite_find
gimp_image_parasite_list
gimp_image_parasite_attach
gimp_image_parasite_detach
gimp_image_attach_new_parasite
gimp_image_add_vectors
gimp_image_remove_vectors
gimp_image_get_active_vectors
gimp_image_set_active_vectors
gimp_image_lower_vectors
gimp_image_raise_vectors
gimp_image_lower_vectors_to_bottom
gimp_image_raise_vectors_to_top
gimp_image_get_vectors_position
</SECTION>
<SECTION>
<FILE>gimplayer</FILE>
gimp_layer_new
gimp_layer_copy
gimp_layer_scale
gimp_layer_resize
gimp_layer_resize_to_image_size
gimp_layer_translate
gimp_layer_add_alpha
gimp_layer_flatten
gimp_layer_set_offsets
gimp_layer_create_mask
gimp_layer_from_mask
gimp_layer_get_mask
gimp_layer_add_mask
gimp_layer_remove_mask
gimp_layer_new_from_drawable
gimp_layer_get_lock_alpha
gimp_layer_set_lock_alpha
gimp_layer_get_preserve_trans
gimp_layer_set_preserve_trans
gimp_layer_get_apply_mask
gimp_layer_set_apply_mask
gimp_layer_get_show_mask
gimp_layer_set_show_mask
gimp_layer_get_edit_mask
gimp_layer_set_edit_mask
gimp_layer_get_opacity
gimp_layer_set_opacity
gimp_layer_get_mode
gimp_layer_set_mode
gimp_layer_is_floating_sel
</SECTION>
<SECTION>
<FILE>gimpmessage</FILE>
gimp_message
gimp_message_get_handler
gimp_message_set_handler
</SECTION>
<SECTION>
<FILE>gimppalette</FILE>
gimp_palette_new
gimp_palette_duplicate
gimp_palette_rename
gimp_palette_delete
gimp_palette_get_info
gimp_palette_get_columns
gimp_palette_set_columns
gimp_palette_add_entry
gimp_palette_delete_entry
gimp_palette_entry_get_color
gimp_palette_entry_set_color
gimp_palette_entry_get_name
gimp_palette_entry_set_name
gimp_palette_get_foreground
gimp_palette_get_background
gimp_palette_set_foreground
gimp_palette_set_background
gimp_palette_set_default_colors
gimp_palette_swap_colors
gimp_palette_is_editable
</SECTION>
<SECTION>
<FILE>gimppalettes</FILE>
gimp_palettes_refresh
gimp_palettes_get_list
gimp_palettes_get_palette
gimp_palettes_set_palette
gimp_palettes_get_palette_entry
</SECTION>
<SECTION>
<FILE>gimppaletteselect</FILE>
GimpRunPaletteCallback
gimp_palette_select_new
gimp_palette_select_destroy
gimp_palettes_popup
gimp_palettes_close_popup
gimp_palettes_set_popup
</SECTION>
<SECTION>
<FILE>gimppaths</FILE>
gimp_path_list
gimp_path_get_points
gimp_path_get_current
gimp_path_set_current
gimp_path_set_points
gimp_path_stroke_current
gimp_path_get_point_at_dist
gimp_path_get_tattoo
gimp_get_path_by_tattoo
gimp_path_delete
gimp_path_get_locked
gimp_path_set_locked
gimp_path_set_tattoo
gimp_path_to_selection
gimp_path_import
</SECTION>
<SECTION>
<FILE>gimppattern</FILE>
gimp_pattern_get_info
gimp_pattern_get_pixels
</SECTION>
<SECTION>
<FILE>gimppatterns</FILE>
gimp_patterns_refresh
gimp_patterns_get_list
gimp_patterns_get_pattern
gimp_patterns_set_pattern
gimp_patterns_get_pattern_data
</SECTION>
<SECTION>
<FILE>gimppatternselect</FILE>
GimpRunPatternCallback
gimp_pattern_select_new
gimp_pattern_select_destroy
gimp_patterns_popup
gimp_patterns_close_popup
gimp_patterns_set_popup
</SECTION>
<SECTION>
<FILE>gimppixelrgn</FILE>
GimpPixelRgn
gimp_pixel_rgn_init
gimp_pixel_rgn_resize
gimp_pixel_rgn_get_pixel
gimp_pixel_rgn_get_row
gimp_pixel_rgn_get_col
gimp_pixel_rgn_get_rect
gimp_pixel_rgn_set_pixel
gimp_pixel_rgn_set_row
gimp_pixel_rgn_set_col
gimp_pixel_rgn_set_rect
gimp_pixel_rgns_register
gimp_pixel_rgns_register2
gimp_pixel_rgns_process
</SECTION>
<SECTION>
<FILE>gimppixelfetcher</FILE>
GimpPixelFetcherEdgeMode
GimpPixelFetcher
gimp_pixel_fetcher_new
gimp_pixel_fetcher_set_edge_mode
gimp_pixel_fetcher_set_bg_color
gimp_pixel_fetcher_get_pixel
gimp_pixel_fetcher_put_pixel
gimp_pixel_fetcher_destroy
</SECTION>
<SECTION>
<FILE>gimpregioniterator</FILE>
GimpRgnIterator
GimpRgnFunc1
GimpRgnFunc2
GimpRgnFuncSrc
GimpRgnFuncDest
GimpRgnFuncSrcDest
gimp_rgn_iterator_new
gimp_rgn_iterator_free
gimp_rgn_iterator_src
gimp_rgn_iterator_dest
gimp_rgn_iterator_src_dest
gimp_rgn_iterate1
gimp_rgn_iterate2
</SECTION>
<SECTION>
<FILE>gimpplugin</FILE>
gimp_plugin_domain_register
gimp_plugin_help_register
gimp_plugin_icon_register
gimp_plugin_menu_register
gimp_plugin_menu_branch_register
</SECTION>
<SECTION>
<FILE>gimpproceduraldb</FILE>
gimp_procedural_db_temp_name
gimp_procedural_db_proc_info
gimp_procedural_db_get_data
gimp_procedural_db_set_data
gimp_procedural_db_dump
gimp_procedural_db_query
gimp_procedural_db_proc_arg
gimp_procedural_db_proc_val
gimp_procedural_db_get_data_size
</SECTION>
<SECTION>
<FILE>gimpprogress</FILE>
GimpProgressVtable
gimp_progress_init
gimp_progress_init_printf
gimp_progress_update
gimp_progress_pulse
gimp_progress_set_text
gimp_progress_set_text_printf
gimp_progress_end
gimp_progress_get_window_handle
GimpProgressStartCallback
GimpProgressEndCallback
GimpProgressTextCallback
GimpProgressValueCallback
gimp_progress_install_vtable
gimp_progress_install
gimp_progress_uninstall
gimp_progress_cancel
</SECTION>
<SECTION>
<FILE>gimpselection</FILE>
gimp_selection_bounds
gimp_selection_all
gimp_selection_none
gimp_selection_clear
gimp_selection_is_empty
gimp_selection_float
gimp_selection_load
gimp_selection_save
gimp_selection_value
gimp_selection_grow
gimp_selection_shrink
gimp_selection_invert
gimp_selection_feather
gimp_selection_sharpen
gimp_selection_border
gimp_selection_translate
gimp_selection_layer_alpha
gimp_selection_combine
</SECTION>
<SECTION>
<FILE>gimptexttool</FILE>
gimp_text_fontname
gimp_text_get_extents_fontname
gimp_text
gimp_text_get_extents
</SECTION>
<SECTION>
<FILE>gimptile</FILE>
GimpTile
gimp_tile_ref
gimp_tile_ref_zero
gimp_tile_unref
gimp_tile_flush
gimp_tile_cache_size
gimp_tile_cache_ntiles
</SECTION>
<SECTION>
<FILE>gimptools</FILE>
gimp_airbrush
gimp_airbrush_default
gimp_by_color_select
gimp_by_color_select_full
gimp_clone
gimp_clone_default
gimp_convolve
gimp_convolve_default
gimp_dodgeburn
gimp_dodgeburn_default
gimp_edit_bucket_fill_full
gimp_ellipse_select
gimp_eraser
gimp_eraser_default
gimp_flip
gimp_free_select
gimp_fuzzy_select
gimp_fuzzy_select_full
gimp_heal
gimp_heal_default
gimp_paintbrush
gimp_paintbrush_default
gimp_pencil
gimp_perspective
gimp_rect_select
gimp_round_rect_select
gimp_rotate
gimp_scale
gimp_shear
gimp_smudge
gimp_smudge_default
gimp_transform_2d
</SECTION>
<SECTION>
<FILE>gimpundo</FILE>
gimp_image_undo_group_start
gimp_image_undo_group_end
gimp_image_undo_is_enabled
gimp_image_undo_disable
gimp_image_undo_enable
gimp_image_undo_freeze
gimp_image_undo_thaw
</SECTION>
<SECTION>
<FILE>gimpvectors</FILE>
gimp_vectors_new
gimp_vectors_import_from_file
gimp_vectors_import_from_string
gimp_vectors_is_valid
gimp_vectors_get_strokes
gimp_vectors_get_image
gimp_vectors_get_linked
gimp_vectors_get_name
gimp_vectors_get_tattoo
gimp_vectors_get_visible
gimp_vectors_set_linked
gimp_vectors_set_name
gimp_vectors_set_tattoo
gimp_vectors_set_visible
gimp_vectors_remove_stroke
gimp_vectors_to_selection
gimp_vectors_parasite_attach
gimp_vectors_parasite_detach
gimp_vectors_parasite_find
gimp_vectors_parasite_list
gimp_vectors_stroke_new_from_points
gimp_vectors_stroke_close
gimp_vectors_stroke_get_length
gimp_vectors_stroke_get_points
gimp_vectors_stroke_get_point_at_dist
gimp_vectors_stroke_interpolate
gimp_vectors_stroke_scale
gimp_vectors_stroke_translate
gimp_vectors_stroke_flip
gimp_vectors_stroke_flip_free
gimp_vectors_stroke_rotate
gimp_vectors_bezier_stroke_conicto
gimp_vectors_bezier_stroke_cubicto
gimp_vectors_bezier_stroke_lineto
gimp_vectors_bezier_stroke_new_ellipse
gimp_vectors_bezier_stroke_new_moveto
</SECTION>
<SECTION>
<FILE>gimppixbuf</FILE>
GimpPixbufTransparency
gimp_image_get_thumbnail
gimp_drawable_get_thumbnail
gimp_drawable_get_sub_thumbnail
gimp_layer_new_from_pixbuf
</SECTION>
<SECTION>
<FILE>gimpaspectpreview</FILE>
<TITLE>GimpAspectPreview</TITLE>
GimpAspectPreview
gimp_aspect_preview_new
<SUBSECTION Standard>
GimpAspectPreviewClass
GIMP_ASPECT_PREVIEW
GIMP_IS_ASPECT_PREVIEW
GIMP_TYPE_ASPECT_PREVIEW
gimp_aspect_preview_get_type
GIMP_ASPECT_PREVIEW_CLASS
GIMP_IS_ASPECT_PREVIEW_CLASS
GIMP_ASPECT_PREVIEW_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpdrawablepreview</FILE>
<TITLE>GimpDrawablePreview</TITLE>
GimpDrawablePreview
gimp_drawable_preview_new
gimp_drawable_preview_get_drawable
gimp_drawable_preview_draw_region
<SUBSECTION Standard>
GimpDrawablePreviewClass
GIMP_DRAWABLE_PREVIEW
GIMP_IS_DRAWABLE_PREVIEW
GIMP_TYPE_DRAWABLE_PREVIEW
gimp_drawable_preview_get_type
GIMP_DRAWABLE_PREVIEW_CLASS
GIMP_IS_DRAWABLE_PREVIEW_CLASS
GIMP_DRAWABLE_PREVIEW_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpzoompreview</FILE>
<TITLE>GimpZoomPreview</TITLE>
GimpZoomPreview
gimp_zoom_preview_new
gimp_zoom_preview_new_with_model
gimp_zoom_preview_get_source
gimp_zoom_preview_get_drawable
gimp_zoom_preview_get_factor
gimp_zoom_preview_get_model
<SUBSECTION Standard>
GimpZoomPreviewClass
GIMP_ZOOM_PREVIEW
GIMP_IS_ZOOM_PREVIEW
GIMP_TYPE_ZOOM_PREVIEW
gimp_zoom_preview_get_type
GIMP_ZOOM_PREVIEW_CLASS
GIMP_IS_ZOOM_PREVIEW_CLASS
GIMP_ZOOM_PREVIEW_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpitemcombobox</FILE>
<TITLE>GimpItemComboBox</TITLE>
GimpItemConstraintFunc
GimpDrawableComboBox
GimpDrawableConstraintFunc
gimp_drawable_combo_box_new
GimpChannelComboBox
gimp_channel_combo_box_new
GimpLayerComboBox
gimp_layer_combo_box_new
GimpVectorsComboBox
GimpVectorsConstraintFunc
gimp_vectors_combo_box_new
<SUBSECTION Standard>
GIMP_TYPE_LAYER_COMBO_BOX
GIMP_TYPE_CHANNEL_COMBO_BOX
gimp_layer_combo_box_get_type
GIMP_IS_LAYER_COMBO_BOX
GIMP_CHANNEL_COMBO_BOX
GIMP_DRAWABLE_COMBO_BOX
GIMP_LAYER_COMBO_BOX
gimp_drawable_combo_box_get_type
GIMP_IS_DRAWABLE_COMBO_BOX
GIMP_TYPE_DRAWABLE_COMBO_BOX
GIMP_IS_CHANNEL_COMBO_BOX
gimp_channel_combo_box_get_type
GIMP_IS_VECTORS_COMBO_BOX
GIMP_TYPE_VECTORS_COMBO_BOX
GIMP_VECTORS_COMBO_BOX
gimp_vectors_combo_box_get_type
</SECTION>
<SECTION>
<FILE>gimpimagecombobox</FILE>
<TITLE>GimpImageComboBox</TITLE>
GimpImageComboBox
GimpImageConstraintFunc
gimp_image_combo_box_new
<SUBSECTION Standard>
GIMP_IMAGE_COMBO_BOX
GIMP_IS_IMAGE_COMBO_BOX
GIMP_TYPE_IMAGE_COMBO_BOX
gimp_image_combo_box_get_type
</SECTION>
<SECTION>
<FILE>gimpprocbrowserdialog</FILE>
<TITLE>GimpProcBrowserDialog</TITLE>
GimpProcBrowserDialog
gimp_proc_browser_dialog_new
gimp_proc_browser_dialog_get_selected
<SUBSECTION Standard>
GimpProcBrowserDialogClass
GIMP_PROC_BROWSER_DIALOG
GIMP_IS_PROC_BROWSER_DIALOG
GIMP_TYPE_PROC_BROWSER_DIALOG
gimp_proc_browser_dialog_get_type
GIMP_PROC_BROWSER_DIALOG_CLASS
GIMP_IS_PROC_BROWSER_DIALOG_CLASS
GIMP_PROC_BROWSER_DIALOG_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpprocview</FILE>
gimp_proc_view_new
</SECTION>
<SECTION>
<FILE>gimpprogressbar</FILE>
<TITLE>GimpProgressBar</TITLE>
GimpProgressBar
gimp_progress_bar_new
<SUBSECTION Standard>
GimpProgressBarClass
GIMP_PROGRESS_BAR
GIMP_IS_PROGRESS_BAR
GIMP_TYPE_PROGRESS_BAR
gimp_progress_bar_get_type
GIMP_PROGRESS_BAR_CLASS
GIMP_IS_PROGRESS_BAR_CLASS
GIMP_PROGRESS_BAR_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpbrushselectbutton</FILE>
<TITLE>GimpBrushSelectButton</TITLE>
GimpBrushSelectButton
gimp_brush_select_button_new
gimp_brush_select_button_get_brush
gimp_brush_select_button_set_brush
<SUBSECTION Standard>
GimpBrushSelectButtonClass
GIMP_BRUSH_SELECT_BUTTON
GIMP_IS_BRUSH_SELECT_BUTTON
GIMP_TYPE_BRUSH_SELECT_BUTTON
gimp_brush_select_button_get_type
GIMP_BRUSH_SELECT_BUTTON_CLASS
GIMP_IS_BRUSH_SELECT_BUTTON_CLASS
GIMP_BRUSH_SELECT_BUTTON_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpgradientselectbutton</FILE>
<TITLE>GimpGradientSelectButton</TITLE>
GimpGradientSelectButton
gimp_gradient_select_button_new
gimp_gradient_select_button_get_gradient
gimp_gradient_select_button_set_gradient
<SUBSECTION Standard>
GimpGradientSelectButtonClass
GIMP_GRADIENT_SELECT_BUTTON
GIMP_IS_GRADIENT_SELECT_BUTTON
GIMP_TYPE_GRADIENT_SELECT_BUTTON
gimp_gradient_select_button_get_type
GIMP_GRADIENT_SELECT_BUTTON_CLASS
GIMP_IS_GRADIENT_SELECT_BUTTON_CLASS
GIMP_GRADIENT_SELECT_BUTTON_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpfontselectbutton</FILE>
<TITLE>GimpFontSelectButton</TITLE>
GimpFontSelectButton
gimp_font_select_button_new
gimp_font_select_button_get_font
gimp_font_select_button_set_font
<SUBSECTION Standard>
GimpFontSelectButtonClass
GIMP_FONT_SELECT_BUTTON
GIMP_IS_FONT_SELECT_BUTTON
GIMP_TYPE_FONT_SELECT_BUTTON
gimp_font_select_button_get_type
GIMP_FONT_SELECT_BUTTON_CLASS
GIMP_IS_FONT_SELECT_BUTTON_CLASS
GIMP_FONT_SELECT_BUTTON_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimppaletteselectbutton</FILE>
<TITLE>GimpPaletteSelectButton</TITLE>
GimpPaletteSelectButton
gimp_palette_select_button_new
gimp_palette_select_button_get_palette
gimp_palette_select_button_set_palette
<SUBSECTION Standard>
GimpPaletteSelectButtonClass
GIMP_PALETTE_SELECT_BUTTON
GIMP_IS_PALETTE_SELECT_BUTTON
GIMP_TYPE_PALETTE_SELECT_BUTTON
gimp_palette_select_button_get_type
GIMP_PALETTE_SELECT_BUTTON_CLASS
GIMP_IS_PALETTE_SELECT_BUTTON_CLASS
GIMP_PALETTE_SELECT_BUTTON_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimppatternselectbutton</FILE>
<TITLE>GimpPatternSelectButton</TITLE>
GimpPatternSelectButton
gimp_pattern_select_button_new
gimp_pattern_select_button_get_pattern
gimp_pattern_select_button_set_pattern
<SUBSECTION Standard>
GimpPatternSelectButtonClass
GIMP_PATTERN_SELECT_BUTTON
GIMP_IS_PATTERN_SELECT_BUTTON
GIMP_TYPE_PATTERN_SELECT_BUTTON
gimp_pattern_select_button_get_type
GIMP_PATTERN_SELECT_BUTTON_CLASS
GIMP_IS_PATTERN_SELECT_BUTTON_CLASS
GIMP_PATTERN_SELECT_BUTTON_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpselectbutton</FILE>
<TITLE>GimpSelectButton</TITLE>
GimpSelectButton
gimp_select_button_close_popup
<SUBSECTION Standard>
GimpSelectButtonClass
GIMP_SELECT_BUTTON
GIMP_IS_SELECT_BUTTON
GIMP_TYPE_SELECT_BUTTON
gimp_select_button_get_type
GIMP_SELECT_BUTTON_CLASS
GIMP_IS_SELECT_BUTTON_CLASS
GIMP_SELECT_BUTTON_GET_CLASS
</SECTION>
<SECTION>
<FILE>gimpmenu</FILE>
GimpConstraintFunc
GimpMenuCallback
gimp_image_menu_new
gimp_layer_menu_new
gimp_channel_menu_new
gimp_drawable_menu_new
</SECTION>
<SECTION>
<FILE>gimpbrushmenu</FILE>
gimp_brush_select_widget_new
gimp_brush_select_widget_close
gimp_brush_select_widget_set
</SECTION>
<SECTION>
<FILE>gimpfontmenu</FILE>
gimp_font_select_widget_new
gimp_font_select_widget_close
gimp_font_select_widget_set
</SECTION>
<SECTION>
<FILE>gimpgradientmenu</FILE>
gimp_gradient_select_widget_new
gimp_gradient_select_widget_close
gimp_gradient_select_widget_set
</SECTION>
<SECTION>
<FILE>gimppatternmenu</FILE>
gimp_pattern_select_widget_new
gimp_pattern_select_widget_close
gimp_pattern_select_widget_set
</SECTION>
<SECTION>
<FILE>gimppalettemenu</FILE>
gimp_palette_select_widget_new
gimp_palette_select_widget_close
gimp_palette_select_widget_set
</SECTION>
|