summaryrefslogtreecommitdiffstats
path: root/devel-docs/libgimp/libgimp-sections.txt
blob: a0cfd9767d9a7c3117d19ef76a49e86203d8e6f1 (plain)
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
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
<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_get_pdb_error
gimp_get_pdb_status
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_export_color_profile
gimp_export_exif
gimp_export_iptc
gimp_export_xmp
gimp_check_size
gimp_check_type
gimp_default_display
gimp_wm_class
gimp_display_name
gimp_monitor_number
gimp_user_time
gimp_icon_theme_dir
gimp_get_progname
gimp_extension_enable
gimp_extension_ack
gimp_extension_process
gimp_attach_parasite
gimp_detach_parasite
gimp_parasite_find
gimp_parasite_list
gimp_get_parasite
gimp_get_parasite_list
gimp_parasite_attach
gimp_parasite_detach
gimp_attach_new_parasite
</SECTION>

<SECTION>
<FILE>gimpenums</FILE>
gimp_enums_init
gimp_enums_get_type_names
GimpBrushApplicationMode
GimpConvertDitherType
GimpHistogramChannel
GimpLayerColorSpace
GimpLayerCompositeMode
GimpLayerMode
GimpLayerModeEffects
GIMP_NORMAL_MODE
GIMP_DISSOLVE_MODE
GIMP_BEHIND_MODE
GIMP_MULTIPLY_MODE
GIMP_SCREEN_MODE
GIMP_OVERLAY_MODE
GIMP_DIFFERENCE_MODE
GIMP_ADDITION_MODE
GIMP_SUBTRACT_MODE
GIMP_DARKEN_ONLY_MODE
GIMP_LIGHTEN_ONLY_MODE
GIMP_HUE_MODE
GIMP_SATURATION_MODE
GIMP_COLOR_MODE
GIMP_VALUE_MODE
GIMP_DIVIDE_MODE
GIMP_DODGE_MODE
GIMP_BURN_MODE
GIMP_HARDLIGHT_MODE
GIMP_SOFTLIGHT_MODE
GIMP_GRAIN_EXTRACT_MODE
GIMP_GRAIN_MERGE_MODE
GIMP_COLOR_ERASE_MODE
GIMP_FIXED_DITHER
GIMP_FSLOWBLEED_DITHER
GIMP_FS_DITHER
GIMP_NO_DITHER
<SUBSECTION Standard>
GIMP_TYPE_BRUSH_APPLICATION_MODE
GIMP_TYPE_CONVERT_DITHER_TYPE
GIMP_TYPE_HISTOGRAM_CHANNEL
GIMP_TYPE_LAYER_COLOR_SPACE
GIMP_TYPE_LAYER_COMPOSITE_MODE
GIMP_TYPE_LAYER_MODE
gimp_brush_application_mode_get_type
gimp_convert_dither_type_get_type
gimp_histogram_channel_get_type
gimp_layer_color_space_get_type
gimp_layer_composite_mode_get_type
gimp_layer_mode_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
gimp_export_dialog_new
gimp_export_dialog_get_content_area
</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_set_defaults
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_list_paint_methods
gimp_context_get_paint_method
gimp_context_set_paint_method
gimp_context_get_stroke_method
gimp_context_set_stroke_method
gimp_context_get_line_width
gimp_context_set_line_width
gimp_context_get_line_width_unit
gimp_context_set_line_width_unit
gimp_context_get_line_cap_style
gimp_context_set_line_cap_style
gimp_context_get_line_join_style
gimp_context_set_line_join_style
gimp_context_get_line_miter_limit
gimp_context_set_line_miter_limit
gimp_context_get_line_dash_offset
gimp_context_set_line_dash_offset
gimp_context_get_line_dash_pattern
gimp_context_set_line_dash_pattern
gimp_context_get_brush
gimp_context_set_brush
gimp_context_get_brush_size
gimp_context_set_brush_size
gimp_context_set_brush_default_size
gimp_context_get_brush_aspect_ratio
gimp_context_set_brush_aspect_ratio
gimp_context_get_brush_angle
gimp_context_set_brush_angle
gimp_context_get_brush_spacing
gimp_context_set_brush_spacing
gimp_context_set_brush_default_spacing
gimp_context_get_brush_hardness
gimp_context_set_brush_hardness
gimp_context_set_brush_default_hardness
gimp_context_get_brush_force
gimp_context_set_brush_force
gimp_context_get_dynamics
gimp_context_set_dynamics
gimp_context_get_mypaint_brush
gimp_context_set_mypaint_brush
gimp_context_get_pattern
gimp_context_set_pattern
gimp_context_get_gradient
gimp_context_set_gradient
gimp_context_set_gradient_fg_bg_hsv_ccw
gimp_context_set_gradient_fg_bg_hsv_cw
gimp_context_set_gradient_fg_bg_rgb
gimp_context_set_gradient_fg_transparent
gimp_context_get_gradient_blend_color_space
gimp_context_set_gradient_blend_color_space
gimp_context_get_gradient_repeat_mode
gimp_context_set_gradient_repeat_mode
gimp_context_get_gradient_reverse
gimp_context_set_gradient_reverse
gimp_context_get_palette
gimp_context_set_palette
gimp_context_get_font
gimp_context_set_font
gimp_context_get_antialias
gimp_context_set_antialias
gimp_context_get_feather
gimp_context_set_feather
gimp_context_get_feather_radius
gimp_context_set_feather_radius
gimp_context_get_sample_merged
gimp_context_set_sample_merged
gimp_context_get_sample_criterion
gimp_context_set_sample_criterion
gimp_context_get_sample_threshold
gimp_context_set_sample_threshold
gimp_context_get_sample_threshold_int
gimp_context_set_sample_threshold_int
gimp_context_get_sample_transparent
gimp_context_set_sample_transparent
gimp_context_get_diagonal_neighbors
gimp_context_set_diagonal_neighbors
gimp_context_get_distance_metric
gimp_context_set_distance_metric
gimp_context_get_interpolation
gimp_context_set_interpolation
gimp_context_get_transform_direction
gimp_context_set_transform_direction
gimp_context_get_transform_resize
gimp_context_set_transform_resize
gimp_context_get_transform_recursion
gimp_context_set_transform_recursion
gimp_context_get_ink_angle
gimp_context_set_ink_angle
gimp_context_get_ink_blob_angle
gimp_context_set_ink_blob_angle
gimp_context_get_ink_blob_aspect_ratio
gimp_context_set_ink_blob_aspect_ratio
gimp_context_get_ink_blob_type
gimp_context_set_ink_blob_type
gimp_context_get_ink_size
gimp_context_set_ink_size
gimp_context_get_ink_size_sensitivity
gimp_context_set_ink_size_sensitivity
gimp_context_get_ink_speed_sensitivity
gimp_context_set_ink_speed_sensitivity
gimp_context_get_ink_tilt_sensitivity
gimp_context_set_ink_tilt_sensitivity
</SECTION>

<SECTION>
<FILE>gimpdebug</FILE>
gimp_debug_timer_start
gimp_debug_timer_end
</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_buffer
gimp_drawable_get_shadow_buffer
gimp_drawable_get_format
gimp_drawable_get_thumbnail_format
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_free_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_channel
gimp_drawable_is_layer
gimp_drawable_is_layer_mask
gimp_drawable_is_text_layer
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>gimpdrawablecolor</FILE>
gimp_drawable_brightness_contrast
gimp_drawable_color_balance
gimp_drawable_colorize_hsl
gimp_drawable_curves_explicit
gimp_drawable_curves_spline
gimp_drawable_desaturate
gimp_drawable_equalize
gimp_drawable_histogram
gimp_drawable_hue_saturation
gimp_drawable_invert
gimp_drawable_levels
gimp_drawable_levels_stretch
gimp_drawable_posterize
gimp_drawable_threshold
</SECTION>

<SECTION>
<FILE>gimpdrawableedit</FILE>
gimp_drawable_edit_clear
gimp_drawable_edit_fill
gimp_drawable_edit_bucket_fill
gimp_drawable_edit_gradient_fill
gimp_drawable_edit_stroke_selection
gimp_drawable_edit_stroke_item
</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>gimpdynamics</FILE>
gimp_dynamics_get_list
gimp_dynamics_refresh
</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_paste_as_new_image
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_named_paste_as_new_image
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_priority
gimp_register_file_handler_mime
gimp_register_file_handler_uri
gimp_register_file_handler_raw
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
gimp_get_icon_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_get_number_of_segments
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>gimphelp</FILE>
gimp_help
</SECTION>

<SECTION>
<FILE>gimpimage</FILE>
gimp_image_list
gimp_image_new
gimp_image_new_with_precision
gimp_image_get_uri
gimp_image_get_xcf_uri
gimp_image_get_exported_uri
gimp_image_get_imported_uri
gimp_image_duplicate
gimp_image_delete
gimp_image_is_valid
gimp_image_base_type
gimp_image_get_precision
gimp_image_get_default_new_layer_mode
gimp_image_width
gimp_image_height
gimp_image_free_shadow
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_get_item_position
gimp_image_reorder_item
gimp_image_raise_item
gimp_image_lower_item
gimp_image_raise_item_to_top
gimp_image_lower_item_to_bottom
gimp_image_add_layer
gimp_image_insert_layer
gimp_image_remove_layer
gimp_image_freeze_layers
gimp_image_thaw_layers
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_insert_channel
gimp_image_remove_channel
gimp_image_freeze_channels
gimp_image_thaw_channels
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_merge_layer_group
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_vectors_by_tattoo
gimp_image_get_layer_by_name
gimp_image_get_channel_by_name
gimp_image_get_vectors_by_name
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_get_metadata
gimp_image_set_metadata
gimp_image_attach_parasite
gimp_image_detach_parasite
gimp_image_get_parasite
gimp_image_get_parasite_list
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_insert_vectors
gimp_image_remove_vectors
gimp_image_freeze_vectors
gimp_image_thaw_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>gimpimagecolorprofile</FILE>
gimp_image_get_color_profile
gimp_image_set_color_profile
gimp_image_set_color_profile_from_file
gimp_image_get_effective_color_profile
gimp_image_convert_color_profile
gimp_image_convert_color_profile_from_file
</SECTION>

<SECTION>
<FILE>gimpimageconvert</FILE>
gimp_image_convert_rgb
gimp_image_convert_grayscale
gimp_image_convert_indexed
gimp_image_convert_set_dither_matrix
gimp_image_convert_precision
</SECTION>

<SECTION>
<FILE>gimpimagegrid</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>gimpimageguides</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>gimpimagesamplepoints</FILE>
gimp_image_add_sample_point
gimp_image_delete_sample_point
gimp_image_find_next_sample_point
gimp_image_get_sample_point_position
</SECTION>

<SECTION>
<FILE>gimpimageselect</FILE>
gimp_image_select_color
gimp_image_select_contiguous_color
gimp_image_select_rectangle
gimp_image_select_round_rectangle
gimp_image_select_ellipse
gimp_image_select_polygon
gimp_image_select_item
</SECTION>

<SECTION>
<FILE>gimpimagetransform</FILE>
gimp_image_resize
gimp_image_resize_to_layers
gimp_image_scale
gimp_image_scale_full
gimp_image_crop
gimp_image_flip
gimp_image_rotate
</SECTION>

<SECTION>
<FILE>gimpimageundo</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>gimpmetadata</FILE>
gimp_image_metadata_load_prepare
gimp_image_metadata_load_finish
gimp_image_metadata_save_prepare
gimp_image_metadata_save_finish
gimp_image_metadata_load_thumbnail
</SECTION>

<SECTION>
<FILE>gimpitem</FILE>
gimp_item_is_valid
gimp_item_get_image
gimp_item_delete
gimp_item_is_drawable
gimp_item_is_layer
gimp_item_is_text_layer
gimp_item_is_channel
gimp_item_is_layer_mask
gimp_item_is_selection
gimp_item_is_vectors
gimp_item_is_group
gimp_item_get_parent
gimp_item_get_children
gimp_item_get_expanded
gimp_item_set_expanded
gimp_item_get_name
gimp_item_set_name
gimp_item_get_visible
gimp_item_set_visible
gimp_item_get_linked
gimp_item_set_linked
gimp_item_get_lock_content
gimp_item_set_lock_content
gimp_item_get_lock_position
gimp_item_set_lock_position
gimp_item_get_color_tag
gimp_item_set_color_tag
gimp_item_get_tattoo
gimp_item_set_tattoo
gimp_item_attach_parasite
gimp_item_detach_parasite
gimp_item_get_parasite
gimp_item_get_parasite_list
</SECTION>

<SECTION>
<FILE>gimpitemtransform</FILE>
gimp_item_transform_translate
gimp_item_transform_flip_simple
gimp_item_transform_flip
gimp_item_transform_perspective
gimp_item_transform_rotate_simple
gimp_item_transform_rotate
gimp_item_transform_scale
gimp_item_transform_shear
gimp_item_transform_2d
gimp_item_transform_matrix
</SECTION>

<SECTION>
<FILE>gimplayer</FILE>
gimp_layer_new
gimp_layer_new_from_drawable
gimp_layer_new_from_visible
gimp_layer_new_from_pixbuf
gimp_layer_new_from_surface
gimp_layer_group_new
gimp_layer_copy
gimp_layer_scale
gimp_layer_scale_full
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_is_floating_sel
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_get_blend_space
gimp_layer_set_blend_space
gimp_layer_get_composite_space
gimp_layer_set_composite_space
gimp_layer_get_composite_mode
gimp_layer_set_composite_mode
</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_colors
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
gimp_plugin_set_pdb_error_handler
gimp_plugin_get_pdb_error_handler
gimp_plugin_enable_precision
gimp_plugin_precision_enabled
</SECTION>

<SECTION>
<FILE>gimpproceduraldb</FILE>
gimp_procedural_db_temp_name
gimp_procedural_db_get_data
gimp_procedural_db_set_data
gimp_procedural_db_dump
gimp_procedural_db_query
gimp_procedural_db_proc_exists
gimp_procedural_db_proc_info
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_flood
gimp_selection_translate
gimp_selection_layer_alpha
gimp_selection_combine
</SECTION>

<SECTION>
<FILE>gimptextlayer</FILE>
gimp_text_layer_new
gimp_text_layer_get_text
gimp_text_layer_set_text
gimp_text_layer_get_markup
gimp_text_layer_get_font
gimp_text_layer_set_font
gimp_text_layer_get_font_size
gimp_text_layer_set_font_size
gimp_text_layer_get_hinting
gimp_text_layer_set_hinting
gimp_text_layer_get_antialias
gimp_text_layer_set_antialias
gimp_text_layer_get_kerning
gimp_text_layer_set_kerning
gimp_text_layer_get_language
gimp_text_layer_set_language
gimp_text_layer_get_base_direction
gimp_text_layer_set_base_direction
gimp_text_layer_get_justification
gimp_text_layer_set_justification
gimp_text_layer_get_color
gimp_text_layer_set_color
gimp_text_layer_get_indent
gimp_text_layer_set_indent
gimp_text_layer_get_line_spacing
gimp_text_layer_set_line_spacing
gimp_text_layer_get_letter_spacing
gimp_text_layer_set_letter_spacing
gimp_text_layer_get_hint_style
gimp_text_layer_set_hint_style
gimp_text_layer_resize
</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>gimppainttools</FILE>
gimp_airbrush
gimp_airbrush_default
gimp_clone
gimp_clone_default
gimp_convolve
gimp_convolve_default
gimp_dodgeburn
gimp_dodgeburn_default
gimp_edit_bucket_fill_full
gimp_eraser
gimp_eraser_default
gimp_heal
gimp_heal_default
gimp_paintbrush
gimp_paintbrush_default
gimp_pencil
gimp_smudge
gimp_smudge_default
</SECTION>

<SECTION>
<FILE>gimpselectiontools</FILE>
gimp_by_color_select
gimp_by_color_select_full
gimp_ellipse_select
gimp_free_select
gimp_fuzzy_select
gimp_fuzzy_select_full
gimp_rect_select
gimp_round_rect_select
</SECTION>

<SECTION>
<FILE>gimptransformtools</FILE>
gimp_flip
gimp_perspective
gimp_rotate
gimp_scale
gimp_shear
gimp_transform_2d
</SECTION>

<SECTION>
<FILE>gimpvectors</FILE>
gimp_vectors_new
gimp_vectors_new_from_text_layer
gimp_vectors_copy
gimp_vectors_is_valid
gimp_vectors_get_strokes
gimp_vectors_get_image
gimp_vectors_get_name
gimp_vectors_set_name
gimp_vectors_get_visible
gimp_vectors_set_visible
gimp_vectors_get_linked
gimp_vectors_set_linked
gimp_vectors_get_tattoo
gimp_vectors_set_tattoo
gimp_vectors_remove_stroke
gimp_vectors_to_selection
gimp_vectors_export_to_file
gimp_vectors_export_to_string
gimp_vectors_import_from_file
gimp_vectors_import_from_string
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
</SECTION>

<SECTION>
<FILE>gimpaspectpreview</FILE>
<TITLE>GimpAspectPreview</TITLE>
GimpAspectPreview
gimp_aspect_preview_new
gimp_aspect_preview_new_from_drawable_id
<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_new_from_drawable_id
gimp_drawable_preview_get_drawable
gimp_drawable_preview_get_drawable_id
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_from_drawable_id
gimp_zoom_preview_new_with_model_from_drawable_id
gimp_zoom_preview_new_with_model
gimp_zoom_preview_get_source
gimp_zoom_preview_get_drawable
gimp_zoom_preview_get_drawable_id
gimp_zoom_preview_get_factor
gimp_zoom_preview_get_model
<SUBSECTION Standard>
GimpZoomPreviewClass
GimpZoomPreviewPrivate
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>