File: libgimpwidgets-GimpWidgets.html

package info (click to toggle)
gimp 2.2.13-1etch4
  • links: PTS
  • area: main
  • in suites: etch
  • size: 94,832 kB
  • ctags: 47,113
  • sloc: ansic: 524,858; xml: 36,798; lisp: 9,870; sh: 9,409; makefile: 7,923; python: 2,674; perl: 2,589; yacc: 520; lex: 334
file content (1720 lines) | stat: -rw-r--r-- 69,485 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>GimpWidgets</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.68.1">
<link rel="start" href="index.html" title="GIMP Widgets Library Reference Manual">
<link rel="up" href="libgimpwidgets-utils.html" title="Part&#160;V.&#160;GIMP Widgets Utilities">
<link rel="prev" href="libgimpwidgets-GimpStock.html" title="GimpStock">
<link rel="next" href="libgimpwidgets-deprecated.html" title="Part&#160;VI.&#160;Deprecated API">
<meta name="generator" content="GTK-Doc V1.6 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="part" href="libgimpwidgets-widgets.html" title="Part&#160;I.&#160;GIMP Widgets">
<link rel="chapter" href="libgimpwidgets-hierarchy.html" title="Object Hierarchy">
<link rel="chapter" href="libgimpwidgets-cell-renderers.html" title="Cell Renderers for GtkTreeView">
<link rel="part" href="libgimpwidgets-colordisplay.html" title="Part&#160;II.&#160;GIMP Display Filters">
<link rel="part" href="libgimpwidgets-colorselector.html" title="Part&#160;III.&#160;GIMP Color Selectors">
<link rel="part" href="libgimpwidgets-controller.html" title="Part&#160;IV.&#160;GIMP Controllers">
<link rel="part" href="libgimpwidgets-utils.html" title="Part&#160;V.&#160;GIMP Widgets Utilities">
<link rel="part" href="libgimpwidgets-deprecated.html" title="Part&#160;VI.&#160;Deprecated API">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="libgimpwidgets-GimpStock.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="libgimpwidgets-utils.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GIMP Widgets Library Reference Manual</th>
<td><a accesskey="n" href="libgimpwidgets-deprecated.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts"><nobr><a href="#top_of_page" class="shortcut">Top</a>
                  &#160;|&#160;
                  <a href="#desc" class="shortcut">Description</a></nobr></td></tr>
</table>
<div class="refentry" lang="en">
<a name="libgimpwidgets-GimpWidgets"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="top_of_page"></a>GimpWidgets</span></h2>
<p>GimpWidgets &#8212; A collection of convenient widget constructors, standard callbacks and
helper functions.</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv">
<a name="synopsis"></a><h2>Synopsis</h2>
<pre class="synopsis">



GtkWidget*  <a href="libgimpwidgets-GimpWidgets.html#gimp-radio-group-new">gimp_radio_group_new</a>            (gboolean in_frame,
                                             const gchar *frame_title,
                                             ...);
GtkWidget*  <a href="libgimpwidgets-GimpWidgets.html#gimp-radio-group-new2">gimp_radio_group_new2</a>           (gboolean in_frame,
                                             const gchar *frame_title,
                                             GCallback radio_button_callback,
                                             gpointer radio_button_callback_data,
                                             gpointer initial,
                                             ...);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-radio-group-set-active">gimp_radio_group_set_active</a>     (GtkRadioButton *radio_button,
                                             gpointer item_data);
GtkWidget*  <a href="libgimpwidgets-GimpWidgets.html#gimp-int-radio-group-new">gimp_int_radio_group_new</a>        (gboolean in_frame,
                                             const gchar *frame_title,
                                             GCallback radio_button_callback,
                                             gpointer radio_button_callback_data,
                                             gint initial,
                                             ...);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-int-radio-group-set-active">gimp_int_radio_group_set_active</a> (GtkRadioButton *radio_button,
                                             gint item_data);
GtkWidget*  <a href="libgimpwidgets-GimpWidgets.html#gimp-spin-button-new">gimp_spin_button_new</a>            (GtkObject **adjustment,
                                             gdouble value,
                                             gdouble lower,
                                             gdouble upper,
                                             gdouble step_increment,
                                             gdouble page_increment,
                                             gdouble page_size,
                                             gdouble climb_rate,
                                             guint digits);
#define     <a href="libgimpwidgets-GimpWidgets.html#GIMP-SCALE-ENTRY-LABEL:CAPS">GIMP_SCALE_ENTRY_LABEL</a>          (adj)
#define     <a href="libgimpwidgets-GimpWidgets.html#GIMP-SCALE-ENTRY-SCALE:CAPS">GIMP_SCALE_ENTRY_SCALE</a>          (adj)
#define     <a href="libgimpwidgets-GimpWidgets.html#GIMP-SCALE-ENTRY-SCALE-ADJ:CAPS">GIMP_SCALE_ENTRY_SCALE_ADJ</a>      (adj)
#define     <a href="libgimpwidgets-GimpWidgets.html#GIMP-SCALE-ENTRY-SPINBUTTON:CAPS">GIMP_SCALE_ENTRY_SPINBUTTON</a>     (adj)
#define     <a href="libgimpwidgets-GimpWidgets.html#GIMP-SCALE-ENTRY-SPINBUTTON-ADJ:CAPS">GIMP_SCALE_ENTRY_SPINBUTTON_ADJ</a> (adj)
GtkObject*  <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-new">gimp_scale_entry_new</a>            (GtkTable *table,
                                             gint column,
                                             gint row,
                                             const gchar *text,
                                             gint scale_width,
                                             gint spinbutton_width,
                                             gdouble value,
                                             gdouble lower,
                                             gdouble upper,
                                             gdouble step_increment,
                                             gdouble page_increment,
                                             guint digits,
                                             gboolean constrain,
                                             gdouble unconstrained_lower,
                                             gdouble unconstrained_upper,
                                             const gchar *tooltip,
                                             const gchar *help_id);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-set-sensitive">gimp_scale_entry_set_sensitive</a>  (GtkObject *adjustment,
                                             gboolean sensitive);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-set-logarithmic">gimp_scale_entry_set_logarithmic</a>
                                            (GtkObject *adjustment,
                                             gboolean logarithmic);
gboolean    <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-get-logarithmic">gimp_scale_entry_get_logarithmic</a>
                                            (GtkObject *adjustment);
GtkObject*  <a href="libgimpwidgets-GimpWidgets.html#gimp-color-scale-entry-new">gimp_color_scale_entry_new</a>      (GtkTable *table,
                                             gint column,
                                             gint row,
                                             const gchar *text,
                                             gint scale_width,
                                             gint spinbutton_width,
                                             gdouble value,
                                             gdouble lower,
                                             gdouble upper,
                                             gdouble step_increment,
                                             gdouble page_increment,
                                             guint digits,
                                             const gchar *tooltip,
                                             const gchar *help_id);
#define     <a href="libgimpwidgets-GimpWidgets.html#GIMP-RANDOM-SEED-SPINBUTTON:CAPS">GIMP_RANDOM_SEED_SPINBUTTON</a>     (hbox)
#define     <a href="libgimpwidgets-GimpWidgets.html#GIMP-RANDOM-SEED-SPINBUTTON-ADJ:CAPS">GIMP_RANDOM_SEED_SPINBUTTON_ADJ</a> (hbox)
#define     <a href="libgimpwidgets-GimpWidgets.html#GIMP-RANDOM-SEED-TOGGLE:CAPS">GIMP_RANDOM_SEED_TOGGLE</a>         (hbox)
GtkWidget*  <a href="libgimpwidgets-GimpWidgets.html#gimp-random-seed-new">gimp_random_seed_new</a>            (guint32 *seed,
                                             gboolean *random_seed);
#define     <a href="libgimpwidgets-GimpWidgets.html#GIMP-COORDINATES-CHAINBUTTON:CAPS">GIMP_COORDINATES_CHAINBUTTON</a>    (sizeentry)
GtkWidget*  <a href="libgimpwidgets-GimpWidgets.html#gimp-coordinates-new">gimp_coordinates_new</a>            (<a
href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit"
>GimpUnit</a> unit,
                                             const gchar *unit_format,
                                             gboolean menu_show_pixels,
                                             gboolean menu_show_percent,
                                             gint spinbutton_width,
                                             <a href="GimpSizeEntry.html#GimpSizeEntryUpdatePolicy">GimpSizeEntryUpdatePolicy</a> update_policy,
                                             gboolean chainbutton_active,
                                             gboolean chain_constrains_ratio,
                                             const gchar *xlabel,
                                             gdouble x,
                                             gdouble xres,
                                             gdouble lower_boundary_x,
                                             gdouble upper_boundary_x,
                                             gdouble xsize_0,
                                             gdouble xsize_100,
                                             const gchar *ylabel,
                                             gdouble y,
                                             gdouble yres,
                                             gdouble lower_boundary_y,
                                             gdouble upper_boundary_y,
                                             gdouble ysize_0,
                                             gdouble ysize_100);
GtkWidget*  <a href="libgimpwidgets-GimpWidgets.html#gimp-pixmap-button-new">gimp_pixmap_button_new</a>          (gchar **xpm_data,
                                             const gchar *text);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-toggle-button-sensitive-update">gimp_toggle_button_sensitive_update</a>
                                            (GtkToggleButton *toggle_button);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-toggle-button-update">gimp_toggle_button_update</a>       (GtkWidget *widget,
                                             gpointer data);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-radio-button-update">gimp_radio_button_update</a>        (GtkWidget *widget,
                                             gpointer data);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-int-adjustment-update">gimp_int_adjustment_update</a>      (GtkAdjustment *adjustment,
                                             gpointer data);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-uint-adjustment-update">gimp_uint_adjustment_update</a>     (GtkAdjustment *adjustment,
                                             gpointer data);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-float-adjustment-update">gimp_float_adjustment_update</a>    (GtkAdjustment *adjustment,
                                             gpointer data);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-double-adjustment-update">gimp_double_adjustment_update</a>   (GtkAdjustment *adjustment,
                                             gpointer data);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-unit-menu-update">gimp_unit_menu_update</a>           (GtkWidget *widget,
                                             gpointer data);
GtkWidget*  <a href="libgimpwidgets-GimpWidgets.html#gimp-table-attach-aligned">gimp_table_attach_aligned</a>       (GtkTable *table,
                                             gint column,
                                             gint row,
                                             const gchar *label_text,
                                             gfloat xalign,
                                             gfloat yalign,
                                             GtkWidget *widget,
                                             gint colspan,
                                             gboolean left_align);
void        <a href="libgimpwidgets-GimpWidgets.html#gimp-label-set-attributes">gimp_label_set_attributes</a>       (GtkLabel *label,
                                             ...);
</pre>
</div>
<div class="refsect1" lang="en">
<a name="desc"></a><h2>Description</h2>
<p>

</p>
</div>
<div class="refsect1" lang="en">
<a name="details"></a><h2>Details</h2>
<div class="refsect2" lang="en">
<a name="id2619738"></a><h3>
<a name="gimp-radio-group-new"></a>gimp_radio_group_new ()</h3>
<a class="indexterm" name="id2619749"></a><pre class="programlisting">GtkWidget*  gimp_radio_group_new            (gboolean in_frame,
                                             const gchar *frame_title,
                                             ...);</pre>
<p>
Convenience function to create a group of radio buttons embedded into
a <span class="type">GtkFrame</span> or <span class="type">GtkVbox</span>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>in_frame</code></em>&#160;:</span></td>
<td>    <code class="literal">TRUE</code> if you want a <span class="type">GtkFrame</span> around the radio button group.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>frame_title</code></em>&#160;:</span></td>
<td> The title of the Frame or <code class="literal">NULL</code> if you don't want a title.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>...</code></em>&#160;:</span></td>
<td>         A <code class="literal">NULL</code>-terminated <em class="parameter"><code>va_list</code></em> describing the radio buttons.
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> A <span class="type">GtkFrame</span> or <span class="type">GtkVbox</span> (depending on <em class="parameter"><code>in_frame</code></em>).
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2619921"></a><h3>
<a name="gimp-radio-group-new2"></a>gimp_radio_group_new2 ()</h3>
<a class="indexterm" name="id2619932"></a><pre class="programlisting">GtkWidget*  gimp_radio_group_new2           (gboolean in_frame,
                                             const gchar *frame_title,
                                             GCallback radio_button_callback,
                                             gpointer radio_button_callback_data,
                                             gpointer initial,
                                             ...);</pre>
<p>
Convenience function to create a group of radio buttons embedded into
a <span class="type">GtkFrame</span> or <span class="type">GtkVbox</span>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>in_frame</code></em>&#160;:</span></td>
<td>              <code class="literal">TRUE</code> if you want a <span class="type">GtkFrame</span> around the
                        radio button group.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>frame_title</code></em>&#160;:</span></td>
<td>           The title of the Frame or <code class="literal">NULL</code> if you don't want
                        a title.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>radio_button_callback</code></em>&#160;:</span></td>
<td> The callback each button's "toggled" signal will
                        be connected with.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>radio_button_callback_data</code></em>&#160;:</span></td>
<td>
                        The data which will be passed to <code class="function">g_signal_connect()</code>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>initial</code></em>&#160;:</span></td>
<td>               The <em class="parameter"><code>item_data</code></em> of the initially pressed radio button.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>...</code></em>&#160;:</span></td>
<td>                   A <code class="literal">NULL</code>-terminated <em class="parameter"><code>va_list</code></em> describing
                        the radio buttons.
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> A <span class="type">GtkFrame</span> or <span class="type">GtkVbox</span> (depending on <em class="parameter"><code>in_frame</code></em>).
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2620189"></a><h3>
<a name="gimp-radio-group-set-active"></a>gimp_radio_group_set_active ()</h3>
<a class="indexterm" name="id2620201"></a><pre class="programlisting">void        gimp_radio_group_set_active     (GtkRadioButton *radio_button,
                                             gpointer item_data);</pre>
<p>
Calls <code class="function">gtk_toggle_button_set_active()</code> with the radio button that was
created with a matching <em class="parameter"><code>item_data</code></em>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>radio_button</code></em>&#160;:</span></td>
<td> Pointer to a <span class="type">GtkRadioButton</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>item_data</code></em>&#160;:</span></td>
<td> The <em class="parameter"><code>item_data</code></em> of the radio button you want to select.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2620303"></a><h3>
<a name="gimp-int-radio-group-new"></a>gimp_int_radio_group_new ()</h3>
<a class="indexterm" name="id2620314"></a><pre class="programlisting">GtkWidget*  gimp_int_radio_group_new        (gboolean in_frame,
                                             const gchar *frame_title,
                                             GCallback radio_button_callback,
                                             gpointer radio_button_callback_data,
                                             gint initial,
                                             ...);</pre>
<p>
Convenience function to create a group of radio buttons embedded into
a <span class="type">GtkFrame</span> or <span class="type">GtkVbox</span>. This function does the same thing as
<a href="libgimpwidgets-GimpWidgets.html#gimp-radio-group-new2"><code class="function">gimp_radio_group_new2()</code></a>, but it takes integers as <em class="parameter"><code>item_data</code></em> instead of
pointers, since that is a very common case (mapping an enum to a radio
group).</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>in_frame</code></em>&#160;:</span></td>
<td>              <code class="literal">TRUE</code> if you want a <span class="type">GtkFrame</span> around the
                        radio button group.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>frame_title</code></em>&#160;:</span></td>
<td>           The title of the Frame or <code class="literal">NULL</code> if you don't want
                        a title.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>radio_button_callback</code></em>&#160;:</span></td>
<td> The callback each button's "toggled" signal will
                        be connected with.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>radio_button_callback_data</code></em>&#160;:</span></td>
<td>
                        The data which will be passed to <code class="function">g_signal_connect()</code>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>initial</code></em>&#160;:</span></td>
<td>               The <em class="parameter"><code>item_data</code></em> of the initially pressed radio button.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>...</code></em>&#160;:</span></td>
<td>                   A <code class="literal">NULL</code>-terminated <em class="parameter"><code>va_list</code></em> describing
                        the radio buttons.
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> A <span class="type">GtkFrame</span> or <span class="type">GtkVbox</span> (depending on <em class="parameter"><code>in_frame</code></em>).
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2620588"></a><h3>
<a name="gimp-int-radio-group-set-active"></a>gimp_int_radio_group_set_active ()</h3>
<a class="indexterm" name="id2620602"></a><pre class="programlisting">void        gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
                                             gint item_data);</pre>
<p>
Calls <code class="function">gtk_toggle_button_set_active()</code> with the radio button that was created
with a matching <em class="parameter"><code>item_data</code></em>. This function does the same thing as
<a href="libgimpwidgets-GimpWidgets.html#gimp-radio-group-set-active"><code class="function">gimp_radio_group_set_active()</code></a>, but takes integers as <em class="parameter"><code>item_data</code></em> instead
of pointers.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>radio_button</code></em>&#160;:</span></td>
<td> Pointer to a <span class="type">GtkRadioButton</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>item_data</code></em>&#160;:</span></td>
<td> The <em class="parameter"><code>item_data</code></em> of the radio button you want to select.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2620720"></a><h3>
<a name="gimp-spin-button-new"></a>gimp_spin_button_new ()</h3>
<a class="indexterm" name="id2620731"></a><pre class="programlisting">GtkWidget*  gimp_spin_button_new            (GtkObject **adjustment,
                                             gdouble value,
                                             gdouble lower,
                                             gdouble upper,
                                             gdouble step_increment,
                                             gdouble page_increment,
                                             gdouble page_size,
                                             gdouble climb_rate,
                                             guint digits);</pre>
<p>
This function is a shortcut for <code class="function">gtk_adjustment_new()</code> and a subsequent
<code class="function">gtk_spin_button_new()</code> and does some more initialisation stuff like
setting a standard minimum horizontal size.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>adjustment</code></em>&#160;:</span></td>
<td>     Returns the spinbutton's <span class="type">GtkAdjustment</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>value</code></em>&#160;:</span></td>
<td>          The initial value of the spinbutton.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>lower</code></em>&#160;:</span></td>
<td>          The lower boundary.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>upper</code></em>&#160;:</span></td>
<td>          The uppper boundary.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>step_increment</code></em>&#160;:</span></td>
<td> The spinbutton's step increment.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>page_increment</code></em>&#160;:</span></td>
<td> The spinbutton's page increment (mouse button 2).
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>page_size</code></em>&#160;:</span></td>
<td>      The spinbutton's page size.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>climb_rate</code></em>&#160;:</span></td>
<td>     The spinbutton's climb rate.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>digits</code></em>&#160;:</span></td>
<td>         The spinbutton's number of decimal digits.
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> A <span class="type">GtkSpinbutton</span> and it's <span class="type">GtkAdjustment</span>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2621007"></a><h3>
<a name="GIMP-SCALE-ENTRY-LABEL:CAPS"></a>GIMP_SCALE_ENTRY_LABEL()</h3>
<a class="indexterm" name="id2621018"></a><pre class="programlisting">#define     GIMP_SCALE_ENTRY_LABEL(adj)</pre>
<p>
Returns the scale_entry's <span class="type">GtkLabel</span>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td>
<span class="term"><em class="parameter"><code>adj</code></em>&#160;:</span></td>
<td>The <span class="type">GtkAdjustment</span> returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-new"><code class="function">gimp_scale_entry_new()</code></a>.


</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2621076"></a><h3>
<a name="GIMP-SCALE-ENTRY-SCALE:CAPS"></a>GIMP_SCALE_ENTRY_SCALE()</h3>
<a class="indexterm" name="id2621087"></a><pre class="programlisting">#define     GIMP_SCALE_ENTRY_SCALE(adj)</pre>
<p>
Returns the scale_entry's <span class="type">GtkHScale</span>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td>
<span class="term"><em class="parameter"><code>adj</code></em>&#160;:</span></td>
<td>The <span class="type">GtkAdjustment</span> returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-new"><code class="function">gimp_scale_entry_new()</code></a>.


</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2621145"></a><h3>
<a name="GIMP-SCALE-ENTRY-SCALE-ADJ:CAPS"></a>GIMP_SCALE_ENTRY_SCALE_ADJ()</h3>
<a class="indexterm" name="id2621158"></a><pre class="programlisting">#define     GIMP_SCALE_ENTRY_SCALE_ADJ(adj)</pre>
<p>
Returns the <span class="type">GtkAdjustment</span> of the scale_entry's <span class="type">GtkHScale</span>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td>
<span class="term"><em class="parameter"><code>adj</code></em>&#160;:</span></td>
<td>The <span class="type">GtkAdjustment</span> returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-new"><code class="function">gimp_scale_entry_new()</code></a>.


</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2621223"></a><h3>
<a name="GIMP-SCALE-ENTRY-SPINBUTTON:CAPS"></a>GIMP_SCALE_ENTRY_SPINBUTTON()</h3>
<a class="indexterm" name="id2476279"></a><pre class="programlisting">#define     GIMP_SCALE_ENTRY_SPINBUTTON(adj)</pre>
<p>
Returns the scale_entry's <span class="type">GtkSpinButton</span>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td>
<span class="term"><em class="parameter"><code>adj</code></em>&#160;:</span></td>
<td>The <span class="type">GtkAdjustment</span> returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-new"><code class="function">gimp_scale_entry_new()</code></a>.


</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2621274"></a><h3>
<a name="GIMP-SCALE-ENTRY-SPINBUTTON-ADJ:CAPS"></a>GIMP_SCALE_ENTRY_SPINBUTTON_ADJ()</h3>
<a class="indexterm" name="id2621287"></a><pre class="programlisting">#define     GIMP_SCALE_ENTRY_SPINBUTTON_ADJ(adj)</pre>
<p>
Returns the <span class="type">GtkAdjustment</span> of the scale_entry's <span class="type">GtkSpinButton</span>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td>
<span class="term"><em class="parameter"><code>adj</code></em>&#160;:</span></td>
<td>The <span class="type">GtkAdjustment</span> returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-new"><code class="function">gimp_scale_entry_new()</code></a>.


</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2621346"></a><h3>
<a name="gimp-scale-entry-new"></a>gimp_scale_entry_new ()</h3>
<a class="indexterm" name="id2621357"></a><pre class="programlisting">GtkObject*  gimp_scale_entry_new            (GtkTable *table,
                                             gint column,
                                             gint row,
                                             const gchar *text,
                                             gint scale_width,
                                             gint spinbutton_width,
                                             gdouble value,
                                             gdouble lower,
                                             gdouble upper,
                                             gdouble step_increment,
                                             gdouble page_increment,
                                             guint digits,
                                             gboolean constrain,
                                             gdouble unconstrained_lower,
                                             gdouble unconstrained_upper,
                                             const gchar *tooltip,
                                             const gchar *help_id);</pre>
<p>
This function creates a <span class="type">GtkLabel</span>, a <span class="type">GtkHScale</span> and a <span class="type">GtkSpinButton</span> and
attaches them to a 3-column <span class="type">GtkTable</span>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>table</code></em>&#160;:</span></td>
<td>               The <span class="type">GtkTable</span> the widgets will be attached to.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>column</code></em>&#160;:</span></td>
<td>              The column to start with.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>row</code></em>&#160;:</span></td>
<td>                 The row to attach the widgets.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>text</code></em>&#160;:</span></td>
<td>                The text for the <span class="type">GtkLabel</span> which will appear
                      left of the <span class="type">GtkHScale</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>scale_width</code></em>&#160;:</span></td>
<td>         The minimum horizontal size of the <span class="type">GtkHScale</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>spinbutton_width</code></em>&#160;:</span></td>
<td>    The minimum horizontal size of the <span class="type">GtkSpinButton</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>value</code></em>&#160;:</span></td>
<td>               The initial value.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>lower</code></em>&#160;:</span></td>
<td>               The lower boundary.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>upper</code></em>&#160;:</span></td>
<td>               The upper boundary.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>step_increment</code></em>&#160;:</span></td>
<td>      The step increment.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>page_increment</code></em>&#160;:</span></td>
<td>      The page increment.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>digits</code></em>&#160;:</span></td>
<td>              The number of decimal digits.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>constrain</code></em>&#160;:</span></td>
<td>           <code class="literal">TRUE</code> if the range of possible values of the
                      <span class="type">GtkSpinButton</span> should be the same as of the <span class="type">GtkHScale</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>unconstrained_lower</code></em>&#160;:</span></td>
<td> The spinbutton's lower boundary
                      if <em class="parameter"><code>constrain</code></em> == <code class="literal">FALSE</code>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>unconstrained_upper</code></em>&#160;:</span></td>
<td> The spinbutton's upper boundary
                      if <em class="parameter"><code>constrain</code></em> == <code class="literal">FALSE</code>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>tooltip</code></em>&#160;:</span></td>
<td>             A tooltip message for the scale and the spinbutton.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>help_id</code></em>&#160;:</span></td>
<td>             The widgets' help_id (see <a href="libgimpwidgets-GimpHelpUI.html#gimp-help-set-help-data"><code class="function">gimp_help_set_help_data()</code></a>).
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> The <span class="type">GtkSpinButton</span>'s <span class="type">GtkAdjustment</span>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2621854"></a><h3>
<a name="gimp-scale-entry-set-sensitive"></a>gimp_scale_entry_set_sensitive ()</h3>
<a class="indexterm" name="id2621866"></a><pre class="programlisting">void        gimp_scale_entry_set_sensitive  (GtkObject *adjustment,
                                             gboolean sensitive);</pre>
<p>
Sets the sensitivity of the scale_entry's <span class="type">GtkLabel</span>, <span class="type">GtkHScale</span> and
<span class="type">GtkSpinbutton</span>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>adjustment</code></em>&#160;:</span></td>
<td> a <span class="type">GtkAdjustment</span> returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-new"><code class="function">gimp_scale_entry_new()</code></a>
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>sensitive</code></em>&#160;:</span></td>
<td>  a boolean value with the same semantics as the <em class="parameter"><code>sensitive</code></em>
             parameter of <code class="function">gtk_widget_set_sensitive()</code>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2621978"></a><h3>
<a name="gimp-scale-entry-set-logarithmic"></a>gimp_scale_entry_set_logarithmic ()</h3>
<a class="indexterm" name="id2621992"></a><pre class="programlisting">void        gimp_scale_entry_set_logarithmic
                                            (GtkObject *adjustment,
                                             gboolean logarithmic);</pre>
<p>
Sets whether the scale_entry's scale widget will behave in a linear
or logharithmic fashion. Useful when an entry has to attend large
ranges, but smaller selections on that range require a finer
adjustment.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>adjustment</code></em>&#160;:</span></td>
<td>  a  <span class="type">GtkAdjustment</span> as returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-new"><code class="function">gimp_scale_entry_new()</code></a>
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>logarithmic</code></em>&#160;:</span></td>
<td> a boolean value to set or reset logarithmic behaviour
              of the scale widget
</td>
</tr>
</tbody>
</table></div>
<p>Since  GIMP 2.2
</p>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2622080"></a><h3>
<a name="gimp-scale-entry-get-logarithmic"></a>gimp_scale_entry_get_logarithmic ()</h3>
<a class="indexterm" name="id2622095"></a><pre class="programlisting">gboolean    gimp_scale_entry_get_logarithmic
                                            (GtkObject *adjustment);</pre>
<p>
</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>adjustment</code></em>&#160;:</span></td>
<td> a  <span class="type">GtkAdjustment</span> as returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-scale-entry-new"><code class="function">gimp_scale_entry_new()</code></a>
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> <code class="literal">TRUE</code> if the the entry's scale widget will behave in
              logharithmic fashion, <code class="literal">FALSE</code> for linear behaviour.

</td>
</tr>
</tbody>
</table></div>
<p>Since  GIMP 2.2
</p>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2622186"></a><h3>
<a name="gimp-color-scale-entry-new"></a>gimp_color_scale_entry_new ()</h3>
<a class="indexterm" name="id2622197"></a><pre class="programlisting">GtkObject*  gimp_color_scale_entry_new      (GtkTable *table,
                                             gint column,
                                             gint row,
                                             const gchar *text,
                                             gint scale_width,
                                             gint spinbutton_width,
                                             gdouble value,
                                             gdouble lower,
                                             gdouble upper,
                                             gdouble step_increment,
                                             gdouble page_increment,
                                             guint digits,
                                             const gchar *tooltip,
                                             const gchar *help_id);</pre>
<p>
This function creates a <span class="type">GtkLabel</span>, a <a href="GimpColorScale.html" title="GimpColorScale"><span class="type">GimpColorScale</span></a> and a
<span class="type">GtkSpinButton</span> and attaches them to a 3-column <span class="type">GtkTable</span>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>table</code></em>&#160;:</span></td>
<td>               The <span class="type">GtkTable</span> the widgets will be attached to.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>column</code></em>&#160;:</span></td>
<td>              The column to start with.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>row</code></em>&#160;:</span></td>
<td>                 The row to attach the widgets.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>text</code></em>&#160;:</span></td>
<td>                The text for the <span class="type">GtkLabel</span> which will appear
                      left of the <span class="type">GtkHScale</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>scale_width</code></em>&#160;:</span></td>
<td>         The minimum horizontal size of the <span class="type">GtkHScale</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>spinbutton_width</code></em>&#160;:</span></td>
<td>    The minimum horizontal size of the <span class="type">GtkSpinButton</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>value</code></em>&#160;:</span></td>
<td>               The initial value.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>lower</code></em>&#160;:</span></td>
<td>               The lower boundary.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>upper</code></em>&#160;:</span></td>
<td>               The upper boundary.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>step_increment</code></em>&#160;:</span></td>
<td>      The step increment.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>page_increment</code></em>&#160;:</span></td>
<td>      The page increment.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>digits</code></em>&#160;:</span></td>
<td>              The number of decimal digits.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>tooltip</code></em>&#160;:</span></td>
<td>             A tooltip message for the scale and the spinbutton.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>help_id</code></em>&#160;:</span></td>
<td>             The widgets' help_id (see <a href="libgimpwidgets-GimpHelpUI.html#gimp-help-set-help-data"><code class="function">gimp_help_set_help_data()</code></a>).
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> The <span class="type">GtkSpinButton</span>'s <span class="type">GtkAdjustment</span>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2622586"></a><h3>
<a name="GIMP-RANDOM-SEED-SPINBUTTON:CAPS"></a>GIMP_RANDOM_SEED_SPINBUTTON()</h3>
<a class="indexterm" name="id2622598"></a><pre class="programlisting">#define     GIMP_RANDOM_SEED_SPINBUTTON(hbox)</pre>
<p>
Returns the random_seed's <span class="type">GtkSpinButton</span>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td>
<span class="term"><em class="parameter"><code>hbox</code></em>&#160;:</span></td>
<td>The <span class="type">GtkHBox</span> returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-random-seed-new"><code class="function">gimp_random_seed_new()</code></a>.


</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2622651"></a><h3>
<a name="GIMP-RANDOM-SEED-SPINBUTTON-ADJ:CAPS"></a>GIMP_RANDOM_SEED_SPINBUTTON_ADJ()</h3>
<a class="indexterm" name="id2622664"></a><pre class="programlisting">#define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox)</pre>
<p>
Returns the <span class="type">GtkAdjustment</span> of the random_seed's <span class="type">GtkSpinButton</span>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td>
<span class="term"><em class="parameter"><code>hbox</code></em>&#160;:</span></td>
<td>The <span class="type">GtkHBox</span> returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-random-seed-new"><code class="function">gimp_random_seed_new()</code></a>.


</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2622723"></a><h3>
<a name="GIMP-RANDOM-SEED-TOGGLE:CAPS"></a>GIMP_RANDOM_SEED_TOGGLE()</h3>
<a class="indexterm" name="id2622736"></a><pre class="programlisting">#define     GIMP_RANDOM_SEED_TOGGLE(hbox)</pre>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td>
<span class="term"><em class="parameter"><code>hbox</code></em>&#160;:</span></td>
<td>


</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2622766"></a><h3>
<a name="gimp-random-seed-new"></a>gimp_random_seed_new ()</h3>
<a class="indexterm" name="id2622776"></a><pre class="programlisting">GtkWidget*  gimp_random_seed_new            (guint32 *seed,
                                             gboolean *random_seed);</pre>
<p>
Creates a widget that allows the user to control how the random number
generator is initialized.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>seed</code></em>&#160;:</span></td>
<td>        A pointer to the variable which stores the random seed.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>random_seed</code></em>&#160;:</span></td>
<td> A pointer to a boolean indicating whether seed should be
              initialised randomly or not.
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> A <span class="type">GtkHBox</span> containing a <span class="type">GtkSpinButton</span> for the seed and
         a <span class="type">GtkButton</span> for setting a random seed.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2622873"></a><h3>
<a name="GIMP-COORDINATES-CHAINBUTTON:CAPS"></a>GIMP_COORDINATES_CHAINBUTTON()</h3>
<a class="indexterm" name="id2622885"></a><pre class="programlisting">#define     GIMP_COORDINATES_CHAINBUTTON(sizeentry)</pre>
<p>
Returns the <a href="GimpChainButton.html" title="GimpChainButton"><span class="type">GimpChainButton</span></a> which is attached to the <a href="GimpSizeEntry.html" title="GimpSizeEntry"><span class="type">GimpSizeEntry</span></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td>
<span class="term"><em class="parameter"><code>sizeentry</code></em>&#160;:</span></td>
<td>The <a href="GimpSizeEntry.html" title="GimpSizeEntry"><span class="type">GimpSizeEntry</span></a> returned by <a href="libgimpwidgets-GimpWidgets.html#gimp-coordinates-new"><code class="function">gimp_coordinates_new()</code></a>.


</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2622944"></a><h3>
<a name="gimp-coordinates-new"></a>gimp_coordinates_new ()</h3>
<a class="indexterm" name="id2622955"></a><pre class="programlisting">GtkWidget*  gimp_coordinates_new            (<a
href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit"
>GimpUnit</a> unit,
                                             const gchar *unit_format,
                                             gboolean menu_show_pixels,
                                             gboolean menu_show_percent,
                                             gint spinbutton_width,
                                             <a href="GimpSizeEntry.html#GimpSizeEntryUpdatePolicy">GimpSizeEntryUpdatePolicy</a> update_policy,
                                             gboolean chainbutton_active,
                                             gboolean chain_constrains_ratio,
                                             const gchar *xlabel,
                                             gdouble x,
                                             gdouble xres,
                                             gdouble lower_boundary_x,
                                             gdouble upper_boundary_x,
                                             gdouble xsize_0,
                                             gdouble xsize_100,
                                             const gchar *ylabel,
                                             gdouble y,
                                             gdouble yres,
                                             gdouble lower_boundary_y,
                                             gdouble upper_boundary_y,
                                             gdouble ysize_0,
                                             gdouble ysize_100);</pre>
<p>
Convenience function that creates a <a href="GimpSizeEntry.html" title="GimpSizeEntry"><span class="type">GimpSizeEntry</span></a> with two fields for x/y
coordinates/sizes with a <a href="GimpChainButton.html" title="GimpChainButton"><span class="type">GimpChainButton</span></a> attached to constrain either the
two fields' values or the ratio between them.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>unit</code></em>&#160;:</span></td>
<td>                   The initial unit of the <a href="GimpUnitMenu.html" title="GimpUnitMenu"><span class="type">GimpUnitMenu</span></a>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>unit_format</code></em>&#160;:</span></td>
<td>            A printf-like unit-format string as is used with
                         <a href="GimpUnitMenu.html#gimp-unit-menu-new"><code class="function">gimp_unit_menu_new()</code></a>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>menu_show_pixels</code></em>&#160;:</span></td>
<td>       <code class="literal">TRUE</code> if the <a href="GimpUnitMenu.html" title="GimpUnitMenu"><span class="type">GimpUnitMenu</span></a> should contain an item
                         for GIMP_UNIT_PIXEL.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>menu_show_percent</code></em>&#160;:</span></td>
<td>      <code class="literal">TRUE</code> if the <a href="GimpUnitMenu.html" title="GimpUnitMenu"><span class="type">GimpUnitMenu</span></a> should contain an item
                         for GIMP_UNIT_PERCENT.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>spinbutton_width</code></em>&#160;:</span></td>
<td>       The horizontal size of the <a href="GimpSizeEntry.html" title="GimpSizeEntry"><span class="type">GimpSizeEntry</span></a>'s
                          <span class="type">GtkSpinButton</span>'s.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>update_policy</code></em>&#160;:</span></td>
<td>          The update policy for the <a href="GimpSizeEntry.html" title="GimpSizeEntry"><span class="type">GimpSizeEntry</span></a>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>chainbutton_active</code></em>&#160;:</span></td>
<td>     <code class="literal">TRUE</code> if the attached <a href="GimpChainButton.html" title="GimpChainButton"><span class="type">GimpChainButton</span></a> should be
                         active.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>chain_constrains_ratio</code></em>&#160;:</span></td>
<td> <code class="literal">TRUE</code> if the chainbutton should constrain the
                         fields' aspect ratio. If <code class="literal">FALSE</code>, the values will
                         be constrained.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>xlabel</code></em>&#160;:</span></td>
<td>                 The label for the X coordinate.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>x</code></em>&#160;:</span></td>
<td>                      The initial value of the X coordinate.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>xres</code></em>&#160;:</span></td>
<td>                   The horizontal resolution in DPI.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>lower_boundary_x</code></em>&#160;:</span></td>
<td>       The lower boundary of the X coordinate.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>upper_boundary_x</code></em>&#160;:</span></td>
<td>       The upper boundary of the X coordinate.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>xsize_0</code></em>&#160;:</span></td>
<td>                The X value which will be treated as 0%.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>xsize_100</code></em>&#160;:</span></td>
<td>              The X value which will be treated as 100%.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>ylabel</code></em>&#160;:</span></td>
<td>                 The label for the Y coordinate.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>y</code></em>&#160;:</span></td>
<td>                      The initial value of the Y coordinate.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>yres</code></em>&#160;:</span></td>
<td>                   The vertical resolution in DPI.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>lower_boundary_y</code></em>&#160;:</span></td>
<td>       The lower boundary of the Y coordinate.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>upper_boundary_y</code></em>&#160;:</span></td>
<td>       The upper boundary of the Y coordinate.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>ysize_0</code></em>&#160;:</span></td>
<td>                The Y value which will be treated as 0%.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>ysize_100</code></em>&#160;:</span></td>
<td>              The Y value which will be treated as 100%.
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> The new <a href="GimpSizeEntry.html" title="GimpSizeEntry"><span class="type">GimpSizeEntry</span></a>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2623548"></a><h3>
<a name="gimp-pixmap-button-new"></a>gimp_pixmap_button_new ()</h3>
<a class="indexterm" name="id2623560"></a><pre class="programlisting">GtkWidget*  gimp_pixmap_button_new          (gchar **xpm_data,
                                             const gchar *text);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">gimp_pixmap_button_new</code> is deprecated and should not be used in newly-written code.</p>
</div>
<p>
Convenience function that creates a <span class="type">GtkButton</span> with a <a href="GimpPixmap.html" title="GimpPixmap"><span class="type">GimpPixmap</span></a>
and an optional <span class="type">GtkLabel</span>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>xpm_data</code></em>&#160;:</span></td>
<td> The XPM data which will be passed to <a href="GimpPixmap.html#gimp-pixmap-new"><code class="function">gimp_pixmap_new()</code></a>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>text</code></em>&#160;:</span></td>
<td>     An optional text which will appear right of the pixmap.
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> The new <span class="type">GtkButton</span>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2623690"></a><h3>
<a name="gimp-toggle-button-sensitive-update"></a>gimp_toggle_button_sensitive_update ()</h3>
<a class="indexterm" name="id2623705"></a><pre class="programlisting">void        gimp_toggle_button_sensitive_update
                                            (GtkToggleButton *toggle_button);</pre>
<p>
If you attached a pointer to a <span class="type">GtkWidget</span> with <code class="function">g_object_set_data()</code> and
the "set_sensitive" key to the <span class="type">GtkToggleButton</span>, the sensitive state of
the attached widget will be set according to the toggle button's
"active" state.
</p>
<p>
You can attach an arbitrary list of widgets by attaching another
"set_sensitive" data pointer to the first widget (and so on...).
</p>
<p>
This function can also set the sensitive state according to the toggle
button's inverse "active" state by attaching widgets with the
"inverse_sensitive" key.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td>
<span class="term"><em class="parameter"><code>toggle_button</code></em>&#160;:</span></td>
<td> The <span class="type">GtkToggleButton</span> the "set_sensitive" and
                "inverse_sensitive" lists are attached to.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2623803"></a><h3>
<a name="gimp-toggle-button-update"></a>gimp_toggle_button_update ()</h3>
<a class="indexterm" name="id2623817"></a><pre class="programlisting">void        gimp_toggle_button_update       (GtkWidget *widget,
                                             gpointer data);</pre>
<p>
Note that this function calls <a href="libgimpwidgets-GimpWidgets.html#gimp-toggle-button-sensitive-update"><code class="function">gimp_toggle_button_sensitive_update()</code></a>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>widget</code></em>&#160;:</span></td>
<td> A <span class="type">GtkToggleButton</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>data</code></em>&#160;:</span></td>
<td>   A pointer to a <span class="type">gint</span> variable which will store the value of
         <code class="function">gtk_toggle_button_get_active()</code>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2623923"></a><h3>
<a name="gimp-radio-button-update"></a>gimp_radio_button_update ()</h3>
<a class="indexterm" name="id2623937"></a><pre class="programlisting">void        gimp_radio_button_update        (GtkWidget *widget,
                                             gpointer data);</pre>
<p>
Note that this function calls <a href="libgimpwidgets-GimpWidgets.html#gimp-toggle-button-sensitive-update"><code class="function">gimp_toggle_button_sensitive_update()</code></a>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>widget</code></em>&#160;:</span></td>
<td> A <span class="type">GtkRadioButton</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>data</code></em>&#160;:</span></td>
<td>   A pointer to a <span class="type">gint</span> variable which will store the value of
         GPOINTER_TO_INT (g_object_get_data (<em class="parameter"><code>widget</code></em>, "gimp-item-data")).
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2624040"></a><h3>
<a name="gimp-int-adjustment-update"></a>gimp_int_adjustment_update ()</h3>
<a class="indexterm" name="id2624054"></a><pre class="programlisting">void        gimp_int_adjustment_update      (GtkAdjustment *adjustment,
                                             gpointer data);</pre>
<p>
Note that the <span class="type">GtkAdjustment</span>'s value (which is a <span class="type">gdouble</span>) will be
rounded with <a
href="../libgimpmath/libgimpmath-GimpMath.html#RINT:CAPS"
><code class="function">RINT()</code></a>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>adjustment</code></em>&#160;:</span></td>
<td> A <span class="type">GtkAdjustment</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>data</code></em>&#160;:</span></td>
<td>       A pointer to a <span class="type">gint</span> variable which will store the
             <em class="parameter"><code>adjustment</code></em>'s value.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2624171"></a><h3>
<a name="gimp-uint-adjustment-update"></a>gimp_uint_adjustment_update ()</h3>
<a class="indexterm" name="id2624185"></a><pre class="programlisting">void        gimp_uint_adjustment_update     (GtkAdjustment *adjustment,
                                             gpointer data);</pre>
<p>
Note that the <span class="type">GtkAdjustment</span>'s value (which is a <span class="type">gdouble</span>) will be rounded
with (<span class="type">guint</span>) (value + 0.5).</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>adjustment</code></em>&#160;:</span></td>
<td> A <span class="type">GtkAdjustment</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>data</code></em>&#160;:</span></td>
<td>       A pointer to a <span class="type">guint</span> variable which will store the
             <em class="parameter"><code>adjustment</code></em>'s value.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2624299"></a><h3>
<a name="gimp-float-adjustment-update"></a>gimp_float_adjustment_update ()</h3>
<a class="indexterm" name="id2624313"></a><pre class="programlisting">void        gimp_float_adjustment_update    (GtkAdjustment *adjustment,
                                             gpointer data);</pre>
<p>
</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>adjustment</code></em>&#160;:</span></td>
<td> A <span class="type">GtkAdjustment</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>data</code></em>&#160;:</span></td>
<td>       A pointer to a <span class="type">gfloat</span> varaiable which will store the
             <em class="parameter"><code>adjustment</code></em>'s value.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2624406"></a><h3>
<a name="gimp-double-adjustment-update"></a>gimp_double_adjustment_update ()</h3>
<a class="indexterm" name="id2624420"></a><pre class="programlisting">void        gimp_double_adjustment_update   (GtkAdjustment *adjustment,
                                             gpointer data);</pre>
<p>
</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>adjustment</code></em>&#160;:</span></td>
<td> A <span class="type">GtkAdjustment</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>data</code></em>&#160;:</span></td>
<td>       A pointer to a <span class="type">gdouble</span> variable which will store the
             <em class="parameter"><code>adjustment</code></em>'s value.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2624512"></a><h3>
<a name="gimp-unit-menu-update"></a>gimp_unit_menu_update ()</h3>
<a class="indexterm" name="id2624526"></a><pre class="programlisting">void        gimp_unit_menu_update           (GtkWidget *widget,
                                             gpointer data);</pre>
<p>
This callback can set the number of decimal digits of an arbitrary number
of <span class="type">GtkSpinButton</span>'s. To use this functionality, attach the spinbuttons
as list of data pointers attached with <code class="function">g_object_set_data()</code> with the
"set_digits" key.
</p>
<p>
See <a href="libgimpwidgets-GimpWidgets.html#gimp-toggle-button-sensitive-update"><code class="function">gimp_toggle_button_sensitive_update()</code></a> for a description of how
to set up the list.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>widget</code></em>&#160;:</span></td>
<td> A <a href="GimpUnitMenu.html" title="GimpUnitMenu"><span class="type">GimpUnitMenu</span></a>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>data</code></em>&#160;:</span></td>
<td>   A pointer to a <a
href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit"
><span class="type">GimpUnit</span></a> variable which will store the unit menu's
         value.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2624647"></a><h3>
<a name="gimp-table-attach-aligned"></a>gimp_table_attach_aligned ()</h3>
<a class="indexterm" name="id2624662"></a><pre class="programlisting">GtkWidget*  gimp_table_attach_aligned       (GtkTable *table,
                                             gint column,
                                             gint row,
                                             const gchar *label_text,
                                             gfloat xalign,
                                             gfloat yalign,
                                             GtkWidget *widget,
                                             gint colspan,
                                             gboolean left_align);</pre>
<p>
Note that the <em class="parameter"><code>label_text</code></em> can be <code class="literal">NULL</code> and that the widget will be
attached starting at (<em class="parameter"><code>column</code></em> + 1) in this case, too.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>table</code></em>&#160;:</span></td>
<td>      The <span class="type">GtkTable</span> the widgets will be attached to.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>column</code></em>&#160;:</span></td>
<td>     The column to start with.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>row</code></em>&#160;:</span></td>
<td>        The row to attach the widgets.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>label_text</code></em>&#160;:</span></td>
<td> The text for the <span class="type">GtkLabel</span> which will be attached left of
             the widget.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>xalign</code></em>&#160;:</span></td>
<td>     The horizontal alignment of the <span class="type">GtkLabel</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>yalign</code></em>&#160;:</span></td>
<td>     The vertival alignment of the <span class="type">GtkLabel</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>widget</code></em>&#160;:</span></td>
<td>     The <span class="type">GtkWidget</span> to attach right of the label.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>colspan</code></em>&#160;:</span></td>
<td>    The number of columns the widget will use.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>left_align</code></em>&#160;:</span></td>
<td> <code class="literal">TRUE</code> if the widget should be left-aligned.
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> The created <span class="type">GtkLabel</span>.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2624969"></a><h3>
<a name="gimp-label-set-attributes"></a>gimp_label_set_attributes ()</h3>
<a class="indexterm" name="id2624986"></a><pre class="programlisting">void        gimp_label_set_attributes       (GtkLabel *label,
                                             ...);</pre>
<p>
Sets Pango attributes on a <span class="type">GtkLabel</span> in a more convenient way than
<code class="function">gtk_label_set_attributes()</code>.
</p>
<p>
This function is useful if you want to change the font attributes
of a <span class="type">GtkLabel</span>. This is an alternative to using PangoMarkup which
is slow to parse and akward to handle in an i18n-friendly way.
</p>
<p>
The attributes are set on the complete label, from start to end. If
you need to set attributes on part of the label, you will have to
use the PangoAttributes API directly.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>label</code></em>&#160;:</span></td>
<td> a <span class="type">GtkLabel</span>
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>...</code></em>&#160;:</span></td>
<td>   a list of PangoAttrType and value pairs terminated by -1.
</td>
</tr>
</tbody>
</table></div>
<p>Since  GIMP 2.2
</p>
</div>
</div>
</div>
</body>
</html>