summaryrefslogtreecommitdiffstats
path: root/devel-docs/libgimp/html/libgimp.devhelp2
blob: a4a05d36bbd189564287a937d52e1cb12d85688c (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
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<book xmlns="http://www.devhelp.net/book" title="GIMP Library Reference Manual" link="index.html" author="" name="libgimp" version="2" language="c">
  <chapters>
    <sub name="GIMP Library" link="libgimp.html">
      <sub name="Functions not Related to Specific Images" link="libgimp-general.html">
        <sub name="gimp" link="libgimp-gimp.html"/>
        <sub name="gimpenums" link="libgimp-gimpenums.html"/>
        <sub name="gimpbuffer" link="libgimp-gimpbuffer.html"/>
        <sub name="gimpcontext" link="libgimp-gimpcontext.html"/>
        <sub name="gimpgimprc" link="libgimp-gimpgimprc.html"/>
        <sub name="gimphelp" link="libgimp-gimphelp.html"/>
        <sub name="gimpmessage" link="libgimp-gimpmessage.html"/>
        <sub name="gimpplugin" link="libgimp-gimpplugin.html"/>
        <sub name="gimpproceduraldb" link="libgimp-gimpproceduraldb.html"/>
        <sub name="gimpprogress" link="libgimp-gimpprogress.html"/>
        <sub name="gimpdebug" link="libgimp-gimpdebug.html"/>
      </sub>
      <sub name="Manipulating Images and their Properties" link="libgimp-image.html">
        <sub name="gimpchannel" link="libgimp-gimpchannel.html"/>
        <sub name="gimpcolor" link="libgimp-gimpcolor.html"/>
        <sub name="gimpdisplay" link="libgimp-gimpdisplay.html"/>
        <sub name="gimpdrawable" link="libgimp-gimpdrawable.html"/>
        <sub name="gimpdrawablecolor" link="libgimp-gimpdrawablecolor.html"/>
        <sub name="gimpdrawableedit" link="libgimp-gimpdrawableedit.html"/>
        <sub name="gimpdrawabletransform" link="libgimp-gimpdrawabletransform.html"/>
        <sub name="gimpedit" link="libgimp-gimpedit.html"/>
        <sub name="gimpfileops" link="libgimp-gimpfileops.html"/>
        <sub name="gimpfloatingsel" link="libgimp-gimpfloatingsel.html"/>
        <sub name="gimpimage" link="libgimp-gimpimage.html"/>
        <sub name="gimpimagecolorprofile" link="libgimp-gimpimagecolorprofile.html"/>
        <sub name="gimpimageconvert" link="libgimp-gimpimageconvert.html"/>
        <sub name="gimpimagegrid" link="libgimp-gimpimagegrid.html"/>
        <sub name="gimpimageguides" link="libgimp-gimpimageguides.html"/>
        <sub name="gimpimagesamplepoints" link="libgimp-gimpimagesamplepoints.html"/>
        <sub name="gimpimageselect" link="libgimp-gimpimageselect.html"/>
        <sub name="gimpimagetransform" link="libgimp-gimpimagetransform.html"/>
        <sub name="gimpimageundo" link="libgimp-gimpimageundo.html"/>
        <sub name="gimpmetadata" link="libgimp-gimpmetadata.html"/>
        <sub name="gimpitem" link="libgimp-gimpitem.html"/>
        <sub name="gimpitemtransform" link="libgimp-gimpitemtransform.html"/>
        <sub name="gimplayer" link="libgimp-gimplayer.html"/>
        <sub name="gimppaths" link="libgimp-gimppaths.html"/>
        <sub name="gimppixbuf" link="libgimp-gimppixbuf.html"/>
        <sub name="gimppixelfetcher" link="libgimp-gimppixelfetcher.html"/>
        <sub name="gimppixelrgn" link="libgimp-gimppixelrgn.html"/>
        <sub name="gimpregioniterator" link="libgimp-gimpregioniterator.html"/>
        <sub name="gimpselection" link="libgimp-gimpselection.html"/>
        <sub name="gimptextlayer" link="libgimp-gimptextlayer.html"/>
        <sub name="gimptexttool" link="libgimp-gimptexttool.html"/>
        <sub name="gimptile" link="libgimp-gimptile.html"/>
        <sub name="gimppainttools" link="libgimp-gimppainttools.html"/>
        <sub name="gimpselectiontools" link="libgimp-gimpselectiontools.html"/>
        <sub name="gimptransformtools" link="libgimp-gimptransformtools.html"/>
        <sub name="gimpvectors" link="libgimp-gimpvectors.html"/>
      </sub>
      <sub name="Data Objects" link="libgimp-data.html">
        <sub name="gimpbrush" link="libgimp-gimpbrush.html"/>
        <sub name="gimpbrushes" link="libgimp-gimpbrushes.html"/>
        <sub name="gimpdynamics" link="libgimp-gimpdynamics.html"/>
        <sub name="gimpfonts" link="libgimp-gimpfonts.html"/>
        <sub name="gimpgradient" link="libgimp-gimpgradient.html"/>
        <sub name="gimpgradients" link="libgimp-gimpgradients.html"/>
        <sub name="gimppalette" link="libgimp-gimppalette.html"/>
        <sub name="gimppalettes" link="libgimp-gimppalettes.html"/>
        <sub name="gimppattern" link="libgimp-gimppattern.html"/>
        <sub name="gimppatterns" link="libgimp-gimppatterns.html"/>
      </sub>
      <sub name="Controlling the Core's Selection Dialogs" link="libgimp-selectors.html">
        <sub name="GimpSelectButton" link="GimpSelectButton.html"/>
        <sub name="gimpbrushselectbutton" link="GimpBrushSelectButton.html"/>
        <sub name="GimpFontSelectButton" link="GimpFontSelectButton.html"/>
        <sub name="GimpGradientSelectButton" link="GimpGradientSelectButton.html"/>
        <sub name="GimpPaletteSelect" link="GimpPaletteSelectButton.html"/>
        <sub name="GimpPatternSelectButton" link="GimpPatternSelectButton.html"/>
        <sub name="gimpbrushselect" link="libgimp-gimpbrushselect.html"/>
        <sub name="gimpfontselect" link="libgimp-gimpfontselect.html"/>
        <sub name="gimpgradientselect" link="libgimp-gimpgradientselect.html"/>
        <sub name="gimppaletteselect" link="libgimp-gimppaletteselect.html"/>
        <sub name="gimppatternselect" link="libgimp-gimppatternselect.html"/>
      </sub>
    </sub>
    <sub name="GIMP User Interface Library" link="libgimpui.html">
      <sub name="Object Hierarchy" link="libgimpui-hierarchy.html"/>
      <sub name="gimpui" link="libgimp-gimpui.html"/>
      <sub name="gimpexport" link="libgimp-gimpexport.html"/>
      <sub name="GimpDrawablePreview" link="GimpDrawablePreview.html"/>
      <sub name="GimpAspectPreview" link="GimpAspectPreview.html"/>
      <sub name="GimpZoomPreview" link="GimpZoomPreview.html"/>
      <sub name="GimpItemComboBox" link="libgimp-GimpItemComboBox.html"/>
      <sub name="GimpImageComboBox" link="GimpImageComboBox.html"/>
      <sub name="GimpProgressBar" link="GimpProgressBar.html"/>
      <sub name="gimpmenu" link="libgimp-gimpmenu.html"/>
      <sub name="gimpbrushmenu" link="libgimp-gimpbrushmenu.html"/>
      <sub name="gimpfontmenu" link="libgimp-gimpfontmenu.html"/>
      <sub name="gimpgradientmenu" link="libgimp-gimpgradientmenu.html"/>
      <sub name="gimppalettemenu" link="libgimp-gimppalettemenu.html"/>
      <sub name="gimppatternmenu" link="libgimp-gimppatternmenu.html"/>
      <sub name="GimpProcBrowserDialog" link="GimpProcBrowserDialog.html"/>
      <sub name="GimpProcView" link="libgimp-GimpProcView.html"/>
    </sub>
    <sub name="Index" link="api-index-full.html"/>
    <sub name="Index of new symbols in GIMP 2.2" link="api-index-2-2.html"/>
    <sub name="Index of new symbols in GIMP 2.4" link="api-index-2-4.html"/>
    <sub name="Index of new symbols in GIMP 2.6" link="api-index-2-6.html"/>
    <sub name="Index of new symbols in GIMP 2.8" link="api-index-2-8.html"/>
    <sub name="Index of new symbols in GIMP 2.10" link="api-index-2-10.html"/>
    <sub name="Index of new symbols in GIMP 2.10.2" link="api-index-2-10-2.html"/>
    <sub name="Index of new symbols in GIMP 2.10.4" link="api-index-2-10-4.html"/>
    <sub name="Index of new symbols in GIMP 2.10.6" link="api-index-2-10-6.html"/>
    <sub name="Index of new symbols in GIMP 2.10.14" link="api-index-2-10-14.html"/>
    <sub name="Index of deprecated symbols" link="api-index-deprecated.html"/>
  </chapters>
  <functions>
    <keyword type="function" name="gimp_version ()" link="libgimp-gimp.html#gimp-version"/>
    <keyword type="function" name="gimp_getpid ()" link="libgimp-gimp.html#gimp-getpid" since="2.4"/>
    <keyword type="function" name="GimpInitProc ()" link="libgimp-gimp.html#GimpInitProc"/>
    <keyword type="function" name="GimpQuitProc ()" link="libgimp-gimp.html#GimpQuitProc"/>
    <keyword type="function" name="GimpQueryProc ()" link="libgimp-gimp.html#GimpQueryProc"/>
    <keyword type="function" name="GimpRunProc ()" link="libgimp-gimp.html#GimpRunProc"/>
    <keyword type="macro" name="MAIN" link="libgimp-gimp.html#MAIN:CAPS"/>
    <keyword type="function" name="gimp_main ()" link="libgimp-gimp.html#gimp-main"/>
    <keyword type="function" name="gimp_quit ()" link="libgimp-gimp.html#gimp-quit"/>
    <keyword type="function" name="gimp_install_procedure ()" link="libgimp-gimp.html#gimp-install-procedure"/>
    <keyword type="function" name="gimp_install_temp_proc ()" link="libgimp-gimp.html#gimp-install-temp-proc"/>
    <keyword type="function" name="gimp_uninstall_temp_proc ()" link="libgimp-gimp.html#gimp-uninstall-temp-proc"/>
    <keyword type="function" name="gimp_run_procedure ()" link="libgimp-gimp.html#gimp-run-procedure"/>
    <keyword type="function" name="gimp_run_procedure2 ()" link="libgimp-gimp.html#gimp-run-procedure2"/>
    <keyword type="function" name="gimp_destroy_params ()" link="libgimp-gimp.html#gimp-destroy-params"/>
    <keyword type="function" name="gimp_destroy_paramdefs ()" link="libgimp-gimp.html#gimp-destroy-paramdefs"/>
    <keyword type="function" name="gimp_get_pdb_error ()" link="libgimp-gimp.html#gimp-get-pdb-error" since="2.6"/>
    <keyword type="function" name="gimp_get_pdb_status ()" link="libgimp-gimp.html#gimp-get-pdb-status" since="2.10"/>
    <keyword type="function" name="gimp_tile_width ()" link="libgimp-gimp.html#gimp-tile-width"/>
    <keyword type="function" name="gimp_tile_height ()" link="libgimp-gimp.html#gimp-tile-height"/>
    <keyword type="function" name="gimp_shm_ID ()" link="libgimp-gimp.html#gimp-shm-ID"/>
    <keyword type="function" name="gimp_shm_addr ()" link="libgimp-gimp.html#gimp-shm-addr"/>
    <keyword type="function" name="gimp_gamma ()" link="libgimp-gimp.html#gimp-gamma" deprecated=""/>
    <keyword type="function" name="gimp_install_cmap ()" link="libgimp-gimp.html#gimp-install-cmap" deprecated=""/>
    <keyword type="function" name="gimp_min_colors ()" link="libgimp-gimp.html#gimp-min-colors" deprecated=""/>
    <keyword type="function" name="gimp_show_tool_tips ()" link="libgimp-gimp.html#gimp-show-tool-tips"/>
    <keyword type="function" name="gimp_show_help_button ()" link="libgimp-gimp.html#gimp-show-help-button" since="2.2"/>
    <keyword type="function" name="gimp_export_color_profile ()" link="libgimp-gimp.html#gimp-export-color-profile" since="2.10.4"/>
    <keyword type="function" name="gimp_export_exif ()" link="libgimp-gimp.html#gimp-export-exif" since="2.10"/>
    <keyword type="function" name="gimp_export_iptc ()" link="libgimp-gimp.html#gimp-export-iptc" since="2.10"/>
    <keyword type="function" name="gimp_export_xmp ()" link="libgimp-gimp.html#gimp-export-xmp" since="2.10"/>
    <keyword type="function" name="gimp_check_size ()" link="libgimp-gimp.html#gimp-check-size" since="2.2"/>
    <keyword type="function" name="gimp_check_type ()" link="libgimp-gimp.html#gimp-check-type" since="2.2"/>
    <keyword type="function" name="gimp_default_display ()" link="libgimp-gimp.html#gimp-default-display"/>
    <keyword type="function" name="gimp_wm_class ()" link="libgimp-gimp.html#gimp-wm-class"/>
    <keyword type="function" name="gimp_display_name ()" link="libgimp-gimp.html#gimp-display-name"/>
    <keyword type="function" name="gimp_monitor_number ()" link="libgimp-gimp.html#gimp-monitor-number"/>
    <keyword type="function" name="gimp_user_time ()" link="libgimp-gimp.html#gimp-user-time" since="2.6"/>
    <keyword type="function" name="gimp_icon_theme_dir ()" link="libgimp-gimp.html#gimp-icon-theme-dir"/>
    <keyword type="function" name="gimp_get_progname ()" link="libgimp-gimp.html#gimp-get-progname"/>
    <keyword type="function" name="gimp_extension_enable ()" link="libgimp-gimp.html#gimp-extension-enable"/>
    <keyword type="function" name="gimp_extension_ack ()" link="libgimp-gimp.html#gimp-extension-ack"/>
    <keyword type="function" name="gimp_extension_process ()" link="libgimp-gimp.html#gimp-extension-process"/>
    <keyword type="function" name="gimp_attach_parasite ()" link="libgimp-gimp.html#gimp-attach-parasite" since="2.8"/>
    <keyword type="function" name="gimp_detach_parasite ()" link="libgimp-gimp.html#gimp-detach-parasite" since="2.8"/>
    <keyword type="function" name="gimp_parasite_find ()" link="libgimp-gimp.html#gimp-parasite-find" deprecated="Use gimp_get_parasite() instead."/>
    <keyword type="function" name="gimp_parasite_list ()" link="libgimp-gimp.html#gimp-parasite-list" deprecated="Use gimp_get_parasite_list() instead."/>
    <keyword type="function" name="gimp_get_parasite ()" link="libgimp-gimp.html#gimp-get-parasite" since="2.8"/>
    <keyword type="function" name="gimp_get_parasite_list ()" link="libgimp-gimp.html#gimp-get-parasite-list" since="2.8"/>
    <keyword type="function" name="gimp_parasite_attach ()" link="libgimp-gimp.html#gimp-parasite-attach" deprecated="Use gimp_attach_parasite() instead."/>
    <keyword type="function" name="gimp_parasite_detach ()" link="libgimp-gimp.html#gimp-parasite-detach" deprecated="Use gimp_detach_parasite() instead."/>
    <keyword type="function" name="gimp_attach_new_parasite ()" link="libgimp-gimp.html#gimp-attach-new-parasite" deprecated="Use gimp_attach_parasite() instead."/>
    <keyword type="macro" name="gimp_get_data" link="libgimp-gimp.html#gimp-get-data"/>
    <keyword type="macro" name="gimp_get_data_size" link="libgimp-gimp.html#gimp-get-data-size"/>
    <keyword type="macro" name="gimp_set_data" link="libgimp-gimp.html#gimp-set-data"/>
    <keyword type="struct" name="GimpPlugInInfo" link="libgimp-gimp.html#GimpPlugInInfo"/>
    <keyword type="struct" name="GimpParamDef" link="libgimp-gimp.html#GimpParamDef"/>
    <keyword type="struct" name="GimpParamRegion" link="libgimp-gimp.html#GimpParamRegion"/>
    <keyword type="union" name="GimpParamData" link="libgimp-gimp.html#GimpParamData"/>
    <keyword type="struct" name="GimpParam" link="libgimp-gimp.html#GimpParam"/>
    <keyword type="function" name="gimp_enums_init ()" link="libgimp-gimpenums.html#gimp-enums-init"/>
    <keyword type="function" name="gimp_enums_get_type_names ()" link="libgimp-gimpenums.html#gimp-enums-get-type-names"/>
    <keyword type="enum" name="enum GimpBrushApplicationMode" link="libgimp-gimpenums.html#GimpBrushApplicationMode"/>
    <keyword type="enum" name="enum GimpConvertDitherType" link="libgimp-gimpenums.html#GimpConvertDitherType"/>
    <keyword type="enum" name="enum GimpHistogramChannel" link="libgimp-gimpenums.html#GimpHistogramChannel"/>
    <keyword type="enum" name="enum GimpLayerColorSpace" link="libgimp-gimpenums.html#GimpLayerColorSpace"/>
    <keyword type="enum" name="enum GimpLayerCompositeMode" link="libgimp-gimpenums.html#GimpLayerCompositeMode"/>
    <keyword type="enum" name="enum GimpLayerMode" link="libgimp-gimpenums.html#GimpLayerMode"/>
    <keyword type="typedef" name="GimpLayerModeEffects" link="libgimp-gimpenums.html#GimpLayerModeEffects" deprecated=""/>
    <keyword type="macro" name="GIMP_NORMAL_MODE" link="libgimp-gimpenums.html#GIMP-NORMAL-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_DISSOLVE_MODE" link="libgimp-gimpenums.html#GIMP-DISSOLVE-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_BEHIND_MODE" link="libgimp-gimpenums.html#GIMP-BEHIND-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_MULTIPLY_MODE" link="libgimp-gimpenums.html#GIMP-MULTIPLY-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_SCREEN_MODE" link="libgimp-gimpenums.html#GIMP-SCREEN-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_OVERLAY_MODE" link="libgimp-gimpenums.html#GIMP-OVERLAY-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_DIFFERENCE_MODE" link="libgimp-gimpenums.html#GIMP-DIFFERENCE-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_ADDITION_MODE" link="libgimp-gimpenums.html#GIMP-ADDITION-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_SUBTRACT_MODE" link="libgimp-gimpenums.html#GIMP-SUBTRACT-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_DARKEN_ONLY_MODE" link="libgimp-gimpenums.html#GIMP-DARKEN-ONLY-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_LIGHTEN_ONLY_MODE" link="libgimp-gimpenums.html#GIMP-LIGHTEN-ONLY-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_HUE_MODE" link="libgimp-gimpenums.html#GIMP-HUE-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_SATURATION_MODE" link="libgimp-gimpenums.html#GIMP-SATURATION-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_COLOR_MODE" link="libgimp-gimpenums.html#GIMP-COLOR-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_VALUE_MODE" link="libgimp-gimpenums.html#GIMP-VALUE-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_DIVIDE_MODE" link="libgimp-gimpenums.html#GIMP-DIVIDE-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_DODGE_MODE" link="libgimp-gimpenums.html#GIMP-DODGE-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_BURN_MODE" link="libgimp-gimpenums.html#GIMP-BURN-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_HARDLIGHT_MODE" link="libgimp-gimpenums.html#GIMP-HARDLIGHT-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_SOFTLIGHT_MODE" link="libgimp-gimpenums.html#GIMP-SOFTLIGHT-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_GRAIN_EXTRACT_MODE" link="libgimp-gimpenums.html#GIMP-GRAIN-EXTRACT-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_GRAIN_MERGE_MODE" link="libgimp-gimpenums.html#GIMP-GRAIN-MERGE-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_COLOR_ERASE_MODE" link="libgimp-gimpenums.html#GIMP-COLOR-ERASE-MODE:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_FIXED_DITHER" link="libgimp-gimpenums.html#GIMP-FIXED-DITHER:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_FSLOWBLEED_DITHER" link="libgimp-gimpenums.html#GIMP-FSLOWBLEED-DITHER:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_FS_DITHER" link="libgimp-gimpenums.html#GIMP-FS-DITHER:CAPS" deprecated=""/>
    <keyword type="macro" name="GIMP_NO_DITHER" link="libgimp-gimpenums.html#GIMP-NO-DITHER:CAPS" deprecated=""/>
    <keyword type="function" name="gimp_buffers_get_list ()" link="libgimp-gimpbuffer.html#gimp-buffers-get-list" since="2.4"/>
    <keyword type="function" name="gimp_buffer_rename ()" link="libgimp-gimpbuffer.html#gimp-buffer-rename" since="2.4"/>
    <keyword type="function" name="gimp_buffer_delete ()" link="libgimp-gimpbuffer.html#gimp-buffer-delete" since="2.4"/>
    <keyword type="function" name="gimp_buffer_get_width ()" link="libgimp-gimpbuffer.html#gimp-buffer-get-width" since="2.4"/>
    <keyword type="function" name="gimp_buffer_get_height ()" link="libgimp-gimpbuffer.html#gimp-buffer-get-height" since="2.4"/>
    <keyword type="function" name="gimp_buffer_get_bytes ()" link="libgimp-gimpbuffer.html#gimp-buffer-get-bytes" since="2.4"/>
    <keyword type="function" name="gimp_buffer_get_image_type ()" link="libgimp-gimpbuffer.html#gimp-buffer-get-image-type" since="2.4"/>
    <keyword type="function" name="gimp_context_push ()" link="libgimp-gimpcontext.html#gimp-context-push" since="2.2"/>
    <keyword type="function" name="gimp_context_pop ()" link="libgimp-gimpcontext.html#gimp-context-pop" since="2.2"/>
    <keyword type="function" name="gimp_context_set_defaults ()" link="libgimp-gimpcontext.html#gimp-context-set-defaults" since="2.8"/>
    <keyword type="function" name="gimp_context_get_foreground ()" link="libgimp-gimpcontext.html#gimp-context-get-foreground" since="2.2"/>
    <keyword type="function" name="gimp_context_set_foreground ()" link="libgimp-gimpcontext.html#gimp-context-set-foreground" since="2.2"/>
    <keyword type="function" name="gimp_context_get_background ()" link="libgimp-gimpcontext.html#gimp-context-get-background" since="2.2"/>
    <keyword type="function" name="gimp_context_set_background ()" link="libgimp-gimpcontext.html#gimp-context-set-background" since="2.2"/>
    <keyword type="function" name="gimp_context_set_default_colors ()" link="libgimp-gimpcontext.html#gimp-context-set-default-colors" since="2.2"/>
    <keyword type="function" name="gimp_context_swap_colors ()" link="libgimp-gimpcontext.html#gimp-context-swap-colors" since="2.2"/>
    <keyword type="function" name="gimp_context_get_opacity ()" link="libgimp-gimpcontext.html#gimp-context-get-opacity" since="2.2"/>
    <keyword type="function" name="gimp_context_set_opacity ()" link="libgimp-gimpcontext.html#gimp-context-set-opacity" since="2.2"/>
    <keyword type="function" name="gimp_context_get_paint_mode ()" link="libgimp-gimpcontext.html#gimp-context-get-paint-mode" since="2.2"/>
    <keyword type="function" name="gimp_context_set_paint_mode ()" link="libgimp-gimpcontext.html#gimp-context-set-paint-mode" since="2.2"/>
    <keyword type="function" name="gimp_context_list_paint_methods ()" link="libgimp-gimpcontext.html#gimp-context-list-paint-methods" since="2.4"/>
    <keyword type="function" name="gimp_context_get_paint_method ()" link="libgimp-gimpcontext.html#gimp-context-get-paint-method" since="2.4"/>
    <keyword type="function" name="gimp_context_set_paint_method ()" link="libgimp-gimpcontext.html#gimp-context-set-paint-method" since="2.4"/>
    <keyword type="function" name="gimp_context_get_stroke_method ()" link="libgimp-gimpcontext.html#gimp-context-get-stroke-method" since="2.10"/>
    <keyword type="function" name="gimp_context_set_stroke_method ()" link="libgimp-gimpcontext.html#gimp-context-set-stroke-method" since="2.10"/>
    <keyword type="function" name="gimp_context_get_line_width ()" link="libgimp-gimpcontext.html#gimp-context-get-line-width" since="2.10"/>
    <keyword type="function" name="gimp_context_set_line_width ()" link="libgimp-gimpcontext.html#gimp-context-set-line-width" since="2.10"/>
    <keyword type="function" name="gimp_context_get_line_width_unit ()" link="libgimp-gimpcontext.html#gimp-context-get-line-width-unit" since="2.10"/>
    <keyword type="function" name="gimp_context_set_line_width_unit ()" link="libgimp-gimpcontext.html#gimp-context-set-line-width-unit" since="2.10"/>
    <keyword type="function" name="gimp_context_get_line_cap_style ()" link="libgimp-gimpcontext.html#gimp-context-get-line-cap-style" since="2.10"/>
    <keyword type="function" name="gimp_context_set_line_cap_style ()" link="libgimp-gimpcontext.html#gimp-context-set-line-cap-style" since="2.10"/>
    <keyword type="function" name="gimp_context_get_line_join_style ()" link="libgimp-gimpcontext.html#gimp-context-get-line-join-style" since="2.10"/>
    <keyword type="function" name="gimp_context_set_line_join_style ()" link="libgimp-gimpcontext.html#gimp-context-set-line-join-style" since="2.10"/>
    <keyword type="function" name="gimp_context_get_line_miter_limit ()" link="libgimp-gimpcontext.html#gimp-context-get-line-miter-limit" since="2.10"/>
    <keyword type="function" name="gimp_context_set_line_miter_limit ()" link="libgimp-gimpcontext.html#gimp-context-set-line-miter-limit" since="2.10"/>
    <keyword type="function" name="gimp_context_get_line_dash_offset ()" link="libgimp-gimpcontext.html#gimp-context-get-line-dash-offset" since="2.10"/>
    <keyword type="function" name="gimp_context_set_line_dash_offset ()" link="libgimp-gimpcontext.html#gimp-context-set-line-dash-offset" since="2.10"/>
    <keyword type="function" name="gimp_context_get_line_dash_pattern ()" link="libgimp-gimpcontext.html#gimp-context-get-line-dash-pattern" since="2.10"/>
    <keyword type="function" name="gimp_context_set_line_dash_pattern ()" link="libgimp-gimpcontext.html#gimp-context-set-line-dash-pattern" since="2.10"/>
    <keyword type="function" name="gimp_context_get_brush ()" link="libgimp-gimpcontext.html#gimp-context-get-brush" since="2.2"/>
    <keyword type="function" name="gimp_context_set_brush ()" link="libgimp-gimpcontext.html#gimp-context-set-brush" since="2.2"/>
    <keyword type="function" name="gimp_context_get_brush_size ()" link="libgimp-gimpcontext.html#gimp-context-get-brush-size" since="2.8"/>
    <keyword type="function" name="gimp_context_set_brush_size ()" link="libgimp-gimpcontext.html#gimp-context-set-brush-size" since="2.8"/>
    <keyword type="function" name="gimp_context_set_brush_default_size ()" link="libgimp-gimpcontext.html#gimp-context-set-brush-default-size" since="2.8"/>
    <keyword type="function" name="gimp_context_get_brush_aspect_ratio ()" link="libgimp-gimpcontext.html#gimp-context-get-brush-aspect-ratio" since="2.8"/>
    <keyword type="function" name="gimp_context_set_brush_aspect_ratio ()" link="libgimp-gimpcontext.html#gimp-context-set-brush-aspect-ratio" since="2.8"/>
    <keyword type="function" name="gimp_context_get_brush_angle ()" link="libgimp-gimpcontext.html#gimp-context-get-brush-angle" since="2.8"/>
    <keyword type="function" name="gimp_context_set_brush_angle ()" link="libgimp-gimpcontext.html#gimp-context-set-brush-angle" since="2.8"/>
    <keyword type="function" name="gimp_context_get_brush_spacing ()" link="libgimp-gimpcontext.html#gimp-context-get-brush-spacing" since="2.10"/>
    <keyword type="function" name="gimp_context_set_brush_spacing ()" link="libgimp-gimpcontext.html#gimp-context-set-brush-spacing" since="2.10"/>
    <keyword type="function" name="gimp_context_set_brush_default_spacing ()" link="libgimp-gimpcontext.html#gimp-context-set-brush-default-spacing" since="2.10"/>
    <keyword type="function" name="gimp_context_get_brush_hardness ()" link="libgimp-gimpcontext.html#gimp-context-get-brush-hardness" since="2.10"/>
    <keyword type="function" name="gimp_context_set_brush_hardness ()" link="libgimp-gimpcontext.html#gimp-context-set-brush-hardness" since="2.10"/>
    <keyword type="function" name="gimp_context_set_brush_default_hardness ()" link="libgimp-gimpcontext.html#gimp-context-set-brush-default-hardness" since="2.10"/>
    <keyword type="function" name="gimp_context_get_brush_force ()" link="libgimp-gimpcontext.html#gimp-context-get-brush-force" since="2.10"/>
    <keyword type="function" name="gimp_context_set_brush_force ()" link="libgimp-gimpcontext.html#gimp-context-set-brush-force" since="2.10"/>
    <keyword type="function" name="gimp_context_get_dynamics ()" link="libgimp-gimpcontext.html#gimp-context-get-dynamics" since="2.8"/>
    <keyword type="function" name="gimp_context_set_dynamics ()" link="libgimp-gimpcontext.html#gimp-context-set-dynamics" since="2.8"/>
    <keyword type="function" name="gimp_context_get_mypaint_brush ()" link="libgimp-gimpcontext.html#gimp-context-get-mypaint-brush" since="2.10"/>
    <keyword type="function" name="gimp_context_set_mypaint_brush ()" link="libgimp-gimpcontext.html#gimp-context-set-mypaint-brush" since="2.10"/>
    <keyword type="function" name="gimp_context_get_pattern ()" link="libgimp-gimpcontext.html#gimp-context-get-pattern" since="2.2"/>
    <keyword type="function" name="gimp_context_set_pattern ()" link="libgimp-gimpcontext.html#gimp-context-set-pattern" since="2.2"/>
    <keyword type="function" name="gimp_context_get_gradient ()" link="libgimp-gimpcontext.html#gimp-context-get-gradient" since="2.2"/>
    <keyword type="function" name="gimp_context_set_gradient ()" link="libgimp-gimpcontext.html#gimp-context-set-gradient" since="2.2"/>
    <keyword type="function" name="gimp_context_set_gradient_fg_bg_hsv_ccw ()" link="libgimp-gimpcontext.html#gimp-context-set-gradient-fg-bg-hsv-ccw" since="2.10"/>
    <keyword type="function" name="gimp_context_set_gradient_fg_bg_hsv_cw ()" link="libgimp-gimpcontext.html#gimp-context-set-gradient-fg-bg-hsv-cw" since="2.10"/>
    <keyword type="function" name="gimp_context_set_gradient_fg_bg_rgb ()" link="libgimp-gimpcontext.html#gimp-context-set-gradient-fg-bg-rgb" since="2.10"/>
    <keyword type="function" name="gimp_context_set_gradient_fg_transparent ()" link="libgimp-gimpcontext.html#gimp-context-set-gradient-fg-transparent" since="2.10"/>
    <keyword type="function" name="gimp_context_get_gradient_blend_color_space ()" link="libgimp-gimpcontext.html#gimp-context-get-gradient-blend-color-space" since="2.10"/>
    <keyword type="function" name="gimp_context_set_gradient_blend_color_space ()" link="libgimp-gimpcontext.html#gimp-context-set-gradient-blend-color-space" since="2.10"/>
    <keyword type="function" name="gimp_context_get_gradient_repeat_mode ()" link="libgimp-gimpcontext.html#gimp-context-get-gradient-repeat-mode" since="2.10"/>
    <keyword type="function" name="gimp_context_set_gradient_repeat_mode ()" link="libgimp-gimpcontext.html#gimp-context-set-gradient-repeat-mode" since="2.10"/>
    <keyword type="function" name="gimp_context_get_gradient_reverse ()" link="libgimp-gimpcontext.html#gimp-context-get-gradient-reverse" since="2.10"/>
    <keyword type="function" name="gimp_context_set_gradient_reverse ()" link="libgimp-gimpcontext.html#gimp-context-set-gradient-reverse" since="2.10"/>
    <keyword type="function" name="gimp_context_get_palette ()" link="libgimp-gimpcontext.html#gimp-context-get-palette" since="2.2"/>
    <keyword type="function" name="gimp_context_set_palette ()" link="libgimp-gimpcontext.html#gimp-context-set-palette" since="2.2"/>
    <keyword type="function" name="gimp_context_get_font ()" link="libgimp-gimpcontext.html#gimp-context-get-font" since="2.2"/>
    <keyword type="function" name="gimp_context_set_font ()" link="libgimp-gimpcontext.html#gimp-context-set-font" since="2.2"/>
    <keyword type="function" name="gimp_context_get_antialias ()" link="libgimp-gimpcontext.html#gimp-context-get-antialias" since="2.8"/>
    <keyword type="function" name="gimp_context_set_antialias ()" link="libgimp-gimpcontext.html#gimp-context-set-antialias" since="2.8"/>
    <keyword type="function" name="gimp_context_get_feather ()" link="libgimp-gimpcontext.html#gimp-context-get-feather" since="2.8"/>
    <keyword type="function" name="gimp_context_set_feather ()" link="libgimp-gimpcontext.html#gimp-context-set-feather" since="2.8"/>
    <keyword type="function" name="gimp_context_get_feather_radius ()" link="libgimp-gimpcontext.html#gimp-context-get-feather-radius" since="2.8"/>
    <keyword type="function" name="gimp_context_set_feather_radius ()" link="libgimp-gimpcontext.html#gimp-context-set-feather-radius" since="2.8"/>
    <keyword type="function" name="gimp_context_get_sample_merged ()" link="libgimp-gimpcontext.html#gimp-context-get-sample-merged" since="2.8"/>
    <keyword type="function" name="gimp_context_set_sample_merged ()" link="libgimp-gimpcontext.html#gimp-context-set-sample-merged" since="2.8"/>
    <keyword type="function" name="gimp_context_get_sample_criterion ()" link="libgimp-gimpcontext.html#gimp-context-get-sample-criterion" since="2.8"/>
    <keyword type="function" name="gimp_context_set_sample_criterion ()" link="libgimp-gimpcontext.html#gimp-context-set-sample-criterion" since="2.8"/>
    <keyword type="function" name="gimp_context_get_sample_threshold ()" link="libgimp-gimpcontext.html#gimp-context-get-sample-threshold" since="2.8"/>
    <keyword type="function" name="gimp_context_set_sample_threshold ()" link="libgimp-gimpcontext.html#gimp-context-set-sample-threshold" since="2.8"/>
    <keyword type="function" name="gimp_context_get_sample_threshold_int ()" link="libgimp-gimpcontext.html#gimp-context-get-sample-threshold-int" since="2.8"/>
    <keyword type="function" name="gimp_context_set_sample_threshold_int ()" link="libgimp-gimpcontext.html#gimp-context-set-sample-threshold-int" since="2.8"/>
    <keyword type="function" name="gimp_context_get_sample_transparent ()" link="libgimp-gimpcontext.html#gimp-context-get-sample-transparent" since="2.8"/>
    <keyword type="function" name="gimp_context_set_sample_transparent ()" link="libgimp-gimpcontext.html#gimp-context-set-sample-transparent" since="2.8"/>
    <keyword type="function" name="gimp_context_get_diagonal_neighbors ()" link="libgimp-gimpcontext.html#gimp-context-get-diagonal-neighbors" since="2.10"/>
    <keyword type="function" name="gimp_context_set_diagonal_neighbors ()" link="libgimp-gimpcontext.html#gimp-context-set-diagonal-neighbors" since="2.10"/>
    <keyword type="function" name="gimp_context_get_distance_metric ()" link="libgimp-gimpcontext.html#gimp-context-get-distance-metric" since="2.10"/>
    <keyword type="function" name="gimp_context_set_distance_metric ()" link="libgimp-gimpcontext.html#gimp-context-set-distance-metric" since="2.10"/>
    <keyword type="function" name="gimp_context_get_interpolation ()" link="libgimp-gimpcontext.html#gimp-context-get-interpolation" since="2.8"/>
    <keyword type="function" name="gimp_context_set_interpolation ()" link="libgimp-gimpcontext.html#gimp-context-set-interpolation" since="2.8"/>
    <keyword type="function" name="gimp_context_get_transform_direction ()" link="libgimp-gimpcontext.html#gimp-context-get-transform-direction" since="2.8"/>
    <keyword type="function" name="gimp_context_set_transform_direction ()" link="libgimp-gimpcontext.html#gimp-context-set-transform-direction" since="2.8"/>
    <keyword type="function" name="gimp_context_get_transform_resize ()" link="libgimp-gimpcontext.html#gimp-context-get-transform-resize" since="2.8"/>
    <keyword type="function" name="gimp_context_set_transform_resize ()" link="libgimp-gimpcontext.html#gimp-context-set-transform-resize" since="2.8"/>
    <keyword type="function" name="gimp_context_get_transform_recursion ()" link="libgimp-gimpcontext.html#gimp-context-get-transform-recursion" deprecated="There is no replacement for this procedure."/>
    <keyword type="function" name="gimp_context_set_transform_recursion ()" link="libgimp-gimpcontext.html#gimp-context-set-transform-recursion" deprecated="There is no replacement for this procedure."/>
    <keyword type="function" name="gimp_context_get_ink_angle ()" link="libgimp-gimpcontext.html#gimp-context-get-ink-angle" since="2.8"/>
    <keyword type="function" name="gimp_context_set_ink_angle ()" link="libgimp-gimpcontext.html#gimp-context-set-ink-angle" since="2.8"/>
    <keyword type="function" name="gimp_context_get_ink_blob_angle ()" link="libgimp-gimpcontext.html#gimp-context-get-ink-blob-angle" since="2.8"/>
    <keyword type="function" name="gimp_context_set_ink_blob_angle ()" link="libgimp-gimpcontext.html#gimp-context-set-ink-blob-angle" since="2.8"/>
    <keyword type="function" name="gimp_context_get_ink_blob_aspect_ratio ()" link="libgimp-gimpcontext.html#gimp-context-get-ink-blob-aspect-ratio" since="2.8"/>
    <keyword type="function" name="gimp_context_set_ink_blob_aspect_ratio ()" link="libgimp-gimpcontext.html#gimp-context-set-ink-blob-aspect-ratio" since="2.8"/>
    <keyword type="function" name="gimp_context_get_ink_blob_type ()" link="libgimp-gimpcontext.html#gimp-context-get-ink-blob-type" since="2.8"/>
    <keyword type="function" name="gimp_context_set_ink_blob_type ()" link="libgimp-gimpcontext.html#gimp-context-set-ink-blob-type" since="2.8"/>
    <keyword type="function" name="gimp_context_get_ink_size ()" link="libgimp-gimpcontext.html#gimp-context-get-ink-size" since="2.8"/>
    <keyword type="function" name="gimp_context_set_ink_size ()" link="libgimp-gimpcontext.html#gimp-context-set-ink-size" since="2.8"/>
    <keyword type="function" name="gimp_context_get_ink_size_sensitivity ()" link="libgimp-gimpcontext.html#gimp-context-get-ink-size-sensitivity" since="2.8"/>
    <keyword type="function" name="gimp_context_set_ink_size_sensitivity ()" link="libgimp-gimpcontext.html#gimp-context-set-ink-size-sensitivity" since="2.8"/>
    <keyword type="function" name="gimp_context_get_ink_speed_sensitivity ()" link="libgimp-gimpcontext.html#gimp-context-get-ink-speed-sensitivity" since="2.8"/>
    <keyword type="function" name="gimp_context_set_ink_speed_sensitivity ()" link="libgimp-gimpcontext.html#gimp-context-set-ink-speed-sensitivity" since="2.8"/>
    <keyword type="function" name="gimp_context_get_ink_tilt_sensitivity ()" link="libgimp-gimpcontext.html#gimp-context-get-ink-tilt-sensitivity" since="2.8"/>
    <keyword type="function" name="gimp_context_set_ink_tilt_sensitivity ()" link="libgimp-gimpcontext.html#gimp-context-set-ink-tilt-sensitivity" since="2.8"/>
    <keyword type="function" name="gimp_gimprc_query ()" link="libgimp-gimpgimprc.html#gimp-gimprc-query"/>
    <keyword type="function" name="gimp_gimprc_set ()" link="libgimp-gimpgimprc.html#gimp-gimprc-set"/>
    <keyword type="function" name="gimp_get_color_configuration ()" link="libgimp-gimpgimprc.html#gimp-get-color-configuration" since="2.4"/>
    <keyword type="function" name="gimp_get_default_comment ()" link="libgimp-gimpgimprc.html#gimp-get-default-comment"/>
    <keyword type="function" name="gimp_get_default_unit ()" link="libgimp-gimpgimprc.html#gimp-get-default-unit" since="2.4"/>
    <keyword type="function" name="gimp_get_module_load_inhibit ()" link="libgimp-gimpgimprc.html#gimp-get-module-load-inhibit"/>
    <keyword type="function" name="gimp_get_monitor_resolution ()" link="libgimp-gimpgimprc.html#gimp-get-monitor-resolution"/>
    <keyword type="function" name="gimp_get_theme_dir ()" link="libgimp-gimpgimprc.html#gimp-get-theme-dir" deprecated="There is no replacement for this procedure."/>
    <keyword type="function" name="gimp_get_icon_theme_dir ()" link="libgimp-gimpgimprc.html#gimp-get-icon-theme-dir" deprecated="There is no replacement for this procedure." since="2.10"/>
    <keyword type="function" name="gimp_help ()" link="libgimp-gimphelp.html#gimp-help"/>
    <keyword type="function" name="gimp_message ()" link="libgimp-gimpmessage.html#gimp-message"/>
    <keyword type="function" name="gimp_message_get_handler ()" link="libgimp-gimpmessage.html#gimp-message-get-handler"/>
    <keyword type="function" name="gimp_message_set_handler ()" link="libgimp-gimpmessage.html#gimp-message-set-handler"/>
    <keyword type="function" name="gimp_plugin_domain_register ()" link="libgimp-gimpplugin.html#gimp-plugin-domain-register"/>
    <keyword type="function" name="gimp_plugin_help_register ()" link="libgimp-gimpplugin.html#gimp-plugin-help-register"/>
    <keyword type="function" name="gimp_plugin_icon_register ()" link="libgimp-gimpplugin.html#gimp-plugin-icon-register"/>
    <keyword type="function" name="gimp_plugin_menu_register ()" link="libgimp-gimpplugin.html#gimp-plugin-menu-register" since="2.2"/>
    <keyword type="function" name="gimp_plugin_menu_branch_register ()" link="libgimp-gimpplugin.html#gimp-plugin-menu-branch-register" since="2.4"/>
    <keyword type="function" name="gimp_plugin_set_pdb_error_handler ()" link="libgimp-gimpplugin.html#gimp-plugin-set-pdb-error-handler" since="2.6"/>
    <keyword type="function" name="gimp_plugin_get_pdb_error_handler ()" link="libgimp-gimpplugin.html#gimp-plugin-get-pdb-error-handler" since="2.6"/>
    <keyword type="function" name="gimp_plugin_enable_precision ()" link="libgimp-gimpplugin.html#gimp-plugin-enable-precision" since="2.10"/>
    <keyword type="function" name="gimp_plugin_precision_enabled ()" link="libgimp-gimpplugin.html#gimp-plugin-precision-enabled" since="2.10"/>
    <keyword type="function" name="gimp_procedural_db_temp_name ()" link="libgimp-gimpproceduraldb.html#gimp-procedural-db-temp-name"/>
    <keyword type="function" name="gimp_procedural_db_get_data ()" link="libgimp-gimpproceduraldb.html#gimp-procedural-db-get-data"/>
    <keyword type="function" name="gimp_procedural_db_set_data ()" link="libgimp-gimpproceduraldb.html#gimp-procedural-db-set-data"/>
    <keyword type="function" name="gimp_procedural_db_dump ()" link="libgimp-gimpproceduraldb.html#gimp-procedural-db-dump"/>
    <keyword type="function" name="gimp_procedural_db_query ()" link="libgimp-gimpproceduraldb.html#gimp-procedural-db-query"/>
    <keyword type="function" name="gimp_procedural_db_proc_exists ()" link="libgimp-gimpproceduraldb.html#gimp-procedural-db-proc-exists" since="2.6"/>
    <keyword type="function" name="gimp_procedural_db_proc_info ()" link="libgimp-gimpproceduraldb.html#gimp-procedural-db-proc-info"/>
    <keyword type="function" name="gimp_procedural_db_proc_arg ()" link="libgimp-gimpproceduraldb.html#gimp-procedural-db-proc-arg"/>
    <keyword type="function" name="gimp_procedural_db_proc_val ()" link="libgimp-gimpproceduraldb.html#gimp-procedural-db-proc-val"/>
    <keyword type="function" name="gimp_procedural_db_get_data_size ()" link="libgimp-gimpproceduraldb.html#gimp-procedural-db-get-data-size"/>
    <keyword type="function" name="gimp_progress_init ()" link="libgimp-gimpprogress.html#gimp-progress-init"/>
    <keyword type="function" name="gimp_progress_init_printf ()" link="libgimp-gimpprogress.html#gimp-progress-init-printf" since="2.4"/>
    <keyword type="function" name="gimp_progress_update ()" link="libgimp-gimpprogress.html#gimp-progress-update"/>
    <keyword type="function" name="gimp_progress_pulse ()" link="libgimp-gimpprogress.html#gimp-progress-pulse" since="2.4"/>
    <keyword type="function" name="gimp_progress_set_text ()" link="libgimp-gimpprogress.html#gimp-progress-set-text" since="2.4"/>
    <keyword type="function" name="gimp_progress_set_text_printf ()" link="libgimp-gimpprogress.html#gimp-progress-set-text-printf" since="2.4"/>
    <keyword type="function" name="gimp_progress_end ()" link="libgimp-gimpprogress.html#gimp-progress-end" since="2.4"/>
    <keyword type="function" name="gimp_progress_get_window_handle ()" link="libgimp-gimpprogress.html#gimp-progress-get-window-handle" since="2.2"/>
    <keyword type="function" name="GimpProgressStartCallback ()" link="libgimp-gimpprogress.html#GimpProgressStartCallback" deprecated=""/>
    <keyword type="function" name="GimpProgressEndCallback ()" link="libgimp-gimpprogress.html#GimpProgressEndCallback" deprecated=""/>
    <keyword type="function" name="GimpProgressTextCallback ()" link="libgimp-gimpprogress.html#GimpProgressTextCallback" deprecated=""/>
    <keyword type="function" name="GimpProgressValueCallback ()" link="libgimp-gimpprogress.html#GimpProgressValueCallback" deprecated=""/>
    <keyword type="function" name="gimp_progress_install_vtable ()" link="libgimp-gimpprogress.html#gimp-progress-install-vtable" since="2.4"/>
    <keyword type="function" name="gimp_progress_install ()" link="libgimp-gimpprogress.html#gimp-progress-install" deprecated="" since="2.2"/>
    <keyword type="function" name="gimp_progress_uninstall ()" link="libgimp-gimpprogress.html#gimp-progress-uninstall" since="2.2"/>
    <keyword type="function" name="gimp_progress_cancel ()" link="libgimp-gimpprogress.html#gimp-progress-cancel" since="2.2"/>
    <keyword type="struct" name="struct GimpProgressVtable" link="libgimp-gimpprogress.html#GimpProgressVtable"/>
    <keyword type="function" name="gimp_debug_timer_start ()" link="libgimp-gimpdebug.html#gimp-debug-timer-start"/>
    <keyword type="function" name="gimp_debug_timer_end ()" link="libgimp-gimpdebug.html#gimp-debug-timer-end"/>
    <keyword type="function" name="gimp_channel_new ()" link="libgimp-gimpchannel.html#gimp-channel-new"/>
    <keyword type="function" name="gimp_channel_new_from_component ()" link="libgimp-gimpchannel.html#gimp-channel-new-from-component" since="2.4"/>
    <keyword type="function" name="gimp_channel_copy ()" link="libgimp-gimpchannel.html#gimp-channel-copy"/>
    <keyword type="function" name="gimp_channel_get_show_masked ()" link="libgimp-gimpchannel.html#gimp-channel-get-show-masked"/>
    <keyword type="function" name="gimp_channel_set_show_masked ()" link="libgimp-gimpchannel.html#gimp-channel-set-show-masked"/>
    <keyword type="function" name="gimp_channel_get_opacity ()" link="libgimp-gimpchannel.html#gimp-channel-get-opacity"/>
    <keyword type="function" name="gimp_channel_set_opacity ()" link="libgimp-gimpchannel.html#gimp-channel-set-opacity"/>
    <keyword type="function" name="gimp_channel_get_color ()" link="libgimp-gimpchannel.html#gimp-channel-get-color"/>
    <keyword type="function" name="gimp_channel_set_color ()" link="libgimp-gimpchannel.html#gimp-channel-set-color"/>
    <keyword type="function" name="gimp_channel_combine_masks ()" link="libgimp-gimpchannel.html#gimp-channel-combine-masks"/>
    <keyword type="function" name="gimp_brightness_contrast ()" link="libgimp-gimpcolor.html#gimp-brightness-contrast" deprecated="Use gimp_drawable_brightness_contrast() instead."/>
    <keyword type="function" name="gimp_levels ()" link="libgimp-gimpcolor.html#gimp-levels" deprecated="Use gimp_drawable_levels() instead."/>
    <keyword type="function" name="gimp_levels_auto ()" link="libgimp-gimpcolor.html#gimp-levels-auto" deprecated="Use gimp_drawable_levels_stretch() instead."/>
    <keyword type="function" name="gimp_levels_stretch ()" link="libgimp-gimpcolor.html#gimp-levels-stretch" deprecated="Use gimp_drawable_levels_stretch() instead."/>
    <keyword type="function" name="gimp_posterize ()" link="libgimp-gimpcolor.html#gimp-posterize" deprecated="Use gimp_drawable_posterize() instead."/>
    <keyword type="function" name="gimp_desaturate ()" link="libgimp-gimpcolor.html#gimp-desaturate" deprecated="Use gimp_drawable_desaturate() instead."/>
    <keyword type="function" name="gimp_desaturate_full ()" link="libgimp-gimpcolor.html#gimp-desaturate-full" deprecated="Use gimp_drawable_desaturate() instead." since="2.4"/>
    <keyword type="function" name="gimp_equalize ()" link="libgimp-gimpcolor.html#gimp-equalize" deprecated="Use gimp_drawable_equalize() instead."/>
    <keyword type="function" name="gimp_invert ()" link="libgimp-gimpcolor.html#gimp-invert" deprecated="Use gimp_drawable_invert() instead."/>
    <keyword type="function" name="gimp_curves_spline ()" link="libgimp-gimpcolor.html#gimp-curves-spline" deprecated="Use gimp_drawable_curves_spline() instead."/>
    <keyword type="function" name="gimp_curves_explicit ()" link="libgimp-gimpcolor.html#gimp-curves-explicit" deprecated="Use gimp_drawable_curves_explicit() instead."/>
    <keyword type="function" name="gimp_color_balance ()" link="libgimp-gimpcolor.html#gimp-color-balance" deprecated="Use gimp_drawable_color_color_balance() instead."/>
    <keyword type="function" name="gimp_colorize ()" link="libgimp-gimpcolor.html#gimp-colorize" deprecated="Use gimp_drawable_colorize_hsl() instead."/>
    <keyword type="function" name="gimp_histogram ()" link="libgimp-gimpcolor.html#gimp-histogram" deprecated="Use gimp_drawable_histogram() instead."/>
    <keyword type="function" name="gimp_hue_saturation ()" link="libgimp-gimpcolor.html#gimp-hue-saturation" deprecated="Use gimp_drawable_hue_saturation() instead."/>
    <keyword type="function" name="gimp_threshold ()" link="libgimp-gimpcolor.html#gimp-threshold" deprecated="Use gimp_drawable_threshold() instead."/>
    <keyword type="function" name="gimp_display_new ()" link="libgimp-gimpdisplay.html#gimp-display-new"/>
    <keyword type="function" name="gimp_display_delete ()" link="libgimp-gimpdisplay.html#gimp-display-delete"/>
    <keyword type="function" name="gimp_display_is_valid ()" link="libgimp-gimpdisplay.html#gimp-display-is-valid" since="2.4"/>
    <keyword type="function" name="gimp_display_get_window_handle ()" link="libgimp-gimpdisplay.html#gimp-display-get-window-handle" since="2.4"/>
    <keyword type="function" name="gimp_displays_flush ()" link="libgimp-gimpdisplay.html#gimp-displays-flush"/>
    <keyword type="function" name="gimp_displays_reconnect ()" link="libgimp-gimpdisplay.html#gimp-displays-reconnect"/>
    <keyword type="function" name="gimp_drawable_get_buffer ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-buffer" since="2.10"/>
    <keyword type="function" name="gimp_drawable_get_shadow_buffer ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-shadow-buffer" since="2.10"/>
    <keyword type="function" name="gimp_drawable_get_format ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-format" since="2.10"/>
    <keyword type="function" name="gimp_drawable_get_thumbnail_format ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-thumbnail-format" since="2.10.14"/>
    <keyword type="function" name="gimp_drawable_get ()" link="libgimp-gimpdrawable.html#gimp-drawable-get" deprecated=""/>
    <keyword type="function" name="gimp_drawable_detach ()" link="libgimp-gimpdrawable.html#gimp-drawable-detach" deprecated=""/>
    <keyword type="function" name="gimp_drawable_flush ()" link="libgimp-gimpdrawable.html#gimp-drawable-flush" deprecated=""/>
    <keyword type="function" name="gimp_drawable_delete ()" link="libgimp-gimpdrawable.html#gimp-drawable-delete" deprecated="Use gimp_item_delete() instead."/>
    <keyword type="function" name="gimp_drawable_is_valid ()" link="libgimp-gimpdrawable.html#gimp-drawable-is-valid" deprecated="Use gimp_item_is_valid() instead." since="2.4"/>
    <keyword type="function" name="gimp_drawable_get_name ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-name" deprecated="Use gimp_item_get_name() instead."/>
    <keyword type="function" name="gimp_drawable_set_name ()" link="libgimp-gimpdrawable.html#gimp-drawable-set-name" deprecated="Use gimp_item_set_name() instead."/>
    <keyword type="function" name="gimp_drawable_get_visible ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-visible" deprecated="Use gimp_item_get_visible() instead."/>
    <keyword type="function" name="gimp_drawable_set_visible ()" link="libgimp-gimpdrawable.html#gimp-drawable-set-visible" deprecated="Use gimp_item_set_visible() instead."/>
    <keyword type="function" name="gimp_drawable_get_linked ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-linked" deprecated="Use gimp_item_get_linked() instead."/>
    <keyword type="function" name="gimp_drawable_set_linked ()" link="libgimp-gimpdrawable.html#gimp-drawable-set-linked" deprecated="Use gimp_item_set_linked() instead."/>
    <keyword type="function" name="gimp_drawable_get_tattoo ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-tattoo" deprecated="Use gimp_item_get_tattoo() instead."/>
    <keyword type="function" name="gimp_drawable_set_tattoo ()" link="libgimp-gimpdrawable.html#gimp-drawable-set-tattoo" deprecated="Use gimp_item_set_tattoo() instead."/>
    <keyword type="function" name="gimp_drawable_get_pixel ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-pixel"/>
    <keyword type="function" name="gimp_drawable_set_pixel ()" link="libgimp-gimpdrawable.html#gimp-drawable-set-pixel"/>
    <keyword type="function" name="gimp_drawable_get_tile ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-tile" deprecated=""/>
    <keyword type="function" name="gimp_drawable_get_tile2 ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-tile2" deprecated=""/>
    <keyword type="function" name="gimp_drawable_get_thumbnail_data ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-thumbnail-data"/>
    <keyword type="function" name="gimp_drawable_get_sub_thumbnail_data ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-sub-thumbnail-data"/>
    <keyword type="function" name="gimp_drawable_get_color_uchar ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-color-uchar" deprecated=""/>
    <keyword type="function" name="gimp_drawable_merge_shadow ()" link="libgimp-gimpdrawable.html#gimp-drawable-merge-shadow"/>
    <keyword type="function" name="gimp_drawable_free_shadow ()" link="libgimp-gimpdrawable.html#gimp-drawable-free-shadow" since="2.6"/>
    <keyword type="function" name="gimp_drawable_fill ()" link="libgimp-gimpdrawable.html#gimp-drawable-fill"/>
    <keyword type="function" name="gimp_drawable_update ()" link="libgimp-gimpdrawable.html#gimp-drawable-update"/>
    <keyword type="function" name="gimp_drawable_mask_bounds ()" link="libgimp-gimpdrawable.html#gimp-drawable-mask-bounds"/>
    <keyword type="function" name="gimp_drawable_mask_intersect ()" link="libgimp-gimpdrawable.html#gimp-drawable-mask-intersect" since="2.2"/>
    <keyword type="function" name="gimp_drawable_get_image ()" link="libgimp-gimpdrawable.html#gimp-drawable-get-image" deprecated="Use gimp_item_get_image() instead."/>
    <keyword type="function" name="gimp_drawable_set_image ()" link="libgimp-gimpdrawable.html#gimp-drawable-set-image" deprecated="There is no replacement for this procedure."/>
    <keyword type="function" name="gimp_drawable_has_alpha ()" link="libgimp-gimpdrawable.html#gimp-drawable-has-alpha"/>
    <keyword type="function" name="gimp_drawable_type_with_alpha ()" link="libgimp-gimpdrawable.html#gimp-drawable-type-with-alpha"/>
    <keyword type="function" name="gimp_drawable_type ()" link="libgimp-gimpdrawable.html#gimp-drawable-type"/>
    <keyword type="function" name="gimp_drawable_is_rgb ()" link="libgimp-gimpdrawable.html#gimp-drawable-is-rgb"/>
    <keyword type="function" name="gimp_drawable_is_gray ()" link="libgimp-gimpdrawable.html#gimp-drawable-is-gray"/>
    <keyword type="function" name="gimp_drawable_is_indexed ()" link="libgimp-gimpdrawable.html#gimp-drawable-is-indexed"/>
    <keyword type="function" name="gimp_drawable_bpp ()" link="libgimp-gimpdrawable.html#gimp-drawable-bpp"/>
    <keyword type="function" name="gimp_drawable_width ()" link="libgimp-gimpdrawable.html#gimp-drawable-width"/>
    <keyword type="function" name="gimp_drawable_height ()" link="libgimp-gimpdrawable.html#gimp-drawable-height"/>
    <keyword type="function" name="gimp_drawable_offsets ()" link="libgimp-gimpdrawable.html#gimp-drawable-offsets"/>
    <keyword type="function" name="gimp_drawable_is_channel ()" link="libgimp-gimpdrawable.html#gimp-drawable-is-channel" deprecated="Use gimp_item_is_channel() instead."/>
    <keyword type="function" name="gimp_drawable_is_layer ()" link="libgimp-gimpdrawable.html#gimp-drawable-is-layer" deprecated="Use gimp_item_is_layer() instead."/>
    <keyword type="function" name="gimp_drawable_is_layer_mask ()" link="libgimp-gimpdrawable.html#gimp-drawable-is-layer-mask" deprecated="Use gimp_item_is_layer_mask() instead."/>
    <keyword type="function" name="gimp_drawable_is_text_layer ()" link="libgimp-gimpdrawable.html#gimp-drawable-is-text-layer" deprecated="Use gimp_item_is_text_layer() instead." since="2.6"/>
    <keyword type="function" name="gimp_drawable_offset ()" link="libgimp-gimpdrawable.html#gimp-drawable-offset"/>
    <keyword type="function" name="gimp_drawable_foreground_extract ()" link="libgimp-gimpdrawable.html#gimp-drawable-foreground-extract" since="2.4"/>
    <keyword type="function" name="gimp_drawable_parasite_find ()" link="libgimp-gimpdrawable.html#gimp-drawable-parasite-find" deprecated="Use gimp_item_get_parasite() instead."/>
    <keyword type="function" name="gimp_drawable_parasite_list ()" link="libgimp-gimpdrawable.html#gimp-drawable-parasite-list" deprecated="Use gimp_item_get_parasite_list() instead."/>
    <keyword type="function" name="gimp_drawable_parasite_attach ()" link="libgimp-gimpdrawable.html#gimp-drawable-parasite-attach" deprecated="Use gimp_item_attach_parasite() instead."/>
    <keyword type="function" name="gimp_drawable_parasite_detach ()" link="libgimp-gimpdrawable.html#gimp-drawable-parasite-detach" deprecated="Use gimp_item_detach_parasite() instead."/>
    <keyword type="function" name="gimp_drawable_attach_new_parasite ()" link="libgimp-gimpdrawable.html#gimp-drawable-attach-new-parasite" deprecated="use gimp_item_attach_parasite() instead."/>
    <keyword type="struct" name="GimpDrawable" link="libgimp-gimpdrawable.html#GimpDrawable"/>
    <keyword type="function" name="gimp_drawable_brightness_contrast ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-brightness-contrast" since="2.10"/>
    <keyword type="function" name="gimp_drawable_color_balance ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-color-balance" since="2.10"/>
    <keyword type="function" name="gimp_drawable_colorize_hsl ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-colorize-hsl" since="2.10"/>
    <keyword type="function" name="gimp_drawable_curves_explicit ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-curves-explicit" since="2.10"/>
    <keyword type="function" name="gimp_drawable_curves_spline ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-curves-spline" since="2.10"/>
    <keyword type="function" name="gimp_drawable_desaturate ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-desaturate" since="2.10"/>
    <keyword type="function" name="gimp_drawable_equalize ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-equalize" since="2.10"/>
    <keyword type="function" name="gimp_drawable_histogram ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-histogram" since="2.10"/>
    <keyword type="function" name="gimp_drawable_hue_saturation ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-hue-saturation" since="2.10"/>
    <keyword type="function" name="gimp_drawable_invert ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-invert" since="2.10"/>
    <keyword type="function" name="gimp_drawable_levels ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-levels" since="2.10"/>
    <keyword type="function" name="gimp_drawable_levels_stretch ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-levels-stretch" since="2.10"/>
    <keyword type="function" name="gimp_drawable_posterize ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-posterize" since="2.10"/>
    <keyword type="function" name="gimp_drawable_threshold ()" link="libgimp-gimpdrawablecolor.html#gimp-drawable-threshold" since="2.10"/>
    <keyword type="function" name="gimp_drawable_edit_clear ()" link="libgimp-gimpdrawableedit.html#gimp-drawable-edit-clear"/>
    <keyword type="function" name="gimp_drawable_edit_fill ()" link="libgimp-gimpdrawableedit.html#gimp-drawable-edit-fill"/>
    <keyword type="function" name="gimp_drawable_edit_bucket_fill ()" link="libgimp-gimpdrawableedit.html#gimp-drawable-edit-bucket-fill" since="2.10"/>
    <keyword type="function" name="gimp_drawable_edit_gradient_fill ()" link="libgimp-gimpdrawableedit.html#gimp-drawable-edit-gradient-fill" since="2.10"/>
    <keyword type="function" name="gimp_drawable_edit_stroke_selection ()" link="libgimp-gimpdrawableedit.html#gimp-drawable-edit-stroke-selection"/>
    <keyword type="function" name="gimp_drawable_edit_stroke_item ()" link="libgimp-gimpdrawableedit.html#gimp-drawable-edit-stroke-item" since="2.10"/>
    <keyword type="function" name="gimp_drawable_transform_flip_simple ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-flip-simple" deprecated="Use gimp_item_transform_flip_simple() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_flip ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-flip" deprecated="Use gimp_item_transform_flip() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_flip_default ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-flip-default" deprecated="Use gimp_item_transform_flip() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_perspective ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-perspective" deprecated="Use gimp_item_transform_perspective() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_perspective_default ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-perspective-default" deprecated="Use gimp_item_transform_perspective() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_rotate_simple ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-rotate-simple" deprecated="Use gimp_item_transform_rotate_simple() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_rotate ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-rotate" deprecated="Use gimp_item_transform_rotate() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_rotate_default ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-rotate-default" deprecated="Use gimp_item_transform_rotate() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_scale ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-scale" deprecated="Use gimp_item_transform_scale() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_scale_default ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-scale-default" deprecated="Use gimp_item_transform_scale() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_shear ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-shear" deprecated="Use gimp_item_transform_shear() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_shear_default ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-shear-default" deprecated="Use gimp_item_transform_shear() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_2d ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-2d" deprecated="Use gimp_item_transform_2d() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_2d_default ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-2d-default" deprecated="Use gimp_item_transform_2d() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_matrix ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-matrix" deprecated="Use gimp_item_transform_matrix() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_transform_matrix_default ()" link="libgimp-gimpdrawabletransform.html#gimp-drawable-transform-matrix-default" deprecated="Use gimp_item_transform_matrix() instead." since="2.2"/>
    <keyword type="function" name="gimp_edit_cut ()" link="libgimp-gimpedit.html#gimp-edit-cut"/>
    <keyword type="function" name="gimp_edit_copy ()" link="libgimp-gimpedit.html#gimp-edit-copy"/>
    <keyword type="function" name="gimp_edit_copy_visible ()" link="libgimp-gimpedit.html#gimp-edit-copy-visible" since="2.2"/>
    <keyword type="function" name="gimp_edit_paste ()" link="libgimp-gimpedit.html#gimp-edit-paste"/>
    <keyword type="function" name="gimp_edit_paste_as_new ()" link="libgimp-gimpedit.html#gimp-edit-paste-as-new" deprecated="Use gimp_edit_paste_as_new_image() instead." since="2.4"/>
    <keyword type="function" name="gimp_edit_paste_as_new_image ()" link="libgimp-gimpedit.html#gimp-edit-paste-as-new-image" since="2.10"/>
    <keyword type="function" name="gimp_edit_named_cut ()" link="libgimp-gimpedit.html#gimp-edit-named-cut" since="2.4"/>
    <keyword type="function" name="gimp_edit_named_copy ()" link="libgimp-gimpedit.html#gimp-edit-named-copy" since="2.4"/>
    <keyword type="function" name="gimp_edit_named_copy_visible ()" link="libgimp-gimpedit.html#gimp-edit-named-copy-visible" since="2.4"/>
    <keyword type="function" name="gimp_edit_named_paste ()" link="libgimp-gimpedit.html#gimp-edit-named-paste" since="2.4"/>
    <keyword type="function" name="gimp_edit_named_paste_as_new ()" link="libgimp-gimpedit.html#gimp-edit-named-paste-as-new" deprecated="Use gimp_edit_named_paste_as_new_image() instead." since="2.4"/>
    <keyword type="function" name="gimp_edit_named_paste_as_new_image ()" link="libgimp-gimpedit.html#gimp-edit-named-paste-as-new-image" since="2.10"/>
    <keyword type="function" name="gimp_edit_clear ()" link="libgimp-gimpedit.html#gimp-edit-clear" deprecated="Use gimp_drawable_edit_clear() instead."/>
    <keyword type="function" name="gimp_edit_fill ()" link="libgimp-gimpedit.html#gimp-edit-fill" deprecated="Use gimp_drawable_edit_fill() instead."/>
    <keyword type="function" name="gimp_edit_bucket_fill ()" link="libgimp-gimpedit.html#gimp-edit-bucket-fill" deprecated="Use gimp_drawable_edit_bucket_fill() instead."/>
    <keyword type="function" name="gimp_edit_blend ()" link="libgimp-gimpedit.html#gimp-edit-blend" deprecated="Use gimp_drawable_edit_gradient_fill() instead."/>
    <keyword type="function" name="gimp_edit_stroke ()" link="libgimp-gimpedit.html#gimp-edit-stroke" deprecated="Use gimp_drawable_edit_stroke_selection() instead."/>
    <keyword type="function" name="gimp_edit_stroke_vectors ()" link="libgimp-gimpedit.html#gimp-edit-stroke-vectors" deprecated="Use gimp_drawable_edit_stroke_item() instead." since="2.4"/>
    <keyword type="function" name="gimp_temp_name ()" link="libgimp-gimpfileops.html#gimp-temp-name"/>
    <keyword type="function" name="gimp_file_load ()" link="libgimp-gimpfileops.html#gimp-file-load"/>
    <keyword type="function" name="gimp_file_load_layer ()" link="libgimp-gimpfileops.html#gimp-file-load-layer" since="2.4"/>
    <keyword type="function" name="gimp_file_load_layers ()" link="libgimp-gimpfileops.html#gimp-file-load-layers" since="2.4"/>
    <keyword type="function" name="gimp_file_save ()" link="libgimp-gimpfileops.html#gimp-file-save"/>
    <keyword type="function" name="gimp_file_save_thumbnail ()" link="libgimp-gimpfileops.html#gimp-file-save-thumbnail"/>
    <keyword type="function" name="gimp_register_magic_load_handler ()" link="libgimp-gimpfileops.html#gimp-register-magic-load-handler"/>
    <keyword type="function" name="gimp_register_load_handler ()" link="libgimp-gimpfileops.html#gimp-register-load-handler"/>
    <keyword type="function" name="gimp_register_save_handler ()" link="libgimp-gimpfileops.html#gimp-register-save-handler"/>
    <keyword type="function" name="gimp_register_file_handler_priority ()" link="libgimp-gimpfileops.html#gimp-register-file-handler-priority" since="2.10.6"/>
    <keyword type="function" name="gimp_register_file_handler_mime ()" link="libgimp-gimpfileops.html#gimp-register-file-handler-mime" since="2.2"/>
    <keyword type="function" name="gimp_register_file_handler_uri ()" link="libgimp-gimpfileops.html#gimp-register-file-handler-uri" since="2.10"/>
    <keyword type="function" name="gimp_register_file_handler_raw ()" link="libgimp-gimpfileops.html#gimp-register-file-handler-raw" since="2.10"/>
    <keyword type="function" name="gimp_register_thumbnail_loader ()" link="libgimp-gimpfileops.html#gimp-register-thumbnail-loader" since="2.2"/>
    <keyword type="function" name="gimp_floating_sel_remove ()" link="libgimp-gimpfloatingsel.html#gimp-floating-sel-remove"/>
    <keyword type="function" name="gimp_floating_sel_anchor ()" link="libgimp-gimpfloatingsel.html#gimp-floating-sel-anchor"/>
    <keyword type="function" name="gimp_floating_sel_to_layer ()" link="libgimp-gimpfloatingsel.html#gimp-floating-sel-to-layer"/>
    <keyword type="function" name="gimp_floating_sel_attach ()" link="libgimp-gimpfloatingsel.html#gimp-floating-sel-attach"/>
    <keyword type="function" name="gimp_floating_sel_rigor ()" link="libgimp-gimpfloatingsel.html#gimp-floating-sel-rigor" deprecated="There is no replacement for this procedure."/>
    <keyword type="function" name="gimp_floating_sel_relax ()" link="libgimp-gimpfloatingsel.html#gimp-floating-sel-relax" deprecated="There is no replacement for this procedure."/>
    <keyword type="function" name="gimp_image_list ()" link="libgimp-gimpimage.html#gimp-image-list"/>
    <keyword type="function" name="gimp_image_new ()" link="libgimp-gimpimage.html#gimp-image-new"/>
    <keyword type="function" name="gimp_image_new_with_precision ()" link="libgimp-gimpimage.html#gimp-image-new-with-precision" since="2.10"/>
    <keyword type="function" name="gimp_image_get_uri ()" link="libgimp-gimpimage.html#gimp-image-get-uri" since="2.8"/>
    <keyword type="function" name="gimp_image_get_xcf_uri ()" link="libgimp-gimpimage.html#gimp-image-get-xcf-uri" since="2.8"/>
    <keyword type="function" name="gimp_image_get_exported_uri ()" link="libgimp-gimpimage.html#gimp-image-get-exported-uri" since="2.8"/>
    <keyword type="function" name="gimp_image_get_imported_uri ()" link="libgimp-gimpimage.html#gimp-image-get-imported-uri" since="2.8"/>
    <keyword type="function" name="gimp_image_duplicate ()" link="libgimp-gimpimage.html#gimp-image-duplicate"/>
    <keyword type="function" name="gimp_image_delete ()" link="libgimp-gimpimage.html#gimp-image-delete"/>
    <keyword type="function" name="gimp_image_is_valid ()" link="libgimp-gimpimage.html#gimp-image-is-valid" since="2.4"/>
    <keyword type="function" name="gimp_image_base_type ()" link="libgimp-gimpimage.html#gimp-image-base-type"/>
    <keyword type="function" name="gimp_image_get_precision ()" link="libgimp-gimpimage.html#gimp-image-get-precision" since="2.10"/>
    <keyword type="function" name="gimp_image_get_default_new_layer_mode ()" link="libgimp-gimpimage.html#gimp-image-get-default-new-layer-mode" since="2.10"/>
    <keyword type="function" name="gimp_image_width ()" link="libgimp-gimpimage.html#gimp-image-width"/>
    <keyword type="function" name="gimp_image_height ()" link="libgimp-gimpimage.html#gimp-image-height"/>
    <keyword type="function" name="gimp_image_free_shadow ()" link="libgimp-gimpimage.html#gimp-image-free-shadow" deprecated="Use gimp_drawable_free_shadow() instead."/>
    <keyword type="function" name="gimp_image_get_layers ()" link="libgimp-gimpimage.html#gimp-image-get-layers"/>
    <keyword type="function" name="gimp_image_get_channels ()" link="libgimp-gimpimage.html#gimp-image-get-channels"/>
    <keyword type="function" name="gimp_image_get_active_drawable ()" link="libgimp-gimpimage.html#gimp-image-get-active-drawable"/>
    <keyword type="function" name="gimp_image_get_floating_sel ()" link="libgimp-gimpimage.html#gimp-image-get-floating-sel"/>
    <keyword type="function" name="gimp_image_floating_sel_attached_to ()" link="libgimp-gimpimage.html#gimp-image-floating-sel-attached-to"/>
    <keyword type="function" name="gimp_image_pick_color ()" link="libgimp-gimpimage.html#gimp-image-pick-color"/>
    <keyword type="function" name="gimp_image_pick_correlate_layer ()" link="libgimp-gimpimage.html#gimp-image-pick-correlate-layer"/>
    <keyword type="function" name="gimp_image_get_item_position ()" link="libgimp-gimpimage.html#gimp-image-get-item-position" since="2.8"/>
    <keyword type="function" name="gimp_image_reorder_item ()" link="libgimp-gimpimage.html#gimp-image-reorder-item" since="2.8"/>
    <keyword type="function" name="gimp_image_raise_item ()" link="libgimp-gimpimage.html#gimp-image-raise-item" since="2.8"/>
    <keyword type="function" name="gimp_image_lower_item ()" link="libgimp-gimpimage.html#gimp-image-lower-item" since="2.8"/>
    <keyword type="function" name="gimp_image_raise_item_to_top ()" link="libgimp-gimpimage.html#gimp-image-raise-item-to-top" since="2.8"/>
    <keyword type="function" name="gimp_image_lower_item_to_bottom ()" link="libgimp-gimpimage.html#gimp-image-lower-item-to-bottom" since="2.8"/>
    <keyword type="function" name="gimp_image_add_layer ()" link="libgimp-gimpimage.html#gimp-image-add-layer" deprecated="Use gimp_image_insert_layer() instead."/>
    <keyword type="function" name="gimp_image_insert_layer ()" link="libgimp-gimpimage.html#gimp-image-insert-layer"/>
    <keyword type="function" name="gimp_image_remove_layer ()" link="libgimp-gimpimage.html#gimp-image-remove-layer"/>
    <keyword type="function" name="gimp_image_freeze_layers ()" link="libgimp-gimpimage.html#gimp-image-freeze-layers" since="2.10.2"/>
    <keyword type="function" name="gimp_image_thaw_layers ()" link="libgimp-gimpimage.html#gimp-image-thaw-layers" since="2.10.2"/>
    <keyword type="function" name="gimp_image_raise_layer ()" link="libgimp-gimpimage.html#gimp-image-raise-layer" deprecated="Use gimp_image_raise_item() instead."/>
    <keyword type="function" name="gimp_image_lower_layer ()" link="libgimp-gimpimage.html#gimp-image-lower-layer" deprecated="Use gimp_image_lower_item() instead."/>
    <keyword type="function" name="gimp_image_raise_layer_to_top ()" link="libgimp-gimpimage.html#gimp-image-raise-layer-to-top" deprecated="Use gimp_image_raise_item_to_top() instead."/>
    <keyword type="function" name="gimp_image_lower_layer_to_bottom ()" link="libgimp-gimpimage.html#gimp-image-lower-layer-to-bottom" deprecated="Use gimp_image_lower_item_to_bottom() instead."/>
    <keyword type="function" name="gimp_image_get_layer_position ()" link="libgimp-gimpimage.html#gimp-image-get-layer-position" deprecated="Use gimp_image_get_item_position() instead." since="2.4"/>
    <keyword type="function" name="gimp_image_add_channel ()" link="libgimp-gimpimage.html#gimp-image-add-channel" deprecated="Use gimp_image_insert_channel() instead."/>
    <keyword type="function" name="gimp_image_insert_channel ()" link="libgimp-gimpimage.html#gimp-image-insert-channel"/>
    <keyword type="function" name="gimp_image_remove_channel ()" link="libgimp-gimpimage.html#gimp-image-remove-channel"/>
    <keyword type="function" name="gimp_image_freeze_channels ()" link="libgimp-gimpimage.html#gimp-image-freeze-channels" since="2.10.2"/>
    <keyword type="function" name="gimp_image_thaw_channels ()" link="libgimp-gimpimage.html#gimp-image-thaw-channels" since="2.10.2"/>
    <keyword type="function" name="gimp_image_raise_channel ()" link="libgimp-gimpimage.html#gimp-image-raise-channel" deprecated="Use gimp_image_raise_item() instead."/>
    <keyword type="function" name="gimp_image_lower_channel ()" link="libgimp-gimpimage.html#gimp-image-lower-channel" deprecated="Use gimp_image_lower_item() instead."/>
    <keyword type="function" name="gimp_image_get_channel_position ()" link="libgimp-gimpimage.html#gimp-image-get-channel-position" deprecated="Use gimp_image_get_item_position() instead." since="2.4"/>
    <keyword type="function" name="gimp_image_flatten ()" link="libgimp-gimpimage.html#gimp-image-flatten"/>
    <keyword type="function" name="gimp_image_merge_visible_layers ()" link="libgimp-gimpimage.html#gimp-image-merge-visible-layers"/>
    <keyword type="function" name="gimp_image_merge_down ()" link="libgimp-gimpimage.html#gimp-image-merge-down"/>
    <keyword type="function" name="gimp_image_merge_layer_group ()" link="libgimp-gimpimage.html#gimp-image-merge-layer-group" since="2.10.14"/>
    <keyword type="function" name="gimp_image_clean_all ()" link="libgimp-gimpimage.html#gimp-image-clean-all"/>
    <keyword type="function" name="gimp_image_is_dirty ()" link="libgimp-gimpimage.html#gimp-image-is-dirty"/>
    <keyword type="function" name="gimp_image_get_active_layer ()" link="libgimp-gimpimage.html#gimp-image-get-active-layer"/>
    <keyword type="function" name="gimp_image_set_active_layer ()" link="libgimp-gimpimage.html#gimp-image-set-active-layer"/>
    <keyword type="function" name="gimp_image_get_active_channel ()" link="libgimp-gimpimage.html#gimp-image-get-active-channel"/>
    <keyword type="function" name="gimp_image_set_active_channel ()" link="libgimp-gimpimage.html#gimp-image-set-active-channel"/>
    <keyword type="function" name="gimp_image_unset_active_channel ()" link="libgimp-gimpimage.html#gimp-image-unset-active-channel"/>
    <keyword type="function" name="gimp_image_get_selection ()" link="libgimp-gimpimage.html#gimp-image-get-selection"/>
    <keyword type="function" name="gimp_image_get_component_active ()" link="libgimp-gimpimage.html#gimp-image-get-component-active"/>
    <keyword type="function" name="gimp_image_set_component_active ()" link="libgimp-gimpimage.html#gimp-image-set-component-active"/>
    <keyword type="function" name="gimp_image_get_component_visible ()" link="libgimp-gimpimage.html#gimp-image-get-component-visible"/>
    <keyword type="function" name="gimp_image_set_component_visible ()" link="libgimp-gimpimage.html#gimp-image-set-component-visible"/>
    <keyword type="function" name="gimp_image_get_filename ()" link="libgimp-gimpimage.html#gimp-image-get-filename"/>
    <keyword type="function" name="gimp_image_set_filename ()" link="libgimp-gimpimage.html#gimp-image-set-filename"/>
    <keyword type="function" name="gimp_image_get_name ()" link="libgimp-gimpimage.html#gimp-image-get-name"/>
    <keyword type="function" name="gimp_image_get_resolution ()" link="libgimp-gimpimage.html#gimp-image-get-resolution"/>
    <keyword type="function" name="gimp_image_set_resolution ()" link="libgimp-gimpimage.html#gimp-image-set-resolution"/>
    <keyword type="function" name="gimp_image_get_unit ()" link="libgimp-gimpimage.html#gimp-image-get-unit"/>
    <keyword type="function" name="gimp_image_set_unit ()" link="libgimp-gimpimage.html#gimp-image-set-unit"/>
    <keyword type="function" name="gimp_image_set_tattoo_state ()" link="libgimp-gimpimage.html#gimp-image-set-tattoo-state"/>
    <keyword type="function" name="gimp_image_get_tattoo_state ()" link="libgimp-gimpimage.html#gimp-image-get-tattoo-state"/>
    <keyword type="function" name="gimp_image_get_layer_by_tattoo ()" link="libgimp-gimpimage.html#gimp-image-get-layer-by-tattoo"/>
    <keyword type="function" name="gimp_image_get_channel_by_tattoo ()" link="libgimp-gimpimage.html#gimp-image-get-channel-by-tattoo"/>
    <keyword type="function" name="gimp_image_get_vectors_by_tattoo ()" link="libgimp-gimpimage.html#gimp-image-get-vectors-by-tattoo" since="2.6"/>
    <keyword type="function" name="gimp_image_get_layer_by_name ()" link="libgimp-gimpimage.html#gimp-image-get-layer-by-name" since="2.8"/>
    <keyword type="function" name="gimp_image_get_channel_by_name ()" link="libgimp-gimpimage.html#gimp-image-get-channel-by-name" since="2.8"/>
    <keyword type="function" name="gimp_image_get_vectors_by_name ()" link="libgimp-gimpimage.html#gimp-image-get-vectors-by-name" since="2.8"/>
    <keyword type="function" name="gimp_image_get_cmap ()" link="libgimp-gimpimage.html#gimp-image-get-cmap" deprecated="Use gimp_image_get_colormap() instead."/>
    <keyword type="function" name="gimp_image_set_cmap ()" link="libgimp-gimpimage.html#gimp-image-set-cmap" deprecated="Use gimp_image_set_colormap() instead."/>
    <keyword type="function" name="gimp_image_get_colormap ()" link="libgimp-gimpimage.html#gimp-image-get-colormap"/>
    <keyword type="function" name="gimp_image_set_colormap ()" link="libgimp-gimpimage.html#gimp-image-set-colormap"/>
    <keyword type="function" name="gimp_image_get_vectors ()" link="libgimp-gimpimage.html#gimp-image-get-vectors" since="2.4"/>
    <keyword type="function" name="gimp_image_get_thumbnail_data ()" link="libgimp-gimpimage.html#gimp-image-get-thumbnail-data"/>
    <keyword type="function" name="gimp_image_get_metadata ()" link="libgimp-gimpimage.html#gimp-image-get-metadata" since="2.10"/>
    <keyword type="function" name="gimp_image_set_metadata ()" link="libgimp-gimpimage.html#gimp-image-set-metadata" since="2.10"/>
    <keyword type="function" name="gimp_image_attach_parasite ()" link="libgimp-gimpimage.html#gimp-image-attach-parasite" since="2.8"/>
    <keyword type="function" name="gimp_image_detach_parasite ()" link="libgimp-gimpimage.html#gimp-image-detach-parasite" since="2.8"/>
    <keyword type="function" name="gimp_image_get_parasite ()" link="libgimp-gimpimage.html#gimp-image-get-parasite" since="2.8"/>
    <keyword type="function" name="gimp_image_get_parasite_list ()" link="libgimp-gimpimage.html#gimp-image-get-parasite-list" since="2.8"/>
    <keyword type="function" name="gimp_image_parasite_find ()" link="libgimp-gimpimage.html#gimp-image-parasite-find" deprecated="Use gimp_image_get_parasite() instead."/>
    <keyword type="function" name="gimp_image_parasite_list ()" link="libgimp-gimpimage.html#gimp-image-parasite-list" deprecated="Use gimp_image_get_parasite_list() instead."/>
    <keyword type="function" name="gimp_image_parasite_attach ()" link="libgimp-gimpimage.html#gimp-image-parasite-attach" deprecated="Use gimp_image_attach_parasite() instead."/>
    <keyword type="function" name="gimp_image_parasite_detach ()" link="libgimp-gimpimage.html#gimp-image-parasite-detach" deprecated="Use gimp_image_detach_parasite() instead."/>
    <keyword type="function" name="gimp_image_attach_new_parasite ()" link="libgimp-gimpimage.html#gimp-image-attach-new-parasite" deprecated="Use gimp_image_attach_parasite() instead."/>
    <keyword type="function" name="gimp_image_add_vectors ()" link="libgimp-gimpimage.html#gimp-image-add-vectors" deprecated="Use gimp_image_insert_vectors() instead."/>
    <keyword type="function" name="gimp_image_insert_vectors ()" link="libgimp-gimpimage.html#gimp-image-insert-vectors"/>
    <keyword type="function" name="gimp_image_remove_vectors ()" link="libgimp-gimpimage.html#gimp-image-remove-vectors" since="2.4"/>
    <keyword type="function" name="gimp_image_freeze_vectors ()" link="libgimp-gimpimage.html#gimp-image-freeze-vectors" since="2.10.2"/>
    <keyword type="function" name="gimp_image_thaw_vectors ()" link="libgimp-gimpimage.html#gimp-image-thaw-vectors" since="2.10.2"/>
    <keyword type="function" name="gimp_image_get_active_vectors ()" link="libgimp-gimpimage.html#gimp-image-get-active-vectors"/>
    <keyword type="function" name="gimp_image_set_active_vectors ()" link="libgimp-gimpimage.html#gimp-image-set-active-vectors"/>
    <keyword type="function" name="gimp_image_lower_vectors ()" link="libgimp-gimpimage.html#gimp-image-lower-vectors" deprecated="Use gimp_image_lower_item() instead." since="2.4"/>
    <keyword type="function" name="gimp_image_raise_vectors ()" link="libgimp-gimpimage.html#gimp-image-raise-vectors" deprecated="Use gimp_image_raise_item() instead." since="2.4"/>
    <keyword type="function" name="gimp_image_lower_vectors_to_bottom ()" link="libgimp-gimpimage.html#gimp-image-lower-vectors-to-bottom" deprecated="Use gimp_image_lower_item_to_bottom() instead." since="2.4"/>
    <keyword type="function" name="gimp_image_raise_vectors_to_top ()" link="libgimp-gimpimage.html#gimp-image-raise-vectors-to-top" deprecated="Use gimp_image_raise_item_to_top() instead." since="2.4"/>
    <keyword type="function" name="gimp_image_get_vectors_position ()" link="libgimp-gimpimage.html#gimp-image-get-vectors-position" deprecated="Use gimp_image_get_item_position() instead." since="2.4"/>
    <keyword type="function" name="gimp_image_get_color_profile ()" link="libgimp-gimpimagecolorprofile.html#gimp-image-get-color-profile" since="2.10"/>
    <keyword type="function" name="gimp_image_set_color_profile ()" link="libgimp-gimpimagecolorprofile.html#gimp-image-set-color-profile" since="2.10"/>
    <keyword type="function" name="gimp_image_set_color_profile_from_file ()" link="libgimp-gimpimagecolorprofile.html#gimp-image-set-color-profile-from-file" since="2.10"/>
    <keyword type="function" name="gimp_image_get_effective_color_profile ()" link="libgimp-gimpimagecolorprofile.html#gimp-image-get-effective-color-profile" since="2.10"/>
    <keyword type="function" name="gimp_image_convert_color_profile ()" link="libgimp-gimpimagecolorprofile.html#gimp-image-convert-color-profile" since="2.10"/>
    <keyword type="function" name="gimp_image_convert_color_profile_from_file ()" link="libgimp-gimpimagecolorprofile.html#gimp-image-convert-color-profile-from-file" since="2.10"/>
    <keyword type="function" name="gimp_image_convert_rgb ()" link="libgimp-gimpimageconvert.html#gimp-image-convert-rgb"/>
    <keyword type="function" name="gimp_image_convert_grayscale ()" link="libgimp-gimpimageconvert.html#gimp-image-convert-grayscale"/>
    <keyword type="function" name="gimp_image_convert_indexed ()" link="libgimp-gimpimageconvert.html#gimp-image-convert-indexed"/>
    <keyword type="function" name="gimp_image_convert_set_dither_matrix ()" link="libgimp-gimpimageconvert.html#gimp-image-convert-set-dither-matrix" since="2.4"/>
    <keyword type="function" name="gimp_image_convert_precision ()" link="libgimp-gimpimageconvert.html#gimp-image-convert-precision" since="2.10"/>
    <keyword type="function" name="gimp_image_grid_get_spacing ()" link="libgimp-gimpimagegrid.html#gimp-image-grid-get-spacing" since="2.4"/>
    <keyword type="function" name="gimp_image_grid_set_spacing ()" link="libgimp-gimpimagegrid.html#gimp-image-grid-set-spacing" since="2.4"/>
    <keyword type="function" name="gimp_image_grid_get_offset ()" link="libgimp-gimpimagegrid.html#gimp-image-grid-get-offset" since="2.4"/>
    <keyword type="function" name="gimp_image_grid_set_offset ()" link="libgimp-gimpimagegrid.html#gimp-image-grid-set-offset" since="2.4"/>
    <keyword type="function" name="gimp_image_grid_get_foreground_color ()" link="libgimp-gimpimagegrid.html#gimp-image-grid-get-foreground-color" since="2.4"/>
    <keyword type="function" name="gimp_image_grid_set_foreground_color ()" link="libgimp-gimpimagegrid.html#gimp-image-grid-set-foreground-color" since="2.4"/>
    <keyword type="function" name="gimp_image_grid_get_background_color ()" link="libgimp-gimpimagegrid.html#gimp-image-grid-get-background-color" since="2.4"/>
    <keyword type="function" name="gimp_image_grid_set_background_color ()" link="libgimp-gimpimagegrid.html#gimp-image-grid-set-background-color" since="2.4"/>
    <keyword type="function" name="gimp_image_grid_get_style ()" link="libgimp-gimpimagegrid.html#gimp-image-grid-get-style" since="2.4"/>
    <keyword type="function" name="gimp_image_grid_set_style ()" link="libgimp-gimpimagegrid.html#gimp-image-grid-set-style" since="2.4"/>
    <keyword type="function" name="gimp_image_add_hguide ()" link="libgimp-gimpimageguides.html#gimp-image-add-hguide"/>
    <keyword type="function" name="gimp_image_add_vguide ()" link="libgimp-gimpimageguides.html#gimp-image-add-vguide"/>
    <keyword type="function" name="gimp_image_delete_guide ()" link="libgimp-gimpimageguides.html#gimp-image-delete-guide"/>
    <keyword type="function" name="gimp_image_find_next_guide ()" link="libgimp-gimpimageguides.html#gimp-image-find-next-guide"/>
    <keyword type="function" name="gimp_image_get_guide_orientation ()" link="libgimp-gimpimageguides.html#gimp-image-get-guide-orientation"/>
    <keyword type="function" name="gimp_image_get_guide_position ()" link="libgimp-gimpimageguides.html#gimp-image-get-guide-position"/>
    <keyword type="function" name="gimp_image_add_sample_point ()" link="libgimp-gimpimagesamplepoints.html#gimp-image-add-sample-point" since="2.10"/>
    <keyword type="function" name="gimp_image_delete_sample_point ()" link="libgimp-gimpimagesamplepoints.html#gimp-image-delete-sample-point" since="2.10"/>
    <keyword type="function" name="gimp_image_find_next_sample_point ()" link="libgimp-gimpimagesamplepoints.html#gimp-image-find-next-sample-point" since="2.10"/>
    <keyword type="function" name="gimp_image_get_sample_point_position ()" link="libgimp-gimpimagesamplepoints.html#gimp-image-get-sample-point-position" since="2.10"/>
    <keyword type="function" name="gimp_image_select_color ()" link="libgimp-gimpimageselect.html#gimp-image-select-color" since="2.8"/>
    <keyword type="function" name="gimp_image_select_contiguous_color ()" link="libgimp-gimpimageselect.html#gimp-image-select-contiguous-color" since="2.8"/>
    <keyword type="function" name="gimp_image_select_rectangle ()" link="libgimp-gimpimageselect.html#gimp-image-select-rectangle" since="2.8"/>
    <keyword type="function" name="gimp_image_select_round_rectangle ()" link="libgimp-gimpimageselect.html#gimp-image-select-round-rectangle" since="2.8"/>
    <keyword type="function" name="gimp_image_select_ellipse ()" link="libgimp-gimpimageselect.html#gimp-image-select-ellipse" since="2.8"/>
    <keyword type="function" name="gimp_image_select_polygon ()" link="libgimp-gimpimageselect.html#gimp-image-select-polygon" since="2.8"/>
    <keyword type="function" name="gimp_image_select_item ()" link="libgimp-gimpimageselect.html#gimp-image-select-item" since="2.8"/>
    <keyword type="function" name="gimp_image_resize ()" link="libgimp-gimpimagetransform.html#gimp-image-resize"/>
    <keyword type="function" name="gimp_image_resize_to_layers ()" link="libgimp-gimpimagetransform.html#gimp-image-resize-to-layers" since="2.2"/>
    <keyword type="function" name="gimp_image_scale ()" link="libgimp-gimpimagetransform.html#gimp-image-scale"/>
    <keyword type="function" name="gimp_image_scale_full ()" link="libgimp-gimpimagetransform.html#gimp-image-scale-full" deprecated="Use gimp_image_scale() instead." since="2.6"/>
    <keyword type="function" name="gimp_image_crop ()" link="libgimp-gimpimagetransform.html#gimp-image-crop"/>
    <keyword type="function" name="gimp_image_flip ()" link="libgimp-gimpimagetransform.html#gimp-image-flip"/>
    <keyword type="function" name="gimp_image_rotate ()" link="libgimp-gimpimagetransform.html#gimp-image-rotate"/>
    <keyword type="function" name="gimp_image_undo_group_start ()" link="libgimp-gimpimageundo.html#gimp-image-undo-group-start"/>
    <keyword type="function" name="gimp_image_undo_group_end ()" link="libgimp-gimpimageundo.html#gimp-image-undo-group-end"/>
    <keyword type="function" name="gimp_image_undo_is_enabled ()" link="libgimp-gimpimageundo.html#gimp-image-undo-is-enabled"/>
    <keyword type="function" name="gimp_image_undo_disable ()" link="libgimp-gimpimageundo.html#gimp-image-undo-disable"/>
    <keyword type="function" name="gimp_image_undo_enable ()" link="libgimp-gimpimageundo.html#gimp-image-undo-enable"/>
    <keyword type="function" name="gimp_image_undo_freeze ()" link="libgimp-gimpimageundo.html#gimp-image-undo-freeze"/>
    <keyword type="function" name="gimp_image_undo_thaw ()" link="libgimp-gimpimageundo.html#gimp-image-undo-thaw"/>
    <keyword type="function" name="gimp_image_metadata_load_prepare ()" link="libgimp-gimpmetadata.html#gimp-image-metadata-load-prepare" since="2.10"/>
    <keyword type="function" name="gimp_image_metadata_load_finish ()" link="libgimp-gimpmetadata.html#gimp-image-metadata-load-finish" since="2.10"/>
    <keyword type="function" name="gimp_image_metadata_save_prepare ()" link="libgimp-gimpmetadata.html#gimp-image-metadata-save-prepare" since="2.10"/>
    <keyword type="function" name="gimp_image_metadata_save_finish ()" link="libgimp-gimpmetadata.html#gimp-image-metadata-save-finish" since="2.10"/>
    <keyword type="function" name="gimp_image_metadata_load_thumbnail ()" link="libgimp-gimpmetadata.html#gimp-image-metadata-load-thumbnail"/>
    <keyword type="function" name="gimp_item_is_valid ()" link="libgimp-gimpitem.html#gimp-item-is-valid" since="2.8"/>
    <keyword type="function" name="gimp_item_get_image ()" link="libgimp-gimpitem.html#gimp-item-get-image" since="2.8"/>
    <keyword type="function" name="gimp_item_delete ()" link="libgimp-gimpitem.html#gimp-item-delete" since="2.8"/>
    <keyword type="function" name="gimp_item_is_drawable ()" link="libgimp-gimpitem.html#gimp-item-is-drawable" since="2.8"/>
    <keyword type="function" name="gimp_item_is_layer ()" link="libgimp-gimpitem.html#gimp-item-is-layer" since="2.8"/>
    <keyword type="function" name="gimp_item_is_text_layer ()" link="libgimp-gimpitem.html#gimp-item-is-text-layer" since="2.8"/>
    <keyword type="function" name="gimp_item_is_channel ()" link="libgimp-gimpitem.html#gimp-item-is-channel" since="2.8"/>
    <keyword type="function" name="gimp_item_is_layer_mask ()" link="libgimp-gimpitem.html#gimp-item-is-layer-mask" since="2.8"/>
    <keyword type="function" name="gimp_item_is_selection ()" link="libgimp-gimpitem.html#gimp-item-is-selection" since="2.8"/>
    <keyword type="function" name="gimp_item_is_vectors ()" link="libgimp-gimpitem.html#gimp-item-is-vectors" since="2.8"/>
    <keyword type="function" name="gimp_item_is_group ()" link="libgimp-gimpitem.html#gimp-item-is-group" since="2.8"/>
    <keyword type="function" name="gimp_item_get_parent ()" link="libgimp-gimpitem.html#gimp-item-get-parent" since="2.8"/>
    <keyword type="function" name="gimp_item_get_children ()" link="libgimp-gimpitem.html#gimp-item-get-children" since="2.8"/>
    <keyword type="function" name="gimp_item_get_expanded ()" link="libgimp-gimpitem.html#gimp-item-get-expanded" since="2.10"/>
    <keyword type="function" name="gimp_item_set_expanded ()" link="libgimp-gimpitem.html#gimp-item-set-expanded" since="2.10"/>
    <keyword type="function" name="gimp_item_get_name ()" link="libgimp-gimpitem.html#gimp-item-get-name" since="2.8"/>
    <keyword type="function" name="gimp_item_set_name ()" link="libgimp-gimpitem.html#gimp-item-set-name" since="2.8"/>
    <keyword type="function" name="gimp_item_get_visible ()" link="libgimp-gimpitem.html#gimp-item-get-visible" since="2.8"/>
    <keyword type="function" name="gimp_item_set_visible ()" link="libgimp-gimpitem.html#gimp-item-set-visible" since="2.8"/>
    <keyword type="function" name="gimp_item_get_linked ()" link="libgimp-gimpitem.html#gimp-item-get-linked" since="2.8"/>
    <keyword type="function" name="gimp_item_set_linked ()" link="libgimp-gimpitem.html#gimp-item-set-linked" since="2.8"/>
    <keyword type="function" name="gimp_item_get_lock_content ()" link="libgimp-gimpitem.html#gimp-item-get-lock-content" since="2.8"/>
    <keyword type="function" name="gimp_item_set_lock_content ()" link="libgimp-gimpitem.html#gimp-item-set-lock-content" since="2.8"/>
    <keyword type="function" name="gimp_item_get_lock_position ()" link="libgimp-gimpitem.html#gimp-item-get-lock-position" since="2.10"/>
    <keyword type="function" name="gimp_item_set_lock_position ()" link="libgimp-gimpitem.html#gimp-item-set-lock-position" since="2.10"/>
    <keyword type="function" name="gimp_item_get_color_tag ()" link="libgimp-gimpitem.html#gimp-item-get-color-tag" since="2.10"/>
    <keyword type="function" name="gimp_item_set_color_tag ()" link="libgimp-gimpitem.html#gimp-item-set-color-tag" since="2.10"/>
    <keyword type="function" name="gimp_item_get_tattoo ()" link="libgimp-gimpitem.html#gimp-item-get-tattoo" since="2.8"/>
    <keyword type="function" name="gimp_item_set_tattoo ()" link="libgimp-gimpitem.html#gimp-item-set-tattoo" since="2.8"/>
    <keyword type="function" name="gimp_item_attach_parasite ()" link="libgimp-gimpitem.html#gimp-item-attach-parasite" since="2.8"/>
    <keyword type="function" name="gimp_item_detach_parasite ()" link="libgimp-gimpitem.html#gimp-item-detach-parasite" since="2.8"/>
    <keyword type="function" name="gimp_item_get_parasite ()" link="libgimp-gimpitem.html#gimp-item-get-parasite" since="2.8"/>
    <keyword type="function" name="gimp_item_get_parasite_list ()" link="libgimp-gimpitem.html#gimp-item-get-parasite-list" since="2.8"/>
    <keyword type="function" name="gimp_item_transform_translate ()" link="libgimp-gimpitemtransform.html#gimp-item-transform-translate" since="2.10"/>
    <keyword type="function" name="gimp_item_transform_flip_simple ()" link="libgimp-gimpitemtransform.html#gimp-item-transform-flip-simple" since="2.2"/>
    <keyword type="function" name="gimp_item_transform_flip ()" link="libgimp-gimpitemtransform.html#gimp-item-transform-flip" since="2.8"/>
    <keyword type="function" name="gimp_item_transform_perspective ()" link="libgimp-gimpitemtransform.html#gimp-item-transform-perspective" since="2.8"/>
    <keyword type="function" name="gimp_item_transform_rotate_simple ()" link="libgimp-gimpitemtransform.html#gimp-item-transform-rotate-simple" since="2.8"/>
    <keyword type="function" name="gimp_item_transform_rotate ()" link="libgimp-gimpitemtransform.html#gimp-item-transform-rotate" since="2.8"/>
    <keyword type="function" name="gimp_item_transform_scale ()" link="libgimp-gimpitemtransform.html#gimp-item-transform-scale" since="2.8"/>
    <keyword type="function" name="gimp_item_transform_shear ()" link="libgimp-gimpitemtransform.html#gimp-item-transform-shear" since="2.8"/>
    <keyword type="function" name="gimp_item_transform_2d ()" link="libgimp-gimpitemtransform.html#gimp-item-transform-2d" since="2.8"/>
    <keyword type="function" name="gimp_item_transform_matrix ()" link="libgimp-gimpitemtransform.html#gimp-item-transform-matrix" since="2.8"/>
    <keyword type="function" name="gimp_layer_new ()" link="libgimp-gimplayer.html#gimp-layer-new"/>
    <keyword type="function" name="gimp_layer_new_from_drawable ()" link="libgimp-gimplayer.html#gimp-layer-new-from-drawable"/>
    <keyword type="function" name="gimp_layer_new_from_visible ()" link="libgimp-gimplayer.html#gimp-layer-new-from-visible" since="2.6"/>
    <keyword type="function" name="gimp_layer_new_from_pixbuf ()" link="libgimp-gimplayer.html#gimp-layer-new-from-pixbuf" since="2.4"/>
    <keyword type="function" name="gimp_layer_new_from_surface ()" link="libgimp-gimplayer.html#gimp-layer-new-from-surface" since="2.8"/>
    <keyword type="function" name="gimp_layer_group_new ()" link="libgimp-gimplayer.html#gimp-layer-group-new" since="2.8"/>
    <keyword type="function" name="gimp_layer_copy ()" link="libgimp-gimplayer.html#gimp-layer-copy"/>
    <keyword type="function" name="gimp_layer_scale ()" link="libgimp-gimplayer.html#gimp-layer-scale"/>
    <keyword type="function" name="gimp_layer_scale_full ()" link="libgimp-gimplayer.html#gimp-layer-scale-full" deprecated="Use gimp_layer_scale() instead." since="2.6"/>
    <keyword type="function" name="gimp_layer_resize ()" link="libgimp-gimplayer.html#gimp-layer-resize"/>
    <keyword type="function" name="gimp_layer_resize_to_image_size ()" link="libgimp-gimplayer.html#gimp-layer-resize-to-image-size"/>
    <keyword type="function" name="gimp_layer_translate ()" link="libgimp-gimplayer.html#gimp-layer-translate" deprecated="Use gimp_item_transform_translate() instead."/>
    <keyword type="function" name="gimp_layer_add_alpha ()" link="libgimp-gimplayer.html#gimp-layer-add-alpha"/>
    <keyword type="function" name="gimp_layer_flatten ()" link="libgimp-gimplayer.html#gimp-layer-flatten" since="2.4"/>
    <keyword type="function" name="gimp_layer_set_offsets ()" link="libgimp-gimplayer.html#gimp-layer-set-offsets"/>
    <keyword type="function" name="gimp_layer_create_mask ()" link="libgimp-gimplayer.html#gimp-layer-create-mask"/>
    <keyword type="function" name="gimp_layer_from_mask ()" link="libgimp-gimplayer.html#gimp-layer-from-mask" since="2.2"/>
    <keyword type="function" name="gimp_layer_get_mask ()" link="libgimp-gimplayer.html#gimp-layer-get-mask"/>
    <keyword type="function" name="gimp_layer_add_mask ()" link="libgimp-gimplayer.html#gimp-layer-add-mask"/>
    <keyword type="function" name="gimp_layer_remove_mask ()" link="libgimp-gimplayer.html#gimp-layer-remove-mask"/>
    <keyword type="function" name="gimp_layer_is_floating_sel ()" link="libgimp-gimplayer.html#gimp-layer-is-floating-sel"/>
    <keyword type="function" name="gimp_layer_get_lock_alpha ()" link="libgimp-gimplayer.html#gimp-layer-get-lock-alpha"/>
    <keyword type="function" name="gimp_layer_set_lock_alpha ()" link="libgimp-gimplayer.html#gimp-layer-set-lock-alpha"/>
    <keyword type="function" name="gimp_layer_get_preserve_trans ()" link="libgimp-gimplayer.html#gimp-layer-get-preserve-trans" deprecated=""/>
    <keyword type="function" name="gimp_layer_set_preserve_trans ()" link="libgimp-gimplayer.html#gimp-layer-set-preserve-trans" deprecated=""/>
    <keyword type="function" name="gimp_layer_get_apply_mask ()" link="libgimp-gimplayer.html#gimp-layer-get-apply-mask"/>
    <keyword type="function" name="gimp_layer_set_apply_mask ()" link="libgimp-gimplayer.html#gimp-layer-set-apply-mask"/>
    <keyword type="function" name="gimp_layer_get_show_mask ()" link="libgimp-gimplayer.html#gimp-layer-get-show-mask"/>
    <keyword type="function" name="gimp_layer_set_show_mask ()" link="libgimp-gimplayer.html#gimp-layer-set-show-mask"/>
    <keyword type="function" name="gimp_layer_get_edit_mask ()" link="libgimp-gimplayer.html#gimp-layer-get-edit-mask"/>
    <keyword type="function" name="gimp_layer_set_edit_mask ()" link="libgimp-gimplayer.html#gimp-layer-set-edit-mask"/>
    <keyword type="function" name="gimp_layer_get_opacity ()" link="libgimp-gimplayer.html#gimp-layer-get-opacity"/>
    <keyword type="function" name="gimp_layer_set_opacity ()" link="libgimp-gimplayer.html#gimp-layer-set-opacity"/>
    <keyword type="function" name="gimp_layer_get_mode ()" link="libgimp-gimplayer.html#gimp-layer-get-mode"/>
    <keyword type="function" name="gimp_layer_set_mode ()" link="libgimp-gimplayer.html#gimp-layer-set-mode"/>
    <keyword type="function" name="gimp_layer_get_blend_space ()" link="libgimp-gimplayer.html#gimp-layer-get-blend-space" since="2.10"/>
    <keyword type="function" name="gimp_layer_set_blend_space ()" link="libgimp-gimplayer.html#gimp-layer-set-blend-space" since="2.10"/>
    <keyword type="function" name="gimp_layer_get_composite_space ()" link="libgimp-gimplayer.html#gimp-layer-get-composite-space" since="2.10"/>
    <keyword type="function" name="gimp_layer_set_composite_space ()" link="libgimp-gimplayer.html#gimp-layer-set-composite-space" since="2.10"/>
    <keyword type="function" name="gimp_layer_get_composite_mode ()" link="libgimp-gimplayer.html#gimp-layer-get-composite-mode" since="2.10"/>
    <keyword type="function" name="gimp_layer_set_composite_mode ()" link="libgimp-gimplayer.html#gimp-layer-set-composite-mode" since="2.10"/>
    <keyword type="function" name="gimp_path_list ()" link="libgimp-gimppaths.html#gimp-path-list" deprecated="Use gimp_image_get_vectors() instead."/>
    <keyword type="function" name="gimp_path_get_points ()" link="libgimp-gimppaths.html#gimp-path-get-points" deprecated="Use gimp_vectors_stroke_get_points() instead."/>
    <keyword type="function" name="gimp_path_get_current ()" link="libgimp-gimppaths.html#gimp-path-get-current" deprecated="Use gimp_image_get_active_vectors() instead."/>
    <keyword type="function" name="gimp_path_set_current ()" link="libgimp-gimppaths.html#gimp-path-set-current" deprecated="Use gimp_image_set_active_vectors() instead."/>
    <keyword type="function" name="gimp_path_set_points ()" link="libgimp-gimppaths.html#gimp-path-set-points" deprecated="Use gimp_vectors_stroke_new_from_points() instead."/>
    <keyword type="function" name="gimp_path_stroke_current ()" link="libgimp-gimppaths.html#gimp-path-stroke-current" deprecated="Use gimp_edit_stroke_vectors() instead."/>
    <keyword type="function" name="gimp_path_get_point_at_dist ()" link="libgimp-gimppaths.html#gimp-path-get-point-at-dist" deprecated="Use gimp_vectors_stroke_get_point_at_dist() instead."/>
    <keyword type="function" name="gimp_path_get_tattoo ()" link="libgimp-gimppaths.html#gimp-path-get-tattoo" deprecated="Use gimp_vectors_get_tattoo() instead."/>
    <keyword type="function" name="gimp_get_path_by_tattoo ()" link="libgimp-gimppaths.html#gimp-get-path-by-tattoo" deprecated="Use gimp_image_get_vectors_by_tattoo() instead."/>
    <keyword type="function" name="gimp_path_delete ()" link="libgimp-gimppaths.html#gimp-path-delete" deprecated="Use gimp_image_remove_vectors() instead."/>
    <keyword type="function" name="gimp_path_get_locked ()" link="libgimp-gimppaths.html#gimp-path-get-locked" deprecated="Use gimp_vectors_get_linked() instead."/>
    <keyword type="function" name="gimp_path_set_locked ()" link="libgimp-gimppaths.html#gimp-path-set-locked" deprecated="Use gimp_vectors_set_linked() instead."/>
    <keyword type="function" name="gimp_path_set_tattoo ()" link="libgimp-gimppaths.html#gimp-path-set-tattoo" deprecated="Use gimp_vectors_set_tattoo() instead."/>
    <keyword type="function" name="gimp_path_to_selection ()" link="libgimp-gimppaths.html#gimp-path-to-selection" deprecated="Use gimp_vectors_to_selection() instead."/>
    <keyword type="function" name="gimp_path_import ()" link="libgimp-gimppaths.html#gimp-path-import" deprecated="Use gimp_vectors_import_from_file() instead."/>
    <keyword type="function" name="gimp_image_get_thumbnail ()" link="libgimp-gimppixbuf.html#gimp-image-get-thumbnail" since="2.2"/>
    <keyword type="function" name="gimp_drawable_get_thumbnail ()" link="libgimp-gimppixbuf.html#gimp-drawable-get-thumbnail" since="2.2"/>
    <keyword type="function" name="gimp_drawable_get_sub_thumbnail ()" link="libgimp-gimppixbuf.html#gimp-drawable-get-sub-thumbnail" since="2.2"/>
    <keyword type="enum" name="enum GimpPixbufTransparency" link="libgimp-gimppixbuf.html#GimpPixbufTransparency"/>
    <keyword type="function" name="gimp_pixel_fetcher_new ()" link="libgimp-gimppixelfetcher.html#gimp-pixel-fetcher-new" deprecated=""/>
    <keyword type="function" name="gimp_pixel_fetcher_set_edge_mode ()" link="libgimp-gimppixelfetcher.html#gimp-pixel-fetcher-set-edge-mode" deprecated=""/>
    <keyword type="function" name="gimp_pixel_fetcher_set_bg_color ()" link="libgimp-gimppixelfetcher.html#gimp-pixel-fetcher-set-bg-color" deprecated=""/>
    <keyword type="function" name="gimp_pixel_fetcher_get_pixel ()" link="libgimp-gimppixelfetcher.html#gimp-pixel-fetcher-get-pixel" deprecated=""/>
    <keyword type="function" name="gimp_pixel_fetcher_put_pixel ()" link="libgimp-gimppixelfetcher.html#gimp-pixel-fetcher-put-pixel" deprecated=""/>
    <keyword type="function" name="gimp_pixel_fetcher_destroy ()" link="libgimp-gimppixelfetcher.html#gimp-pixel-fetcher-destroy" deprecated=""/>
    <keyword type="enum" name="enum GimpPixelFetcherEdgeMode" link="libgimp-gimppixelfetcher.html#GimpPixelFetcherEdgeMode"/>
    <keyword type="struct" name="GimpPixelFetcher" link="libgimp-gimppixelfetcher.html#GimpPixelFetcher"/>
    <keyword type="function" name="gimp_pixel_rgn_init ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgn-init" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgn_resize ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgn-resize" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgn_get_pixel ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgn-get-pixel" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgn_get_row ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgn-get-row" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgn_get_col ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgn-get-col" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgn_get_rect ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgn-get-rect" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgn_set_pixel ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgn-set-pixel" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgn_set_row ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgn-set-row" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgn_set_col ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgn-set-col" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgn_set_rect ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgn-set-rect" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgns_register ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgns-register" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgns_register2 ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgns-register2" deprecated=""/>
    <keyword type="function" name="gimp_pixel_rgns_process ()" link="libgimp-gimppixelrgn.html#gimp-pixel-rgns-process" deprecated=""/>
    <keyword type="struct" name="GimpPixelRgn" link="libgimp-gimppixelrgn.html#GimpPixelRgn"/>
    <keyword type="function" name="GimpRgnFunc1 ()" link="libgimp-gimpregioniterator.html#GimpRgnFunc1"/>
    <keyword type="function" name="GimpRgnFunc2 ()" link="libgimp-gimpregioniterator.html#GimpRgnFunc2"/>
    <keyword type="function" name="GimpRgnFuncSrc ()" link="libgimp-gimpregioniterator.html#GimpRgnFuncSrc"/>
    <keyword type="function" name="GimpRgnFuncDest ()" link="libgimp-gimpregioniterator.html#GimpRgnFuncDest"/>
    <keyword type="function" name="GimpRgnFuncSrcDest ()" link="libgimp-gimpregioniterator.html#GimpRgnFuncSrcDest"/>
    <keyword type="function" name="gimp_rgn_iterator_new ()" link="libgimp-gimpregioniterator.html#gimp-rgn-iterator-new" deprecated=""/>
    <keyword type="function" name="gimp_rgn_iterator_free ()" link="libgimp-gimpregioniterator.html#gimp-rgn-iterator-free" deprecated=""/>
    <keyword type="function" name="gimp_rgn_iterator_src ()" link="libgimp-gimpregioniterator.html#gimp-rgn-iterator-src" deprecated=""/>
    <keyword type="function" name="gimp_rgn_iterator_dest ()" link="libgimp-gimpregioniterator.html#gimp-rgn-iterator-dest" deprecated=""/>
    <keyword type="function" name="gimp_rgn_iterator_src_dest ()" link="libgimp-gimpregioniterator.html#gimp-rgn-iterator-src-dest" deprecated=""/>
    <keyword type="function" name="gimp_rgn_iterate1 ()" link="libgimp-gimpregioniterator.html#gimp-rgn-iterate1" deprecated=""/>
    <keyword type="function" name="gimp_rgn_iterate2 ()" link="libgimp-gimpregioniterator.html#gimp-rgn-iterate2" deprecated=""/>
    <keyword type="struct" name="GimpRgnIterator" link="libgimp-gimpregioniterator.html#GimpRgnIterator"/>
    <keyword type="function" name="gimp_selection_bounds ()" link="libgimp-gimpselection.html#gimp-selection-bounds"/>
    <keyword type="function" name="gimp_selection_all ()" link="libgimp-gimpselection.html#gimp-selection-all"/>
    <keyword type="function" name="gimp_selection_none ()" link="libgimp-gimpselection.html#gimp-selection-none"/>
    <keyword type="function" name="gimp_selection_clear ()" link="libgimp-gimpselection.html#gimp-selection-clear" deprecated=""/>
    <keyword type="function" name="gimp_selection_is_empty ()" link="libgimp-gimpselection.html#gimp-selection-is-empty"/>
    <keyword type="function" name="gimp_selection_float ()" link="libgimp-gimpselection.html#gimp-selection-float"/>
    <keyword type="function" name="gimp_selection_load ()" link="libgimp-gimpselection.html#gimp-selection-load" deprecated="Use gimp_image_select_item() instead."/>
    <keyword type="function" name="gimp_selection_save ()" link="libgimp-gimpselection.html#gimp-selection-save"/>
    <keyword type="function" name="gimp_selection_value ()" link="libgimp-gimpselection.html#gimp-selection-value"/>
    <keyword type="function" name="gimp_selection_grow ()" link="libgimp-gimpselection.html#gimp-selection-grow"/>
    <keyword type="function" name="gimp_selection_shrink ()" link="libgimp-gimpselection.html#gimp-selection-shrink"/>
    <keyword type="function" name="gimp_selection_invert ()" link="libgimp-gimpselection.html#gimp-selection-invert"/>
    <keyword type="function" name="gimp_selection_feather ()" link="libgimp-gimpselection.html#gimp-selection-feather"/>
    <keyword type="function" name="gimp_selection_sharpen ()" link="libgimp-gimpselection.html#gimp-selection-sharpen"/>
    <keyword type="function" name="gimp_selection_border ()" link="libgimp-gimpselection.html#gimp-selection-border"/>
    <keyword type="function" name="gimp_selection_flood ()" link="libgimp-gimpselection.html#gimp-selection-flood" since="2.10"/>
    <keyword type="function" name="gimp_selection_translate ()" link="libgimp-gimpselection.html#gimp-selection-translate"/>
    <keyword type="function" name="gimp_selection_layer_alpha ()" link="libgimp-gimpselection.html#gimp-selection-layer-alpha" deprecated="Use gimp_image_select_item() instead."/>
    <keyword type="function" name="gimp_selection_combine ()" link="libgimp-gimpselection.html#gimp-selection-combine" deprecated="Use gimp_image_select_item() instead."/>
    <keyword type="function" name="gimp_text_layer_new ()" link="libgimp-gimptextlayer.html#gimp-text-layer-new" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_text ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-text" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_text ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-text" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_markup ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-markup" since="2.8"/>
    <keyword type="function" name="gimp_text_layer_get_font ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-font" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_font ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-font" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_font_size ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-font-size" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_font_size ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-font-size" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_hinting ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-hinting" deprecated="Use gimp_text_layer_get_hint_style() instead."/>
    <keyword type="function" name="gimp_text_layer_set_hinting ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-hinting" deprecated="Use gimp_text_layer_set_hint_style() instead." since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_antialias ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-antialias" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_antialias ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-antialias" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_kerning ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-kerning" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_kerning ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-kerning" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_language ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-language" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_language ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-language" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_base_direction ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-base-direction" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_base_direction ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-base-direction" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_justification ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-justification" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_justification ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-justification" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_color ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-color" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_color ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-color" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_indent ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-indent" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_indent ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-indent" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_line_spacing ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-line-spacing" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_line_spacing ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-line-spacing" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_letter_spacing ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-letter-spacing" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_set_letter_spacing ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-letter-spacing" since="2.6"/>
    <keyword type="function" name="gimp_text_layer_get_hint_style ()" link="libgimp-gimptextlayer.html#gimp-text-layer-get-hint-style" since="2.8"/>
    <keyword type="function" name="gimp_text_layer_set_hint_style ()" link="libgimp-gimptextlayer.html#gimp-text-layer-set-hint-style" since="2.8"/>
    <keyword type="function" name="gimp_text_layer_resize ()" link="libgimp-gimptextlayer.html#gimp-text-layer-resize" since="2.8"/>
    <keyword type="function" name="gimp_text_fontname ()" link="libgimp-gimptexttool.html#gimp-text-fontname"/>
    <keyword type="function" name="gimp_text_get_extents_fontname ()" link="libgimp-gimptexttool.html#gimp-text-get-extents-fontname"/>
    <keyword type="function" name="gimp_text ()" link="libgimp-gimptexttool.html#gimp-text" deprecated="Use gimp_text_fontname() instead."/>
    <keyword type="function" name="gimp_text_get_extents ()" link="libgimp-gimptexttool.html#gimp-text-get-extents" deprecated="Use gimp_text_get_extents_fontname() instead."/>
    <keyword type="function" name="gimp_tile_ref ()" link="libgimp-gimptile.html#gimp-tile-ref" deprecated=""/>
    <keyword type="function" name="gimp_tile_ref_zero ()" link="libgimp-gimptile.html#gimp-tile-ref-zero" deprecated=""/>
    <keyword type="function" name="gimp_tile_unref ()" link="libgimp-gimptile.html#gimp-tile-unref" deprecated=""/>
    <keyword type="function" name="gimp_tile_flush ()" link="libgimp-gimptile.html#gimp-tile-flush" deprecated=""/>
    <keyword type="function" name="gimp_tile_cache_size ()" link="libgimp-gimptile.html#gimp-tile-cache-size" deprecated=""/>
    <keyword type="function" name="gimp_tile_cache_ntiles ()" link="libgimp-gimptile.html#gimp-tile-cache-ntiles" deprecated=""/>
    <keyword type="struct" name="GimpTile" link="libgimp-gimptile.html#GimpTile"/>
    <keyword type="function" name="gimp_airbrush ()" link="libgimp-gimppainttools.html#gimp-airbrush"/>
    <keyword type="function" name="gimp_airbrush_default ()" link="libgimp-gimppainttools.html#gimp-airbrush-default"/>
    <keyword type="function" name="gimp_clone ()" link="libgimp-gimppainttools.html#gimp-clone"/>
    <keyword type="function" name="gimp_clone_default ()" link="libgimp-gimppainttools.html#gimp-clone-default"/>
    <keyword type="function" name="gimp_convolve ()" link="libgimp-gimppainttools.html#gimp-convolve"/>
    <keyword type="function" name="gimp_convolve_default ()" link="libgimp-gimppainttools.html#gimp-convolve-default"/>
    <keyword type="function" name="gimp_dodgeburn ()" link="libgimp-gimppainttools.html#gimp-dodgeburn"/>
    <keyword type="function" name="gimp_dodgeburn_default ()" link="libgimp-gimppainttools.html#gimp-dodgeburn-default"/>
    <keyword type="function" name="gimp_edit_bucket_fill_full ()" link="libgimp-gimppainttools.html#gimp-edit-bucket-fill-full" deprecated="Use gimp_drawable_edit_bucket_fill() instead." since="2.4"/>
    <keyword type="function" name="gimp_eraser ()" link="libgimp-gimppainttools.html#gimp-eraser"/>
    <keyword type="function" name="gimp_eraser_default ()" link="libgimp-gimppainttools.html#gimp-eraser-default"/>
    <keyword type="function" name="gimp_heal ()" link="libgimp-gimppainttools.html#gimp-heal" since="2.4"/>
    <keyword type="function" name="gimp_heal_default ()" link="libgimp-gimppainttools.html#gimp-heal-default" since="2.4"/>
    <keyword type="function" name="gimp_paintbrush ()" link="libgimp-gimppainttools.html#gimp-paintbrush"/>
    <keyword type="function" name="gimp_paintbrush_default ()" link="libgimp-gimppainttools.html#gimp-paintbrush-default"/>
    <keyword type="function" name="gimp_pencil ()" link="libgimp-gimppainttools.html#gimp-pencil"/>
    <keyword type="function" name="gimp_smudge ()" link="libgimp-gimppainttools.html#gimp-smudge"/>
    <keyword type="function" name="gimp_smudge_default ()" link="libgimp-gimppainttools.html#gimp-smudge-default"/>
    <keyword type="function" name="gimp_by_color_select ()" link="libgimp-gimpselectiontools.html#gimp-by-color-select" deprecated="Use gimp_image_select_color() instead."/>
    <keyword type="function" name="gimp_by_color_select_full ()" link="libgimp-gimpselectiontools.html#gimp-by-color-select-full" deprecated="Use gimp_image_select_color() instead." since="2.4"/>
    <keyword type="function" name="gimp_ellipse_select ()" link="libgimp-gimpselectiontools.html#gimp-ellipse-select" deprecated="Use gimp_image_select_ellipse() instead."/>
    <keyword type="function" name="gimp_free_select ()" link="libgimp-gimpselectiontools.html#gimp-free-select" deprecated="Use gimp_image_select_polygon() instead."/>
    <keyword type="function" name="gimp_fuzzy_select ()" link="libgimp-gimpselectiontools.html#gimp-fuzzy-select" deprecated="Use gimp_image_select_contiguous_color() instead."/>
    <keyword type="function" name="gimp_fuzzy_select_full ()" link="libgimp-gimpselectiontools.html#gimp-fuzzy-select-full" deprecated="Use gimp_image_select_contiguous_color() instead." since="2.4"/>
    <keyword type="function" name="gimp_rect_select ()" link="libgimp-gimpselectiontools.html#gimp-rect-select" deprecated="Use gimp_image_select_rectangle() instead."/>
    <keyword type="function" name="gimp_round_rect_select ()" link="libgimp-gimpselectiontools.html#gimp-round-rect-select" deprecated="Use gimp_image_select_round_rectangle() instead." since="2.4"/>
    <keyword type="function" name="gimp_flip ()" link="libgimp-gimptransformtools.html#gimp-flip" deprecated="Use gimp_item_transform_flip_simple() instead."/>
    <keyword type="function" name="gimp_perspective ()" link="libgimp-gimptransformtools.html#gimp-perspective" deprecated="Use gimp_item_transform_perspective() instead."/>
    <keyword type="function" name="gimp_rotate ()" link="libgimp-gimptransformtools.html#gimp-rotate" deprecated="Use gimp_item_transform_rotate() instead."/>
    <keyword type="function" name="gimp_scale ()" link="libgimp-gimptransformtools.html#gimp-scale" deprecated="Use gimp_item_transform_scale() instead."/>
    <keyword type="function" name="gimp_shear ()" link="libgimp-gimptransformtools.html#gimp-shear" deprecated="Use gimp_item_transform_shear() instead."/>
    <keyword type="function" name="gimp_transform_2d ()" link="libgimp-gimptransformtools.html#gimp-transform-2d" deprecated="Use gimp_item_transform_2d() instead."/>
    <keyword type="function" name="gimp_vectors_new ()" link="libgimp-gimpvectors.html#gimp-vectors-new" since="2.4"/>
    <keyword type="function" name="gimp_vectors_new_from_text_layer ()" link="libgimp-gimpvectors.html#gimp-vectors-new-from-text-layer" since="2.6"/>
    <keyword type="function" name="gimp_vectors_copy ()" link="libgimp-gimpvectors.html#gimp-vectors-copy" since="2.6"/>
    <keyword type="function" name="gimp_vectors_is_valid ()" link="libgimp-gimpvectors.html#gimp-vectors-is-valid" deprecated="Use gimp_item_is_valid() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_get_strokes ()" link="libgimp-gimpvectors.html#gimp-vectors-get-strokes" since="2.4"/>
    <keyword type="function" name="gimp_vectors_get_image ()" link="libgimp-gimpvectors.html#gimp-vectors-get-image" deprecated="Use gimp_item_get_image() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_get_name ()" link="libgimp-gimpvectors.html#gimp-vectors-get-name" deprecated="Use gimp_item_get_name() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_set_name ()" link="libgimp-gimpvectors.html#gimp-vectors-set-name" deprecated="Use gimp_item_set_name() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_get_visible ()" link="libgimp-gimpvectors.html#gimp-vectors-get-visible" deprecated="Use gimp_item_get_visible() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_set_visible ()" link="libgimp-gimpvectors.html#gimp-vectors-set-visible" deprecated="Use gimp_item_set_visible() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_get_linked ()" link="libgimp-gimpvectors.html#gimp-vectors-get-linked" deprecated="Use gimp_item_get_linked() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_set_linked ()" link="libgimp-gimpvectors.html#gimp-vectors-set-linked" deprecated="Use gimp_item_set_linked() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_get_tattoo ()" link="libgimp-gimpvectors.html#gimp-vectors-get-tattoo" deprecated="Use gimp_item_get_tattoo() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_set_tattoo ()" link="libgimp-gimpvectors.html#gimp-vectors-set-tattoo" deprecated="Use gimp_item_set_tattoo() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_remove_stroke ()" link="libgimp-gimpvectors.html#gimp-vectors-remove-stroke" since="2.4"/>
    <keyword type="function" name="gimp_vectors_to_selection ()" link="libgimp-gimpvectors.html#gimp-vectors-to-selection" deprecated="Use gimp_image_select_item() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_export_to_file ()" link="libgimp-gimpvectors.html#gimp-vectors-export-to-file" since="2.6"/>
    <keyword type="function" name="gimp_vectors_export_to_string ()" link="libgimp-gimpvectors.html#gimp-vectors-export-to-string" since="2.6"/>
    <keyword type="function" name="gimp_vectors_import_from_file ()" link="libgimp-gimpvectors.html#gimp-vectors-import-from-file" since="2.4"/>
    <keyword type="function" name="gimp_vectors_import_from_string ()" link="libgimp-gimpvectors.html#gimp-vectors-import-from-string" since="2.4"/>
    <keyword type="function" name="gimp_vectors_parasite_attach ()" link="libgimp-gimpvectors.html#gimp-vectors-parasite-attach" deprecated="Use gimp_item_attach_parasite() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_parasite_detach ()" link="libgimp-gimpvectors.html#gimp-vectors-parasite-detach" deprecated="Use gimp_item_detach_parasite() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_parasite_find ()" link="libgimp-gimpvectors.html#gimp-vectors-parasite-find" deprecated="Use gimp_item_get_parasite() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_parasite_list ()" link="libgimp-gimpvectors.html#gimp-vectors-parasite-list" deprecated="Use gimp_item_get_parasite_list() instead." since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_new_from_points ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-new-from-points" since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_close ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-close" since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_get_length ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-get-length" since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_get_points ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-get-points" since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_get_point_at_dist ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-get-point-at-dist" since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_interpolate ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-interpolate" since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_scale ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-scale" since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_translate ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-translate" since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_flip ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-flip" since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_flip_free ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-flip-free" since="2.4"/>
    <keyword type="function" name="gimp_vectors_stroke_rotate ()" link="libgimp-gimpvectors.html#gimp-vectors-stroke-rotate" since="2.4"/>
    <keyword type="function" name="gimp_vectors_bezier_stroke_conicto ()" link="libgimp-gimpvectors.html#gimp-vectors-bezier-stroke-conicto" since="2.4"/>
    <keyword type="function" name="gimp_vectors_bezier_stroke_cubicto ()" link="libgimp-gimpvectors.html#gimp-vectors-bezier-stroke-cubicto" since="2.4"/>
    <keyword type="function" name="gimp_vectors_bezier_stroke_lineto ()" link="libgimp-gimpvectors.html#gimp-vectors-bezier-stroke-lineto" since="2.4"/>
    <keyword type="function" name="gimp_vectors_bezier_stroke_new_ellipse ()" link="libgimp-gimpvectors.html#gimp-vectors-bezier-stroke-new-ellipse" since="2.4"/>
    <keyword type="function" name="gimp_vectors_bezier_stroke_new_moveto ()" link="libgimp-gimpvectors.html#gimp-vectors-bezier-stroke-new-moveto" since="2.4"/>
    <keyword type="function" name="gimp_brush_new ()" link="libgimp-gimpbrush.html#gimp-brush-new" since="2.2"/>
    <keyword type="function" name="gimp_brush_duplicate ()" link="libgimp-gimpbrush.html#gimp-brush-duplicate" since="2.2"/>
    <keyword type="function" name="gimp_brush_rename ()" link="libgimp-gimpbrush.html#gimp-brush-rename" since="2.2"/>
    <keyword type="function" name="gimp_brush_delete ()" link="libgimp-gimpbrush.html#gimp-brush-delete" since="2.2"/>
    <keyword type="function" name="gimp_brush_get_info ()" link="libgimp-gimpbrush.html#gimp-brush-get-info" since="2.2"/>
    <keyword type="function" name="gimp_brush_get_pixels ()" link="libgimp-gimpbrush.html#gimp-brush-get-pixels" since="2.2"/>
    <keyword type="function" name="gimp_brush_get_spacing ()" link="libgimp-gimpbrush.html#gimp-brush-get-spacing" since="2.2"/>
    <keyword type="function" name="gimp_brush_set_spacing ()" link="libgimp-gimpbrush.html#gimp-brush-set-spacing" since="2.4"/>
    <keyword type="function" name="gimp_brush_get_shape ()" link="libgimp-gimpbrush.html#gimp-brush-get-shape" since="2.4"/>
    <keyword type="function" name="gimp_brush_set_shape ()" link="libgimp-gimpbrush.html#gimp-brush-set-shape" since="2.4"/>
    <keyword type="function" name="gimp_brush_get_spikes ()" link="libgimp-gimpbrush.html#gimp-brush-get-spikes" since="2.4"/>
    <keyword type="function" name="gimp_brush_set_spikes ()" link="libgimp-gimpbrush.html#gimp-brush-set-spikes" since="2.4"/>
    <keyword type="function" name="gimp_brush_get_angle ()" link="libgimp-gimpbrush.html#gimp-brush-get-angle" since="2.4"/>
    <keyword type="function" name="gimp_brush_set_angle ()" link="libgimp-gimpbrush.html#gimp-brush-set-angle" since="2.4"/>
    <keyword type="function" name="gimp_brush_get_radius ()" link="libgimp-gimpbrush.html#gimp-brush-get-radius" since="2.4"/>
    <keyword type="function" name="gimp_brush_set_radius ()" link="libgimp-gimpbrush.html#gimp-brush-set-radius" since="2.4"/>
    <keyword type="function" name="gimp_brush_get_aspect_ratio ()" link="libgimp-gimpbrush.html#gimp-brush-get-aspect-ratio" since="2.4"/>
    <keyword type="function" name="gimp_brush_set_aspect_ratio ()" link="libgimp-gimpbrush.html#gimp-brush-set-aspect-ratio" since="2.4"/>
    <keyword type="function" name="gimp_brush_get_hardness ()" link="libgimp-gimpbrush.html#gimp-brush-get-hardness" since="2.4"/>
    <keyword type="function" name="gimp_brush_set_hardness ()" link="libgimp-gimpbrush.html#gimp-brush-set-hardness" since="2.4"/>
    <keyword type="function" name="gimp_brush_is_generated ()" link="libgimp-gimpbrush.html#gimp-brush-is-generated" since="2.4"/>
    <keyword type="function" name="gimp_brush_is_editable ()" link="libgimp-gimpbrush.html#gimp-brush-is-editable" since="2.4"/>
    <keyword type="function" name="gimp_brushes_refresh ()" link="libgimp-gimpbrushes.html#gimp-brushes-refresh"/>
    <keyword type="function" name="gimp_brushes_get_list ()" link="libgimp-gimpbrushes.html#gimp-brushes-get-list"/>
    <keyword type="function" name="gimp_brushes_get_brush ()" link="libgimp-gimpbrushes.html#gimp-brushes-get-brush" deprecated="Use gimp_context_get_brush() instead."/>
    <keyword type="function" name="gimp_brushes_set_brush ()" link="libgimp-gimpbrushes.html#gimp-brushes-set-brush" deprecated=""/>
    <keyword type="function" name="gimp_brushes_get_opacity ()" link="libgimp-gimpbrushes.html#gimp-brushes-get-opacity" deprecated=""/>
    <keyword type="function" name="gimp_brushes_set_opacity ()" link="libgimp-gimpbrushes.html#gimp-brushes-set-opacity" deprecated=""/>
    <keyword type="function" name="gimp_brushes_get_paint_mode ()" link="libgimp-gimpbrushes.html#gimp-brushes-get-paint-mode" deprecated=""/>
    <keyword type="function" name="gimp_brushes_set_paint_mode ()" link="libgimp-gimpbrushes.html#gimp-brushes-set-paint-mode" deprecated=""/>
    <keyword type="function" name="gimp_brushes_get_spacing ()" link="libgimp-gimpbrushes.html#gimp-brushes-get-spacing" deprecated="Use gimp_brush_get_spacing() instead."/>
    <keyword type="function" name="gimp_brushes_set_spacing ()" link="libgimp-gimpbrushes.html#gimp-brushes-set-spacing" deprecated="Use gimp_brush_set_spacing() instead."/>
    <keyword type="function" name="gimp_brushes_get_brush_data ()" link="libgimp-gimpbrushes.html#gimp-brushes-get-brush-data" deprecated="Use gimp_brush_get_pixels() instead."/>
    <keyword type="function" name="gimp_dynamics_get_list ()" link="libgimp-gimpdynamics.html#gimp-dynamics-get-list" since="2.8"/>
    <keyword type="function" name="gimp_dynamics_refresh ()" link="libgimp-gimpdynamics.html#gimp-dynamics-refresh" since="2.8"/>
    <keyword type="function" name="gimp_fonts_refresh ()" link="libgimp-gimpfonts.html#gimp-fonts-refresh"/>
    <keyword type="function" name="gimp_fonts_get_list ()" link="libgimp-gimpfonts.html#gimp-fonts-get-list"/>
    <keyword type="function" name="gimp_gradient_new ()" link="libgimp-gimpgradient.html#gimp-gradient-new" since="2.2"/>
    <keyword type="function" name="gimp_gradient_duplicate ()" link="libgimp-gimpgradient.html#gimp-gradient-duplicate" since="2.2"/>
    <keyword type="function" name="gimp_gradient_rename ()" link="libgimp-gimpgradient.html#gimp-gradient-rename" since="2.2"/>
    <keyword type="function" name="gimp_gradient_delete ()" link="libgimp-gimpgradient.html#gimp-gradient-delete" since="2.2"/>
    <keyword type="function" name="gimp_gradient_is_editable ()" link="libgimp-gimpgradient.html#gimp-gradient-is-editable" since="2.4"/>
    <keyword type="function" name="gimp_gradient_get_uniform_samples ()" link="libgimp-gimpgradient.html#gimp-gradient-get-uniform-samples" since="2.2"/>
    <keyword type="function" name="gimp_gradient_get_custom_samples ()" link="libgimp-gimpgradient.html#gimp-gradient-get-custom-samples" since="2.2"/>
    <keyword type="function" name="gimp_gradient_get_number_of_segments ()" link="libgimp-gimpgradient.html#gimp-gradient-get-number-of-segments" since="2.6"/>
    <keyword type="function" name="gimp_gradient_segment_get_left_color ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-get-left-color" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_set_left_color ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-set-left-color" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_get_right_color ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-get-right-color" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_set_right_color ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-set-right-color" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_get_left_pos ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-get-left-pos" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_set_left_pos ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-set-left-pos" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_get_middle_pos ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-get-middle-pos" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_set_middle_pos ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-set-middle-pos" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_get_right_pos ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-get-right-pos" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_set_right_pos ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-set-right-pos" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_get_blending_function ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-get-blending-function" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_get_coloring_type ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-get-coloring-type" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_set_blending_function ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-set-blending-function" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_set_coloring_type ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-set-coloring-type" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_flip ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-flip" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_replicate ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-replicate" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_split_midpoint ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-split-midpoint" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_split_uniform ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-split-uniform" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_delete ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-delete" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_redistribute_handles ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-redistribute-handles" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_blend_colors ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-blend-colors" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_blend_opacity ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-blend-opacity" since="2.2"/>
    <keyword type="function" name="gimp_gradient_segment_range_move ()" link="libgimp-gimpgradient.html#gimp-gradient-segment-range-move" since="2.2"/>
    <keyword type="function" name="gimp_gradients_refresh ()" link="libgimp-gimpgradients.html#gimp-gradients-refresh"/>
    <keyword type="function" name="gimp_gradients_get_list ()" link="libgimp-gimpgradients.html#gimp-gradients-get-list"/>
    <keyword type="function" name="gimp_gradients_get_gradient ()" link="libgimp-gimpgradients.html#gimp-gradients-get-gradient" deprecated=""/>
    <keyword type="function" name="gimp_gradients_set_gradient ()" link="libgimp-gimpgradients.html#gimp-gradients-set-gradient" deprecated=""/>
    <keyword type="function" name="gimp_gradients_sample_uniform ()" link="libgimp-gimpgradients.html#gimp-gradients-sample-uniform" deprecated="Use gimp_gradient_get_uniform_samples() instead."/>
    <keyword type="function" name="gimp_gradients_sample_custom ()" link="libgimp-gimpgradients.html#gimp-gradients-sample-custom" deprecated="Use gimp_gradient_get_custom_samples() instead."/>
    <keyword type="function" name="gimp_gradients_get_gradient_data ()" link="libgimp-gimpgradients.html#gimp-gradients-get-gradient-data" deprecated="Use gimp_gradient_get_uniform_samples() instead."/>
    <keyword type="function" name="gimp_palette_new ()" link="libgimp-gimppalette.html#gimp-palette-new" since="2.2"/>
    <keyword type="function" name="gimp_palette_duplicate ()" link="libgimp-gimppalette.html#gimp-palette-duplicate" since="2.2"/>
    <keyword type="function" name="gimp_palette_rename ()" link="libgimp-gimppalette.html#gimp-palette-rename" since="2.2"/>
    <keyword type="function" name="gimp_palette_delete ()" link="libgimp-gimppalette.html#gimp-palette-delete" since="2.2"/>
    <keyword type="function" name="gimp_palette_get_info ()" link="libgimp-gimppalette.html#gimp-palette-get-info" since="2.2"/>
    <keyword type="function" name="gimp_palette_get_colors ()" link="libgimp-gimppalette.html#gimp-palette-get-colors" since="2.6"/>
    <keyword type="function" name="gimp_palette_get_columns ()" link="libgimp-gimppalette.html#gimp-palette-get-columns" since="2.4"/>
    <keyword type="function" name="gimp_palette_set_columns ()" link="libgimp-gimppalette.html#gimp-palette-set-columns" since="2.4"/>
    <keyword type="function" name="gimp_palette_add_entry ()" link="libgimp-gimppalette.html#gimp-palette-add-entry" since="2.2"/>
    <keyword type="function" name="gimp_palette_delete_entry ()" link="libgimp-gimppalette.html#gimp-palette-delete-entry" since="2.2"/>
    <keyword type="function" name="gimp_palette_entry_get_color ()" link="libgimp-gimppalette.html#gimp-palette-entry-get-color" since="2.2"/>
    <keyword type="function" name="gimp_palette_entry_set_color ()" link="libgimp-gimppalette.html#gimp-palette-entry-set-color" since="2.2"/>
    <keyword type="function" name="gimp_palette_entry_get_name ()" link="libgimp-gimppalette.html#gimp-palette-entry-get-name" since="2.2"/>
    <keyword type="function" name="gimp_palette_entry_set_name ()" link="libgimp-gimppalette.html#gimp-palette-entry-set-name" since="2.2"/>
    <keyword type="function" name="gimp_palette_get_foreground ()" link="libgimp-gimppalette.html#gimp-palette-get-foreground" deprecated=""/>
    <keyword type="function" name="gimp_palette_get_background ()" link="libgimp-gimppalette.html#gimp-palette-get-background" deprecated=""/>
    <keyword type="function" name="gimp_palette_set_foreground ()" link="libgimp-gimppalette.html#gimp-palette-set-foreground" deprecated=""/>
    <keyword type="function" name="gimp_palette_set_background ()" link="libgimp-gimppalette.html#gimp-palette-set-background" deprecated=""/>
    <keyword type="function" name="gimp_palette_set_default_colors ()" link="libgimp-gimppalette.html#gimp-palette-set-default-colors" deprecated=""/>
    <keyword type="function" name="gimp_palette_swap_colors ()" link="libgimp-gimppalette.html#gimp-palette-swap-colors" deprecated=""/>
    <keyword type="function" name="gimp_palette_is_editable ()" link="libgimp-gimppalette.html#gimp-palette-is-editable" since="2.4"/>
    <keyword type="function" name="gimp_palettes_refresh ()" link="libgimp-gimppalettes.html#gimp-palettes-refresh"/>
    <keyword type="function" name="gimp_palettes_get_list ()" link="libgimp-gimppalettes.html#gimp-palettes-get-list"/>
    <keyword type="function" name="gimp_palettes_get_palette ()" link="libgimp-gimppalettes.html#gimp-palettes-get-palette" deprecated="Use gimp_context_get_palette() instead."/>
    <keyword type="function" name="gimp_palettes_set_palette ()" link="libgimp-gimppalettes.html#gimp-palettes-set-palette" deprecated=""/>
    <keyword type="function" name="gimp_palettes_get_palette_entry ()" link="libgimp-gimppalettes.html#gimp-palettes-get-palette-entry" deprecated="Use gimp_palette_entry_get_color() instead."/>
    <keyword type="function" name="gimp_pattern_get_info ()" link="libgimp-gimppattern.html#gimp-pattern-get-info" since="2.2"/>
    <keyword type="function" name="gimp_pattern_get_pixels ()" link="libgimp-gimppattern.html#gimp-pattern-get-pixels" since="2.2"/>
    <keyword type="function" name="gimp_patterns_refresh ()" link="libgimp-gimppatterns.html#gimp-patterns-refresh"/>
    <keyword type="function" name="gimp_patterns_get_list ()" link="libgimp-gimppatterns.html#gimp-patterns-get-list"/>
    <keyword type="function" name="gimp_patterns_get_pattern ()" link="libgimp-gimppatterns.html#gimp-patterns-get-pattern" deprecated="Use gimp_context_get_pattern() instead."/>
    <keyword type="function" name="gimp_patterns_set_pattern ()" link="libgimp-gimppatterns.html#gimp-patterns-set-pattern" deprecated=""/>
    <keyword type="function" name="gimp_patterns_get_pattern_data ()" link="libgimp-gimppatterns.html#gimp-patterns-get-pattern-data" deprecated="Use gimp_pattern_get_pixels() instead."/>
    <keyword type="function" name="gimp_select_button_close_popup ()" link="GimpSelectButton.html#gimp-select-button-close-popup" since="2.4"/>
    <keyword type="struct" name="GimpSelectButton" link="GimpSelectButton.html#GimpSelectButton-struct"/>
    <keyword type="function" name="gimp_brush_select_button_new ()" link="GimpBrushSelectButton.html#gimp-brush-select-button-new" since="2.4"/>
    <keyword type="function" name="gimp_brush_select_button_get_brush ()" link="GimpBrushSelectButton.html#gimp-brush-select-button-get-brush" since="2.4"/>
    <keyword type="function" name="gimp_brush_select_button_set_brush ()" link="GimpBrushSelectButton.html#gimp-brush-select-button-set-brush" since="2.4"/>
    <keyword type="struct" name="GimpBrushSelectButton" link="GimpBrushSelectButton.html#GimpBrushSelectButton-struct"/>
    <keyword type="property" name="The “brush-name” property" link="GimpBrushSelectButton.html#GimpBrushSelectButton--brush-name"/>
    <keyword type="property" name="The “brush-opacity” property" link="GimpBrushSelectButton.html#GimpBrushSelectButton--brush-opacity"/>
    <keyword type="property" name="The “brush-paint-mode” property" link="GimpBrushSelectButton.html#GimpBrushSelectButton--brush-paint-mode"/>
    <keyword type="property" name="The “brush-spacing” property" link="GimpBrushSelectButton.html#GimpBrushSelectButton--brush-spacing"/>
    <keyword type="property" name="The “title” property" link="GimpBrushSelectButton.html#GimpBrushSelectButton--title"/>
    <keyword type="signal" name="The “brush-set” signal" link="GimpBrushSelectButton.html#GimpBrushSelectButton-brush-set"/>
    <keyword type="function" name="gimp_font_select_button_new ()" link="GimpFontSelectButton.html#gimp-font-select-button-new" since="2.4"/>
    <keyword type="function" name="gimp_font_select_button_get_font ()" link="GimpFontSelectButton.html#gimp-font-select-button-get-font" since="2.4"/>
    <keyword type="function" name="gimp_font_select_button_set_font ()" link="GimpFontSelectButton.html#gimp-font-select-button-set-font" since="2.4"/>
    <keyword type="struct" name="GimpFontSelectButton" link="GimpFontSelectButton.html#GimpFontSelectButton-struct"/>
    <keyword type="property" name="The “font-name” property" link="GimpFontSelectButton.html#GimpFontSelectButton--font-name"/>
    <keyword type="property" name="The “title” property" link="GimpFontSelectButton.html#GimpFontSelectButton--title"/>
    <keyword type="signal" name="The “font-set” signal" link="GimpFontSelectButton.html#GimpFontSelectButton-font-set"/>
    <keyword type="function" name="gimp_gradient_select_button_new ()" link="GimpGradientSelectButton.html#gimp-gradient-select-button-new" since="2.4"/>
    <keyword type="function" name="gimp_gradient_select_button_get_gradient ()" link="GimpGradientSelectButton.html#gimp-gradient-select-button-get-gradient" since="2.4"/>
    <keyword type="function" name="gimp_gradient_select_button_set_gradient ()" link="GimpGradientSelectButton.html#gimp-gradient-select-button-set-gradient" since="2.4"/>
    <keyword type="struct" name="GimpGradientSelectButton" link="GimpGradientSelectButton.html#GimpGradientSelectButton-struct"/>
    <keyword type="property" name="The “gradient-name” property" link="GimpGradientSelectButton.html#GimpGradientSelectButton--gradient-name"/>
    <keyword type="property" name="The “title” property" link="GimpGradientSelectButton.html#GimpGradientSelectButton--title"/>
    <keyword type="signal" name="The “gradient-set” signal" link="GimpGradientSelectButton.html#GimpGradientSelectButton-gradient-set"/>
    <keyword type="function" name="gimp_palette_select_button_new ()" link="GimpPaletteSelectButton.html#gimp-palette-select-button-new" since="2.4"/>
    <keyword type="function" name="gimp_palette_select_button_get_palette ()" link="GimpPaletteSelectButton.html#gimp-palette-select-button-get-palette" since="2.4"/>
    <keyword type="function" name="gimp_palette_select_button_set_palette ()" link="GimpPaletteSelectButton.html#gimp-palette-select-button-set-palette" since="2.4"/>
    <keyword type="struct" name="GimpPaletteSelectButton" link="GimpPaletteSelectButton.html#GimpPaletteSelectButton-struct"/>
    <keyword type="property" name="The “palette-name” property" link="GimpPaletteSelectButton.html#GimpPaletteSelectButton--palette-name"/>
    <keyword type="property" name="The “title” property" link="GimpPaletteSelectButton.html#GimpPaletteSelectButton--title"/>
    <keyword type="signal" name="The “palette-set” signal" link="GimpPaletteSelectButton.html#GimpPaletteSelectButton-palette-set"/>
    <keyword type="function" name="gimp_pattern_select_button_new ()" link="GimpPatternSelectButton.html#gimp-pattern-select-button-new" since="2.4"/>
    <keyword type="function" name="gimp_pattern_select_button_get_pattern ()" link="GimpPatternSelectButton.html#gimp-pattern-select-button-get-pattern" since="2.4"/>
    <keyword type="function" name="gimp_pattern_select_button_set_pattern ()" link="GimpPatternSelectButton.html#gimp-pattern-select-button-set-pattern" since="2.4"/>
    <keyword type="struct" name="GimpPatternSelectButton" link="GimpPatternSelectButton.html#GimpPatternSelectButton-struct"/>
    <keyword type="property" name="The “pattern-name” property" link="GimpPatternSelectButton.html#GimpPatternSelectButton--pattern-name"/>
    <keyword type="property" name="The “title” property" link="GimpPatternSelectButton.html#GimpPatternSelectButton--title"/>
    <keyword type="signal" name="The “pattern-set” signal" link="GimpPatternSelectButton.html#GimpPatternSelectButton-pattern-set"/>
    <keyword type="function" name="GimpRunBrushCallback ()" link="libgimp-gimpbrushselect.html#GimpRunBrushCallback"/>
    <keyword type="function" name="gimp_brush_select_new ()" link="libgimp-gimpbrushselect.html#gimp-brush-select-new"/>
    <keyword type="function" name="gimp_brush_select_destroy ()" link="libgimp-gimpbrushselect.html#gimp-brush-select-destroy"/>
    <keyword type="function" name="gimp_brushes_popup ()" link="libgimp-gimpbrushselect.html#gimp-brushes-popup"/>
    <keyword type="function" name="gimp_brushes_close_popup ()" link="libgimp-gimpbrushselect.html#gimp-brushes-close-popup"/>
    <keyword type="function" name="gimp_brushes_set_popup ()" link="libgimp-gimpbrushselect.html#gimp-brushes-set-popup"/>
    <keyword type="function" name="GimpRunFontCallback ()" link="libgimp-gimpfontselect.html#GimpRunFontCallback"/>
    <keyword type="function" name="gimp_font_select_new ()" link="libgimp-gimpfontselect.html#gimp-font-select-new"/>
    <keyword type="function" name="gimp_font_select_destroy ()" link="libgimp-gimpfontselect.html#gimp-font-select-destroy"/>
    <keyword type="function" name="gimp_fonts_popup ()" link="libgimp-gimpfontselect.html#gimp-fonts-popup"/>
    <keyword type="function" name="gimp_fonts_close_popup ()" link="libgimp-gimpfontselect.html#gimp-fonts-close-popup"/>
    <keyword type="function" name="gimp_fonts_set_popup ()" link="libgimp-gimpfontselect.html#gimp-fonts-set-popup"/>
    <keyword type="function" name="GimpRunGradientCallback ()" link="libgimp-gimpgradientselect.html#GimpRunGradientCallback"/>
    <keyword type="function" name="gimp_gradient_select_new ()" link="libgimp-gimpgradientselect.html#gimp-gradient-select-new"/>
    <keyword type="function" name="gimp_gradient_select_destroy ()" link="libgimp-gimpgradientselect.html#gimp-gradient-select-destroy"/>
    <keyword type="function" name="gimp_gradients_popup ()" link="libgimp-gimpgradientselect.html#gimp-gradients-popup"/>
    <keyword type="function" name="gimp_gradients_close_popup ()" link="libgimp-gimpgradientselect.html#gimp-gradients-close-popup"/>
    <keyword type="function" name="gimp_gradients_set_popup ()" link="libgimp-gimpgradientselect.html#gimp-gradients-set-popup"/>
    <keyword type="function" name="GimpRunPaletteCallback ()" link="libgimp-gimppaletteselect.html#GimpRunPaletteCallback"/>
    <keyword type="function" name="gimp_palette_select_new ()" link="libgimp-gimppaletteselect.html#gimp-palette-select-new"/>
    <keyword type="function" name="gimp_palette_select_destroy ()" link="libgimp-gimppaletteselect.html#gimp-palette-select-destroy"/>
    <keyword type="function" name="gimp_palettes_popup ()" link="libgimp-gimppaletteselect.html#gimp-palettes-popup"/>
    <keyword type="function" name="gimp_palettes_close_popup ()" link="libgimp-gimppaletteselect.html#gimp-palettes-close-popup"/>
    <keyword type="function" name="gimp_palettes_set_popup ()" link="libgimp-gimppaletteselect.html#gimp-palettes-set-popup"/>
    <keyword type="function" name="GimpRunPatternCallback ()" link="libgimp-gimppatternselect.html#GimpRunPatternCallback"/>
    <keyword type="function" name="gimp_pattern_select_new ()" link="libgimp-gimppatternselect.html#gimp-pattern-select-new"/>
    <keyword type="function" name="gimp_pattern_select_destroy ()" link="libgimp-gimppatternselect.html#gimp-pattern-select-destroy"/>
    <keyword type="function" name="gimp_patterns_popup ()" link="libgimp-gimppatternselect.html#gimp-patterns-popup"/>
    <keyword type="function" name="gimp_patterns_close_popup ()" link="libgimp-gimppatternselect.html#gimp-patterns-close-popup"/>
    <keyword type="function" name="gimp_patterns_set_popup ()" link="libgimp-gimppatternselect.html#gimp-patterns-set-popup"/>
    <keyword type="function" name="gimp_ui_init ()" link="libgimp-gimpui.html#gimp-ui-init"/>
    <keyword type="function" name="gimp_ui_get_display_window ()" link="libgimp-gimpui.html#gimp-ui-get-display-window" since="2.4"/>
    <keyword type="function" name="gimp_ui_get_progress_window ()" link="libgimp-gimpui.html#gimp-ui-get-progress-window" since="2.4"/>
    <keyword type="function" name="gimp_window_set_transient ()" link="libgimp-gimpui.html#gimp-window-set-transient" since="2.4"/>
    <keyword type="function" name="gimp_window_set_transient_for_display ()" link="libgimp-gimpui.html#gimp-window-set-transient-for-display" since="2.4"/>
    <keyword type="function" name="gimp_export_image ()" link="libgimp-gimpexport.html#gimp-export-image"/>
    <keyword type="function" name="gimp_export_dialog_new ()" link="libgimp-gimpexport.html#gimp-export-dialog-new" since="2.8"/>
    <keyword type="function" name="gimp_export_dialog_get_content_area ()" link="libgimp-gimpexport.html#gimp-export-dialog-get-content-area" since="2.8"/>
    <keyword type="enum" name="enum GimpExportCapabilities" link="libgimp-gimpexport.html#GimpExportCapabilities"/>
    <keyword type="enum" name="enum GimpExportReturn" link="libgimp-gimpexport.html#GimpExportReturn"/>
    <keyword type="function" name="gimp_drawable_preview_new ()" link="GimpDrawablePreview.html#gimp-drawable-preview-new" deprecated="Use gimp_drawable_preview_new_from_drawable_id() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_preview_new_from_drawable_id ()" link="GimpDrawablePreview.html#gimp-drawable-preview-new-from-drawable-id" since="2.10"/>
    <keyword type="function" name="gimp_drawable_preview_get_drawable ()" link="GimpDrawablePreview.html#gimp-drawable-preview-get-drawable" deprecated="use gimp_drawable_preview_get_drawable_id() instead." since="2.2"/>
    <keyword type="function" name="gimp_drawable_preview_get_drawable_id ()" link="GimpDrawablePreview.html#gimp-drawable-preview-get-drawable-id" since="2.10"/>
    <keyword type="function" name="gimp_drawable_preview_draw_region ()" link="GimpDrawablePreview.html#gimp-drawable-preview-draw-region" deprecated="" since="2.2"/>
    <keyword type="struct" name="GimpDrawablePreview" link="GimpDrawablePreview.html#GimpDrawablePreview-struct"/>
    <keyword type="property" name="The “drawable” property" link="GimpDrawablePreview.html#GimpDrawablePreview--drawable"/>
    <keyword type="property" name="The “drawable-id” property" link="GimpDrawablePreview.html#GimpDrawablePreview--drawable-id"/>
    <keyword type="function" name="gimp_aspect_preview_new ()" link="GimpAspectPreview.html#gimp-aspect-preview-new" deprecated="" since="2.2"/>
    <keyword type="function" name="gimp_aspect_preview_new_from_drawable_id ()" link="GimpAspectPreview.html#gimp-aspect-preview-new-from-drawable-id" since="2.10"/>
    <keyword type="struct" name="GimpAspectPreview" link="GimpAspectPreview.html#GimpAspectPreview-struct"/>
    <keyword type="property" name="The “drawable” property" link="GimpAspectPreview.html#GimpAspectPreview--drawable"/>
    <keyword type="property" name="The “drawable-id” property" link="GimpAspectPreview.html#GimpAspectPreview--drawable-id"/>
    <keyword type="function" name="gimp_zoom_preview_new ()" link="GimpZoomPreview.html#gimp-zoom-preview-new" deprecated="2.10: Use gimp_zoom_preview_new_from_drawable_id() instead." since="2.4"/>
    <keyword type="function" name="gimp_zoom_preview_new_from_drawable_id ()" link="GimpZoomPreview.html#gimp-zoom-preview-new-from-drawable-id" since="2.10"/>
    <keyword type="function" name="gimp_zoom_preview_new_with_model_from_drawable_id ()" link="GimpZoomPreview.html#gimp-zoom-preview-new-with-model-from-drawable-id" since="2.10"/>
    <keyword type="function" name="gimp_zoom_preview_new_with_model ()" link="GimpZoomPreview.html#gimp-zoom-preview-new-with-model" deprecated="" since="2.4"/>
    <keyword type="function" name="gimp_zoom_preview_get_source ()" link="GimpZoomPreview.html#gimp-zoom-preview-get-source" since="2.4"/>
    <keyword type="function" name="gimp_zoom_preview_get_drawable ()" link="GimpZoomPreview.html#gimp-zoom-preview-get-drawable" deprecated="2.10: Use gimp_zoom_preview_get_drawable_id() instead." since="2.4"/>
    <keyword type="function" name="gimp_zoom_preview_get_drawable_id ()" link="GimpZoomPreview.html#gimp-zoom-preview-get-drawable-id" since="2.10"/>
    <keyword type="function" name="gimp_zoom_preview_get_factor ()" link="GimpZoomPreview.html#gimp-zoom-preview-get-factor" since="2.4"/>
    <keyword type="function" name="gimp_zoom_preview_get_model ()" link="GimpZoomPreview.html#gimp-zoom-preview-get-model" since="2.4"/>
    <keyword type="struct" name="GimpZoomPreview" link="GimpZoomPreview.html#GimpZoomPreview-struct"/>
    <keyword type="property" name="The “drawable” property" link="GimpZoomPreview.html#GimpZoomPreview--drawable"/>
    <keyword type="property" name="The “drawable-id” property" link="GimpZoomPreview.html#GimpZoomPreview--drawable-id"/>
    <keyword type="property" name="The “model” property" link="GimpZoomPreview.html#GimpZoomPreview--model"/>
    <keyword type="function" name="GimpItemConstraintFunc ()" link="libgimp-GimpItemComboBox.html#GimpItemConstraintFunc"/>
    <keyword type="function" name="gimp_drawable_combo_box_new ()" link="libgimp-GimpItemComboBox.html#gimp-drawable-combo-box-new" since="2.2"/>
    <keyword type="function" name="gimp_channel_combo_box_new ()" link="libgimp-GimpItemComboBox.html#gimp-channel-combo-box-new" since="2.2"/>
    <keyword type="function" name="gimp_layer_combo_box_new ()" link="libgimp-GimpItemComboBox.html#gimp-layer-combo-box-new" since="2.2"/>
    <keyword type="function" name="gimp_vectors_combo_box_new ()" link="libgimp-GimpItemComboBox.html#gimp-vectors-combo-box-new" since="2.4"/>
    <keyword type="struct" name="GimpDrawableComboBox" link="libgimp-GimpItemComboBox.html#GimpDrawableComboBox-struct"/>
    <keyword type="typedef" name="GimpDrawableConstraintFunc" link="libgimp-GimpItemComboBox.html#GimpDrawableConstraintFunc"/>
    <keyword type="struct" name="GimpChannelComboBox" link="libgimp-GimpItemComboBox.html#GimpChannelComboBox-struct"/>
    <keyword type="struct" name="GimpLayerComboBox" link="libgimp-GimpItemComboBox.html#GimpLayerComboBox-struct"/>
    <keyword type="struct" name="GimpVectorsComboBox" link="libgimp-GimpItemComboBox.html#GimpVectorsComboBox-struct"/>
    <keyword type="typedef" name="GimpVectorsConstraintFunc" link="libgimp-GimpItemComboBox.html#GimpVectorsConstraintFunc"/>
    <keyword type="function" name="GimpImageConstraintFunc ()" link="GimpImageComboBox.html#GimpImageConstraintFunc"/>
    <keyword type="function" name="gimp_image_combo_box_new ()" link="GimpImageComboBox.html#gimp-image-combo-box-new" since="2.2"/>
    <keyword type="struct" name="GimpImageComboBox" link="GimpImageComboBox.html#GimpImageComboBox-struct"/>
    <keyword type="function" name="gimp_progress_bar_new ()" link="GimpProgressBar.html#gimp-progress-bar-new" since="2.2"/>
    <keyword type="struct" name="GimpProgressBar" link="GimpProgressBar.html#GimpProgressBar-struct"/>
    <keyword type="function" name="GimpConstraintFunc ()" link="libgimp-gimpmenu.html#GimpConstraintFunc" deprecated=""/>
    <keyword type="function" name="GimpMenuCallback ()" link="libgimp-gimpmenu.html#GimpMenuCallback" deprecated=""/>
    <keyword type="function" name="gimp_image_menu_new ()" link="libgimp-gimpmenu.html#gimp-image-menu-new" deprecated="Use gimp_image_combo_box_new() instead."/>
    <keyword type="function" name="gimp_layer_menu_new ()" link="libgimp-gimpmenu.html#gimp-layer-menu-new" deprecated="Use gimp_layer_combo_box_new() instead."/>
    <keyword type="function" name="gimp_channel_menu_new ()" link="libgimp-gimpmenu.html#gimp-channel-menu-new" deprecated="Use gimp_channel_combo_box_new() instead."/>
    <keyword type="function" name="gimp_drawable_menu_new ()" link="libgimp-gimpmenu.html#gimp-drawable-menu-new" deprecated="Use gimp_drawable_combo_box_new() instead."/>
    <keyword type="function" name="gimp_brush_select_widget_new ()" link="libgimp-gimpbrushmenu.html#gimp-brush-select-widget-new" deprecated=""/>
    <keyword type="function" name="gimp_brush_select_widget_close ()" link="libgimp-gimpbrushmenu.html#gimp-brush-select-widget-close" deprecated=""/>
    <keyword type="function" name="gimp_brush_select_widget_set ()" link="libgimp-gimpbrushmenu.html#gimp-brush-select-widget-set" deprecated=""/>
    <keyword type="function" name="gimp_font_select_widget_new ()" link="libgimp-gimpfontmenu.html#gimp-font-select-widget-new" deprecated=""/>
    <keyword type="function" name="gimp_font_select_widget_close ()" link="libgimp-gimpfontmenu.html#gimp-font-select-widget-close" deprecated=""/>
    <keyword type="function" name="gimp_font_select_widget_set ()" link="libgimp-gimpfontmenu.html#gimp-font-select-widget-set" deprecated=""/>
    <keyword type="function" name="gimp_gradient_select_widget_new ()" link="libgimp-gimpgradientmenu.html#gimp-gradient-select-widget-new" deprecated="" since="2.2"/>
    <keyword type="function" name="gimp_gradient_select_widget_close ()" link="libgimp-gimpgradientmenu.html#gimp-gradient-select-widget-close" deprecated=""/>
    <keyword type="function" name="gimp_gradient_select_widget_set ()" link="libgimp-gimpgradientmenu.html#gimp-gradient-select-widget-set" deprecated=""/>
    <keyword type="function" name="gimp_palette_select_widget_new ()" link="libgimp-gimppalettemenu.html#gimp-palette-select-widget-new" deprecated="" since="2.2"/>
    <keyword type="function" name="gimp_palette_select_widget_close ()" link="libgimp-gimppalettemenu.html#gimp-palette-select-widget-close" deprecated="" since="2.2"/>
    <keyword type="function" name="gimp_palette_select_widget_set ()" link="libgimp-gimppalettemenu.html#gimp-palette-select-widget-set" deprecated="" since="2.2"/>
    <keyword type="function" name="gimp_pattern_select_widget_new ()" link="libgimp-gimppatternmenu.html#gimp-pattern-select-widget-new" deprecated=""/>
    <keyword type="function" name="gimp_pattern_select_widget_close ()" link="libgimp-gimppatternmenu.html#gimp-pattern-select-widget-close" deprecated=""/>
    <keyword type="function" name="gimp_pattern_select_widget_set ()" link="libgimp-gimppatternmenu.html#gimp-pattern-select-widget-set" deprecated=""/>
    <keyword type="function" name="gimp_proc_browser_dialog_new ()" link="GimpProcBrowserDialog.html#gimp-proc-browser-dialog-new" since="2.4"/>
    <keyword type="function" name="gimp_proc_browser_dialog_get_selected ()" link="GimpProcBrowserDialog.html#gimp-proc-browser-dialog-get-selected" since="2.4"/>
    <keyword type="struct" name="GimpProcBrowserDialog" link="GimpProcBrowserDialog.html#GimpProcBrowserDialog-struct"/>
    <keyword type="signal" name="The “row-activated” signal" link="GimpProcBrowserDialog.html#GimpProcBrowserDialog-row-activated"/>
    <keyword type="signal" name="The “selection-changed” signal" link="GimpProcBrowserDialog.html#GimpProcBrowserDialog-selection-changed"/>
    <keyword type="function" name="gimp_proc_view_new ()" link="libgimp-GimpProcView.html#gimp-proc-view-new" since="2.4"/>
    <keyword type="constant" name="GIMP_BRUSH_HARD" link="libgimp-gimpenums.html#GIMP-BRUSH-HARD:CAPS"/>
    <keyword type="constant" name="GIMP_BRUSH_SOFT" link="libgimp-gimpenums.html#GIMP-BRUSH-SOFT:CAPS"/>
    <keyword type="constant" name="GIMP_CONVERT_DITHER_NONE" link="libgimp-gimpenums.html#GIMP-CONVERT-DITHER-NONE:CAPS"/>
    <keyword type="constant" name="GIMP_CONVERT_DITHER_FS" link="libgimp-gimpenums.html#GIMP-CONVERT-DITHER-FS:CAPS"/>
    <keyword type="constant" name="GIMP_CONVERT_DITHER_FS_LOWBLEED" link="libgimp-gimpenums.html#GIMP-CONVERT-DITHER-FS-LOWBLEED:CAPS"/>
    <keyword type="constant" name="GIMP_CONVERT_DITHER_FIXED" link="libgimp-gimpenums.html#GIMP-CONVERT-DITHER-FIXED:CAPS"/>
    <keyword type="constant" name="GIMP_HISTOGRAM_VALUE" link="libgimp-gimpenums.html#GIMP-HISTOGRAM-VALUE:CAPS"/>
    <keyword type="constant" name="GIMP_HISTOGRAM_RED" link="libgimp-gimpenums.html#GIMP-HISTOGRAM-RED:CAPS"/>
    <keyword type="constant" name="GIMP_HISTOGRAM_GREEN" link="libgimp-gimpenums.html#GIMP-HISTOGRAM-GREEN:CAPS"/>
    <keyword type="constant" name="GIMP_HISTOGRAM_BLUE" link="libgimp-gimpenums.html#GIMP-HISTOGRAM-BLUE:CAPS"/>
    <keyword type="constant" name="GIMP_HISTOGRAM_ALPHA" link="libgimp-gimpenums.html#GIMP-HISTOGRAM-ALPHA:CAPS"/>
    <keyword type="constant" name="GIMP_HISTOGRAM_LUMINANCE" link="libgimp-gimpenums.html#GIMP-HISTOGRAM-LUMINANCE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_COLOR_SPACE_AUTO" link="libgimp-gimpenums.html#GIMP-LAYER-COLOR-SPACE-AUTO:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_COLOR_SPACE_RGB_LINEAR" link="libgimp-gimpenums.html#GIMP-LAYER-COLOR-SPACE-RGB-LINEAR:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_COLOR_SPACE_RGB_PERCEPTUAL" link="libgimp-gimpenums.html#GIMP-LAYER-COLOR-SPACE-RGB-PERCEPTUAL:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_COMPOSITE_AUTO" link="libgimp-gimpenums.html#GIMP-LAYER-COMPOSITE-AUTO:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_COMPOSITE_UNION" link="libgimp-gimpenums.html#GIMP-LAYER-COMPOSITE-UNION:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_COMPOSITE_CLIP_TO_BACKDROP" link="libgimp-gimpenums.html#GIMP-LAYER-COMPOSITE-CLIP-TO-BACKDROP:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_COMPOSITE_CLIP_TO_LAYER" link="libgimp-gimpenums.html#GIMP-LAYER-COMPOSITE-CLIP-TO-LAYER:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_COMPOSITE_INTERSECTION" link="libgimp-gimpenums.html#GIMP-LAYER-COMPOSITE-INTERSECTION:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_NORMAL_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-NORMAL-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_DISSOLVE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-DISSOLVE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_BEHIND_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-BEHIND-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_MULTIPLY_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-MULTIPLY-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_SCREEN_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-SCREEN-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_OVERLAY_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-OVERLAY-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_DIFFERENCE_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-DIFFERENCE-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_ADDITION_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-ADDITION-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_SUBTRACT_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-SUBTRACT-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_DARKEN_ONLY_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-DARKEN-ONLY-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LIGHTEN_ONLY_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LIGHTEN-ONLY-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HSV_HUE_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HSV-HUE-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HSV_SATURATION_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HSV-SATURATION-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HSL_COLOR_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HSL-COLOR-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HSV_VALUE_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HSV-VALUE-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_DIVIDE_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-DIVIDE-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_DODGE_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-DODGE-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_BURN_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-BURN-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HARDLIGHT_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HARDLIGHT-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_SOFTLIGHT_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-SOFTLIGHT-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_GRAIN_EXTRACT_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-GRAIN-EXTRACT-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_GRAIN_MERGE_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-GRAIN-MERGE-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_COLOR_ERASE_LEGACY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-COLOR-ERASE-LEGACY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_OVERLAY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-OVERLAY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LCH_HUE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LCH-HUE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LCH_CHROMA" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LCH-CHROMA:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LCH_COLOR" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LCH-COLOR:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LCH_LIGHTNESS" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LCH-LIGHTNESS:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_NORMAL" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-NORMAL:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_BEHIND" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-BEHIND:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_MULTIPLY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-MULTIPLY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_SCREEN" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-SCREEN:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_DIFFERENCE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-DIFFERENCE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_ADDITION" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-ADDITION:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_SUBTRACT" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-SUBTRACT:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_DARKEN_ONLY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-DARKEN-ONLY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LIGHTEN_ONLY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LIGHTEN-ONLY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HSV_HUE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HSV-HUE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HSV_SATURATION" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HSV-SATURATION:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HSL_COLOR" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HSL-COLOR:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HSV_VALUE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HSV-VALUE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_DIVIDE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-DIVIDE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_DODGE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-DODGE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_BURN" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-BURN:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HARDLIGHT" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HARDLIGHT:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_SOFTLIGHT" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-SOFTLIGHT:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_GRAIN_EXTRACT" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-GRAIN-EXTRACT:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_GRAIN_MERGE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-GRAIN-MERGE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_VIVID_LIGHT" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-VIVID-LIGHT:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_PIN_LIGHT" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-PIN-LIGHT:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LINEAR_LIGHT" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LINEAR-LIGHT:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_HARD_MIX" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-HARD-MIX:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_EXCLUSION" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-EXCLUSION:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LINEAR_BURN" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LINEAR-BURN:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LUMA_DARKEN_ONLY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LUMA-DARKEN-ONLY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LUMA_LIGHTEN_ONLY" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LUMA-LIGHTEN-ONLY:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_LUMINANCE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-LUMINANCE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_COLOR_ERASE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-COLOR-ERASE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_ERASE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-ERASE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_MERGE" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-MERGE:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_SPLIT" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-SPLIT:CAPS"/>
    <keyword type="constant" name="GIMP_LAYER_MODE_PASS_THROUGH" link="libgimp-gimpenums.html#GIMP-LAYER-MODE-PASS-THROUGH:CAPS"/>
    <keyword type="constant" name="GIMP_PIXBUF_KEEP_ALPHA" link="libgimp-gimppixbuf.html#GIMP-PIXBUF-KEEP-ALPHA:CAPS"/>
    <keyword type="constant" name="GIMP_PIXBUF_SMALL_CHECKS" link="libgimp-gimppixbuf.html#GIMP-PIXBUF-SMALL-CHECKS:CAPS"/>
    <keyword type="constant" name="GIMP_PIXBUF_LARGE_CHECKS" link="libgimp-gimppixbuf.html#GIMP-PIXBUF-LARGE-CHECKS:CAPS"/>
    <keyword type="constant" name="GIMP_PIXEL_FETCHER_EDGE_NONE" link="libgimp-gimppixelfetcher.html#GIMP-PIXEL-FETCHER-EDGE-NONE:CAPS"/>
    <keyword type="constant" name="GIMP_PIXEL_FETCHER_EDGE_WRAP" link="libgimp-gimppixelfetcher.html#GIMP-PIXEL-FETCHER-EDGE-WRAP:CAPS"/>
    <keyword type="constant" name="GIMP_PIXEL_FETCHER_EDGE_SMEAR" link="libgimp-gimppixelfetcher.html#GIMP-PIXEL-FETCHER-EDGE-SMEAR:CAPS"/>
    <keyword type="constant" name="GIMP_PIXEL_FETCHER_EDGE_BLACK" link="libgimp-gimppixelfetcher.html#GIMP-PIXEL-FETCHER-EDGE-BLACK:CAPS"/>
    <keyword type="constant" name="GIMP_PIXEL_FETCHER_EDGE_BACKGROUND" link="libgimp-gimppixelfetcher.html#GIMP-PIXEL-FETCHER-EDGE-BACKGROUND:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_CAN_HANDLE_RGB" link="libgimp-gimpexport.html#GIMP-EXPORT-CAN-HANDLE-RGB:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_CAN_HANDLE_GRAY" link="libgimp-gimpexport.html#GIMP-EXPORT-CAN-HANDLE-GRAY:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_CAN_HANDLE_INDEXED" link="libgimp-gimpexport.html#GIMP-EXPORT-CAN-HANDLE-INDEXED:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_CAN_HANDLE_BITMAP" link="libgimp-gimpexport.html#GIMP-EXPORT-CAN-HANDLE-BITMAP:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_CAN_HANDLE_ALPHA" link="libgimp-gimpexport.html#GIMP-EXPORT-CAN-HANDLE-ALPHA:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_CAN_HANDLE_LAYERS" link="libgimp-gimpexport.html#GIMP-EXPORT-CAN-HANDLE-LAYERS:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_CAN_HANDLE_LAYERS_AS_ANIMATION" link="libgimp-gimpexport.html#GIMP-EXPORT-CAN-HANDLE-LAYERS-AS-ANIMATION:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_CAN_HANDLE_LAYER_MASKS" link="libgimp-gimpexport.html#GIMP-EXPORT-CAN-HANDLE-LAYER-MASKS:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_NEEDS_ALPHA" link="libgimp-gimpexport.html#GIMP-EXPORT-NEEDS-ALPHA:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_NEEDS_CROP" link="libgimp-gimpexport.html#GIMP-EXPORT-NEEDS-CROP:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_CANCEL" link="libgimp-gimpexport.html#GIMP-EXPORT-CANCEL:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_IGNORE" link="libgimp-gimpexport.html#GIMP-EXPORT-IGNORE:CAPS"/>
    <keyword type="constant" name="GIMP_EXPORT_EXPORT" link="libgimp-gimpexport.html#GIMP-EXPORT-EXPORT:CAPS"/>
    <keyword type="member" name="GimpPlugInInfo.init-proc" link="libgimp-gimp.html#GimpPlugInInfo.init-proc"/>
    <keyword type="member" name="GimpPlugInInfo.quit-proc" link="libgimp-gimp.html#GimpPlugInInfo.quit-proc"/>
    <keyword type="member" name="GimpPlugInInfo.query-proc" link="libgimp-gimp.html#GimpPlugInInfo.query-proc"/>
    <keyword type="member" name="GimpPlugInInfo.run-proc" link="libgimp-gimp.html#GimpPlugInInfo.run-proc"/>
  </functions>
</book>