File: GwyParamTable.html

package info (click to toggle)
gwyddion 2.67-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 54,152 kB
  • sloc: ansic: 412,023; python: 7,885; sh: 5,492; makefile: 4,957; xml: 3,954; cpp: 2,107; pascal: 418; perl: 154; ruby: 130
file content (4769 lines) | stat: -rw-r--r-- 270,062 bytes parent folder | download
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
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GwyParamTable: Gwyddion Application Library Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
<link rel="home" href="index.html" title="Gwyddion Application Library Reference Manual">
<link rel="up" href="libgwyapp-module-support.html" title="Module Utilities">
<link rel="prev" href="GwyParams.html" title="GwyParams">
<link rel="next" href="GwyParamResource.html" title="GwyParamResource">
<meta name="generator" content="GTK-Doc V1.19 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</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="5"><tr valign="middle">
<td width="100%" align="left" class="shortcuts">
<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
                  <a href="#GwyParamTable.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
                  <a href="#GwyParamTable.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_signals">  <span class="dim">|</span> 
                  <a href="#GwyParamTable.signals" class="shortcut">Signals</a></span>
</td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><a accesskey="u" href="libgwyapp-module-support.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
<td><a accesskey="p" href="GwyParams.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="GwyParamResource.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="refentry">
<a name="GwyParamTable"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="GwyParamTable.top_of_page"></a>GwyParamTable</span></h2>
<p>GwyParamTable — User interface for parameter sets</p>
</td>
<td class="gallery_image" valign="top" align="right"></td>
</tr></table></div>
<div class="refsect1">
<a name="GwyParamTable.functions"></a><h2>Functions</h2>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="functions_proto_type">
<col class="functions_proto_name">
</colgroup>
<tbody>
<tr>
<td class="function_type">
<a href="http://developer.gnome.org/doc/API/2.0/gtk/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
</td>
<td class="function_name">
<span class="c_punctuation">(</span><a class="link" href="GwyParamTable.html#GwyCreateWidgetFunc" title="GwyCreateWidgetFunc ()">*GwyCreateWidgetFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://developer.gnome.org/doc/API/2.0/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
</td>
<td class="function_name">
<span class="c_punctuation">(</span><a class="link" href="GwyParamTable.html#GwyCreateTextFunc" title="GwyCreateTextFunc ()">*GwyCreateTextFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://developer.gnome.org/doc/API/2.0/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<span class="c_punctuation">(</span><a class="link" href="GwyParamTable.html#GwyEnumFilterFunc" title="GwyEnumFilterFunc ()">*GwyEnumFilterFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="returnvalue">GwyParamTable</span></a> *
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-new" title="gwy_param_table_new ()">gwy_param_table_new</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a class="link" href="GwyParams.html" title="GwyParams"><span class="returnvalue">GwyParams</span></a> *
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-params" title="gwy_param_table_params ()">gwy_param_table_params</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://developer.gnome.org/doc/API/2.0/gtk/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-widget" title="gwy_param_table_widget ()">gwy_param_table_widget</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-reset" title="gwy_param_table_reset ()">gwy_param_table_reset</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-from-params" title="gwy_param_table_set_from_params ()">gwy_param_table_set_from_params</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<a href="http://developer.gnome.org/doc/API/2.0/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-exists" title="gwy_param_table_exists ()">gwy_param_table_exists</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-param-changed" title="gwy_param_table_param_changed ()">gwy_param_table_param_changed</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-no-reset" title="gwy_param_table_set_no_reset ()">gwy_param_table_set_no_reset</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-no-resetv" title="gwy_param_table_set_no_resetv ()">gwy_param_table_set_no_resetv</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-sensitive" title="gwy_param_table_set_sensitive ()">gwy_param_table_set_sensitive</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-label" title="gwy_param_table_set_label ()">gwy_param_table_set_label</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-boolean" title="gwy_param_table_set_boolean ()">gwy_param_table_set_boolean</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-int" title="gwy_param_table_set_int ()">gwy_param_table_set_int</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-double" title="gwy_param_table_set_double ()">gwy_param_table_set_double</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-enum" title="gwy_param_table_set_enum ()">gwy_param_table_set_enum</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-flags" title="gwy_param_table_set_flags ()">gwy_param_table_set_flags</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-string" title="gwy_param_table_set_string ()">gwy_param_table_set_string</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-data-id" title="gwy_param_table_set_data_id ()">gwy_param_table_set_data_id</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-curve" title="gwy_param_table_set_curve ()">gwy_param_table_set_curve</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-header" title="gwy_param_table_append_header ()">gwy_param_table_append_header</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-separator" title="gwy_param_table_append_separator ()">gwy_param_table_append_separator</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-set-unitstr" title="gwy_param_table_set_unitstr ()">gwy_param_table_set_unitstr</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-checkbox" title="gwy_param_table_append_checkbox ()">gwy_param_table_append_checkbox</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-add-enabler" title="gwy_param_table_add_enabler ()">gwy_param_table_add_enabler</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-combo" title="gwy_param_table_append_combo ()">gwy_param_table_append_combo</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-combo-set-filter" title="gwy_param_table_combo_set_filter ()">gwy_param_table_combo_set_filter</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-combo-refilter" title="gwy_param_table_combo_refilter ()">gwy_param_table_combo_refilter</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-radio" title="gwy_param_table_append_radio ()">gwy_param_table_append_radio</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-header" title="gwy_param_table_append_radio_header ()">gwy_param_table_append_radio_header</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-item" title="gwy_param_table_append_radio_item ()">gwy_param_table_append_radio_item</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-row" title="gwy_param_table_append_radio_row ()">gwy_param_table_append_radio_row</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-buttons" title="gwy_param_table_append_radio_buttons ()">gwy_param_table_append_radio_buttons</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-radio-set-sensitive" title="gwy_param_table_radio_set_sensitive ()">gwy_param_table_radio_set_sensitive</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-checkboxes" title="gwy_param_table_append_checkboxes ()">gwy_param_table_append_checkboxes</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-checkboxes-set-sensitive" title="gwy_param_table_checkboxes_set_sensitive ()">gwy_param_table_checkboxes_set_sensitive</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-graph-id" title="gwy_param_table_append_graph_id ()">gwy_param_table_append_graph_id</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-image-id" title="gwy_param_table_append_image_id ()">gwy_param_table_append_image_id</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-volume-id" title="gwy_param_table_append_volume_id ()">gwy_param_table_append_volume_id</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-xyz-id" title="gwy_param_table_append_xyz_id ()">gwy_param_table_append_xyz_id</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-curve-map-id" title="gwy_param_table_append_curve_map_id ()">gwy_param_table_append_curve_map_id</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-target-graph" title="gwy_param_table_append_target_graph ()">gwy_param_table_append_target_graph</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-graph-curve" title="gwy_param_table_append_graph_curve ()">gwy_param_table_append_graph_curve</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-graph-curve-set-model" title="gwy_param_table_graph_curve_set_model ()">gwy_param_table_graph_curve_set_model</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-lawn-curve" title="gwy_param_table_append_lawn_curve ()">gwy_param_table_append_lawn_curve</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-lawn-segment" title="gwy_param_table_append_lawn_segment ()">gwy_param_table_append_lawn_segment</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-data-id-set-filter" title="gwy_param_table_data_id_set_filter ()">gwy_param_table_data_id_set_filter</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-data-id-refilter" title="gwy_param_table_data_id_refilter ()">gwy_param_table_data_id_refilter</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-slider" title="gwy_param_table_append_slider ()">gwy_param_table_append_slider</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-slider-set-mapping" title="gwy_param_table_slider_set_mapping ()">gwy_param_table_slider_set_mapping</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-slider-set-steps" title="gwy_param_table_slider_set_steps ()">gwy_param_table_slider_set_steps</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-slider-set-digits" title="gwy_param_table_slider_set_digits ()">gwy_param_table_slider_set_digits</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-slider-set-snapping" title="gwy_param_table_slider_set_snapping ()">gwy_param_table_slider_set_snapping</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-slider-restrict-range" title="gwy_param_table_slider_restrict_range ()">gwy_param_table_slider_restrict_range</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-slider-set-transform" title="gwy_param_table_slider_set_transform ()">gwy_param_table_slider_set_transform</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-slider-set-factor" title="gwy_param_table_slider_set_factor ()">gwy_param_table_slider_set_factor</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()">gwy_param_table_slider_add_alt</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()">gwy_param_table_alt_set_field_pixel_x</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-y" title="gwy_param_table_alt_set_field_pixel_y ()">gwy_param_table_alt_set_field_pixel_y</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-brick-pixel-x" title="gwy_param_table_alt_set_brick_pixel_x ()">gwy_param_table_alt_set_brick_pixel_x</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-brick-pixel-y" title="gwy_param_table_alt_set_brick_pixel_y ()">gwy_param_table_alt_set_brick_pixel_y</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-brick-pixel-z" title="gwy_param_table_alt_set_brick_pixel_z ()">gwy_param_table_alt_set_brick_pixel_z</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-lawn-pixel-x" title="gwy_param_table_alt_set_lawn_pixel_x ()">gwy_param_table_alt_set_lawn_pixel_x</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-lawn-pixel-y" title="gwy_param_table_alt_set_lawn_pixel_y ()">gwy_param_table_alt_set_lawn_pixel_y</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-frac-z" title="gwy_param_table_alt_set_field_frac_z ()">gwy_param_table_alt_set_field_frac_z</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-linear" title="gwy_param_table_alt_set_linear ()">gwy_param_table_alt_set_linear</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-calibration" title="gwy_param_table_alt_set_calibration ()">gwy_param_table_alt_set_calibration</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-entry" title="gwy_param_table_append_entry ()">gwy_param_table_append_entry</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-entry-set-width" title="gwy_param_table_entry_set_width ()">gwy_param_table_entry_set_width</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-entry-set-value-format" title="gwy_param_table_entry_set_value_format ()">gwy_param_table_entry_set_value_format</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-entry-set-instant-changes" title="gwy_param_table_entry_set_instant_changes ()">gwy_param_table_entry_set_instant_changes</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-range" title="gwy_param_table_append_range ()">gwy_param_table_append_range</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-unit-chooser" title="gwy_param_table_append_unit_chooser ()">gwy_param_table_append_unit_chooser</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-color" title="gwy_param_table_append_color ()">gwy_param_table_append_color</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-color-add-preset" title="gwy_param_table_color_add_preset ()">gwy_param_table_color_add_preset</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-mask-color" title="gwy_param_table_append_mask_color ()">gwy_param_table_append_mask_color</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-button" title="gwy_param_table_append_button ()">gwy_param_table_append_button</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-info" title="gwy_param_table_append_info ()">gwy_param_table_append_info</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-results" title="gwy_param_table_append_results ()">gwy_param_table_append_results</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-resultsv" title="gwy_param_table_append_resultsv ()">gwy_param_table_append_resultsv</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-results-fill" title="gwy_param_table_results_fill ()">gwy_param_table_results_fill</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-results-clear" title="gwy_param_table_results_clear ()">gwy_param_table_results_clear</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-report" title="gwy_param_table_append_report ()">gwy_param_table_append_report</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-report-set-results" title="gwy_param_table_report_set_results ()">gwy_param_table_report_set_results</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-report-set-formatter" title="gwy_param_table_report_set_formatter ()">gwy_param_table_report_set_formatter</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-hold-selection" title="gwy_param_table_append_hold_selection ()">gwy_param_table_append_hold_selection</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-seed" title="gwy_param_table_append_seed ()">gwy_param_table_append_seed</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-message" title="gwy_param_table_append_message ()">gwy_param_table_append_message</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-info-set-valuestr" title="gwy_param_table_info_set_valuestr ()">gwy_param_table_info_set_valuestr</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-info-set-add-punctuation" title="gwy_param_table_info_set_add_punctuation ()">gwy_param_table_info_set_add_punctuation</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-message-set-type" title="gwy_param_table_message_set_type ()">gwy_param_table_message_set_type</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
<td class="function_type">
<span class="returnvalue">void</span>
</td>
<td class="function_name">
<a class="link" href="GwyParamTable.html#gwy-param-table-append-foreign" title="gwy_param_table_append_foreign ()">gwy_param_table_append_foreign</a> <span class="c_punctuation">()</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="GwyParamTable.signals"></a><h2>Signals</h2>
<div class="informaltable"><table class="informaltable" border="0">
<colgroup>
<col width="150px" class="signal_proto_type">
<col width="300px" class="signal_proto_name">
<col width="200px" class="signal_proto_flags">
</colgroup>
<tbody><tr>
<td class="signal_type"><span class="returnvalue">void</span></td>
<td class="signal_name"><a class="link" href="GwyParamTable.html#GwyParamTable-param-changed" title="The “param-changed” signal">param-changed</a></td>
<td class="signal_flags"><a href="http://developer.gnome.org/doc/API/2.0/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></td>
</tr></tbody>
</table></div>
</div>
<div class="refsect1">
<a name="GwyParamTable.other"></a><h2>Types and Values</h2>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="other_proto_type">
<col class="other_proto_name">
</colgroup>
<tbody>
<tr>
<td class="datatype_keyword">struct</td>
<td class="function_name"><a class="link" href="GwyParamTable.html#GwyParamTable-struct" title="struct GwyParamTable">GwyParamTable</a></td>
</tr>
<tr>
<td class="datatype_keyword">struct</td>
<td class="function_name"><a class="link" href="GwyParamTable.html#GwyParamTableClass" title="struct GwyParamTableClass">GwyParamTableClass</a></td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect1">
<a name="GwyParamTable.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="screen">    <a href="http://developer.gnome.org/doc/API/2.0/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
    <span class="lineart">╰──</span> <a href="http://developer.gnome.org/doc/API/2.0/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
        <span class="lineart">╰──</span> GwyParamTable
</pre>
</div>
<div class="refsect1">
<a name="GwyParamTable.includes"></a><h2>Includes</h2>
<pre class="synopsis">#include &lt;app/gwyapp.h&gt;
</pre>
</div>
<div class="refsect1">
<a name="GwyParamTable.description"></a><h2>Description</h2>
<p><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> manages the user interface for module parameters.  It is not a <a href="http://developer.gnome.org/doc/API/2.0/gtk/GtkWidget.html#GtkWidget-struct"><span class="type">GtkWidget</span></a> itself, but it can create
widgets.  Most of what is needed for the parameter controls is already contained in <a class="link" href="GwyParamDef.html" title="GwyParamDef"><span class="type">GwyParamDef</span></a>.  Therefore, the
corresponding user interface can be as simple as:</p>
<div class="informalexample">
  <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
    <tbody>
      <tr>
        <td class="listing_lines" align="right"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13</pre></td>
        <td class="listing_code"><pre class="programlisting"><span class="n">GwyParamTable</span><span class="w"> </span><span class="o">*</span><span class="n">table</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">gwy_param_table_new</span><span class="p">(</span><span class="n">params</span><span class="p">);</span>

<span class="n">gwy_param_table_append_header</span><span class="p">(</span><span class="n">table</span><span class="p">,</span><span class="w"> </span><span class="mi">-1</span><span class="p">,</span><span class="w"> </span><span class="n">_</span><span class="p">(</span><span class="s">&quot;Detection&quot;</span><span class="p">));</span>
<span class="n">gwy_param_table_append_combo</span><span class="p">(</span><span class="n">table</span><span class="p">,</span><span class="w"> </span><span class="n">PARAM_METHOD</span><span class="p">);</span>
<span class="n">gwy_param_table_append_slider</span><span class="p">(</span><span class="n">table</span><span class="p">,</span><span class="w"> </span><span class="n">PARAM_DEGREE</span><span class="p">);</span>
<span class="n">gwy_param_table_append_checkbox</span><span class="p">(</span><span class="n">table</span><span class="p">,</span><span class="w"> </span><span class="n">PARAM_ADAPTIVE</span><span class="p">);</span>

<span class="n">gwy_param_table_append_header</span><span class="p">(</span><span class="n">table</span><span class="p">,</span><span class="w"> </span><span class="mi">-1</span><span class="p">,</span><span class="w"> </span><span class="n">_</span><span class="p">(</span><span class="s">&quot;Output&quot;</span><span class="p">));</span>
<span class="n">gwy_param_table_append_checkbox</span><span class="p">(</span><span class="n">table</span><span class="p">,</span><span class="w"> </span><span class="n">PARAM_EXTRACT_BACKGROUND</span><span class="p">);</span>
<span class="n">gwy_param_table_append_checkbox</span><span class="p">(</span><span class="n">table</span><span class="p">,</span><span class="w"> </span><span class="n">PARAM_CREATE_MASK</span><span class="p">);</span>

<span class="n">gwy_dialog_add_content</span><span class="p">(</span><span class="n">dialog</span><span class="p">,</span><span class="w"> </span><span class="n">gwy_param_table_widget</span><span class="p">(</span><span class="n">table</span><span class="p">),</span><span class="w"> </span><span class="n">FALSE</span><span class="p">,</span><span class="w"> </span><span class="n">FALSE</span><span class="p">,</span><span class="w"> </span><span class="mi">0</span><span class="p">);</span>
<span class="n">gwy_dialog_add_param_table</span><span class="p">(</span><span class="n">dialog</span><span class="p">,</span><span class="w"> </span><span class="n">table</span><span class="p">);</span></pre></td>
      </tr>
    </tbody>
  </table>
</div>

<p>
After creating the table, you append the various elements in the order in which they should appear in the user
interface.  Function <a class="link" href="GwyParamTable.html#gwy-param-table-widget" title="gwy_param_table_widget ()"><code class="function">gwy_param_table_widget()</code></a> then creates the widget for the entire parameter table, which can be
packed to the dialog.  Note that the created widget type is unspecified.  It may be <a href="http://developer.gnome.org/doc/API/2.0/gtk/GtkTable.html#GtkTable-struct"><span class="type">GtkTable</span></a>, <a href="http://developer.gnome.org/doc/API/2.0/gtk/GtkGrid.html#GtkGrid-struct"><span class="type">GtkGrid</span></a> or
something else.</p>
<p>Finally, <a class="link" href="GwyDialog.html" title="GwyDialog"><span class="type">GwyDialog</span></a> should be notified that a new table was added using <a class="link" href="GwyDialog.html#gwy-dialog-add-param-table" title="gwy_dialog_add_param_table ()"><code class="function">gwy_dialog_add_param_table()</code></a>.  It is
possible to add tables <a class="link" href="GwyDialog.html" title="GwyDialog"><span class="type">GwyDialog</span></a> does not know about, although this is seldom useful.</p>
<p><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> updates parameter values in <a class="link" href="GwyParams.html" title="GwyParams"><span class="type">GwyParams</span></a> when the user changes something.  Therefore, when there is no
preview and no relations between parameters to manage, no further setup is necessary.  If you need to respond to
parameter changes, connect to the <a class="link" href="GwyParamTable.html#GwyParamTable-param-changed" title="The “param-changed” signal"><span class="type">“param-changed”</span></a> signal.</p>
<p>If you change parameters in response to the user changing other parameters, always use the <a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> functions
such as <a class="link" href="GwyParamTable.html#gwy-param-table-set-boolean" title="gwy_param_table_set_boolean ()"><code class="function">gwy_param_table_set_boolean()</code></a> or <a class="link" href="GwyParamTable.html#gwy-param-table-set-enum" title="gwy_param_table_set_enum ()"><code class="function">gwy_param_table_set_enum()</code></a>.  This ensures the controls are updated
accordingly.  Functions such as <a class="link" href="GwyParams.html#gwy-params-set-boolean" title="gwy_params_set_boolean ()"><code class="function">gwy_params_set_boolean()</code></a> or <a class="link" href="GwyParams.html#gwy-params-set-enum" title="gwy_params_set_enum ()"><code class="function">gwy_params_set_enum()</code></a> would only change the value but
not the user interface.</p>
</div>
<div class="refsect1">
<a name="GwyParamTable.functions_details"></a><h2>Functions</h2>
<div class="refsect2">
<a name="GwyCreateWidgetFunc"></a><h3>GwyCreateWidgetFunc ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/doc/API/2.0/gtk/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
<span class="c_punctuation">(</span>*GwyCreateWidgetFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="http://developer.gnome.org/doc/API/2.0/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
<p>Type of function constructing a widget.</p>
<div class="refsect3">
<a name="GwyCreateWidgetFunc.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>The data passed when the function was set up.</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="GwyCreateWidgetFunc.returns"></a><h4>Returns</h4>
<p> A new widget.</p>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="GwyCreateTextFunc"></a><h3>GwyCreateTextFunc ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/doc/API/2.0/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
<span class="c_punctuation">(</span>*GwyCreateTextFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="http://developer.gnome.org/doc/API/2.0/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
<p>Type of function constructing a string.</p>
<div class="refsect3">
<a name="GwyCreateTextFunc.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>The data passed when the function was set up.</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="GwyCreateTextFunc.returns"></a><h4>Returns</h4>
<p> A new string.</p>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="GwyEnumFilterFunc"></a><h3>GwyEnumFilterFunc ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/doc/API/2.0/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
<span class="c_punctuation">(</span>*GwyEnumFilterFunc<span class="c_punctuation">)</span> (<em class="parameter"><code>const <a href="../GwyEnum.html#GwyEnum-struct"><span class="type">GwyEnum</span></a> *enumval</code></em>,
                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-new"></a><h3>gwy_param_table_new ()</h3>
<pre class="programlisting"><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="returnvalue">GwyParamTable</span></a> *
gwy_param_table_new (<em class="parameter"><code><a class="link" href="GwyParams.html" title="GwyParams"><span class="type">GwyParams</span></a> *params</code></em>);</pre>
<p>Creates a new table of parameter value controls.</p>
<p>The parameter table manages a set of widgets but it is not a widget.  Obtain the widget using
<a class="link" href="GwyParamTable.html#gwy-param-table-widget" title="gwy_param_table_widget ()"><code class="function">gwy_param_table_widget()</code></a>.</p>
<p>The created object is initially unowned.  Usually you use <a class="link" href="GwyDialog.html#gwy-dialog-add-param-table" title="gwy_dialog_add_param_table ()"><code class="function">gwy_dialog_add_param_table()</code></a> and then <a class="link" href="GwyDialog.html" title="GwyDialog"><span class="type">GwyDialog</span></a> will
assume ownership.  However, if you use <a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> standalone you should take ownership yourself with
<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-ref-sink"><code class="function">g_object_ref_sink()</code></a> and then release it with <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when done.</p>
<div class="refsect3">
<a name="gwy-param-table-new.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>params</p></td>
<td class="parameter_description"><p>A parameter value set.</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="gwy-param-table-new.returns"></a><h4>Returns</h4>
<p> A newly created set of parameter value controls.</p>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-params"></a><h3>gwy_param_table_params ()</h3>
<pre class="programlisting"><a class="link" href="GwyParams.html" title="GwyParams"><span class="returnvalue">GwyParams</span></a> *
gwy_param_table_params (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>);</pre>
<p>Gets the parameter value set for a parameter table.</p>
<div class="refsect3">
<a name="gwy-param-table-params.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>A parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="gwy-param-table-params.returns"></a><h4>Returns</h4>
<p> The parameter value set.</p>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-widget"></a><h3>gwy_param_table_widget ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk3/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
gwy_param_table_widget (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>);</pre>
<p>Gets and possibly constructs the parameter controls.</p>
<p>If the widget already exists this function returns the existing widget.  Otherwise the widget is created.</p>
<p>The returned widget is a table-like widget with implementation-defined type and structure.  It can be added as a
child to other widgets, show, hidden, made insensitive or destroyed.  However, its individual pieces must not be
manipulated outside the <a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> functions.</p>
<p>It is more efficient to get the widget after the controls for all parameters were added with functions like
<a class="link" href="GwyParamTable.html#gwy-param-table-append-checkbox" title="gwy_param_table_append_checkbox ()"><code class="function">gwy_param_table_append_checkbox()</code></a> and <a class="link" href="GwyParamTable.html#gwy-param-table-append-combo" title="gwy_param_table_append_combo ()"><code class="function">gwy_param_table_append_combo()</code></a>.  It is also safer with respect to inadvertent
parameter modifications as widgets are created after the setup is done.  The opposite order is possible but may not
work as expected in complex cases.</p>
<div class="refsect3">
<a name="gwy-param-table-widget.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>A parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<div class="refsect3">
<a name="gwy-param-table-widget.returns"></a><h4>Returns</h4>
<p> Widget with all the parameter controls.  The widget is owned by <em class="parameter"><code>partable</code></em>
and you do not receive a new
reference (not even a floating one).</p>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-reset"></a><h3>gwy_param_table_reset ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_reset (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>);</pre>
<p>Resets all parameters in a parameter table to defaults.</p>
<p>Foreign controls are not reset; this has to be done extra. Controls with the no-reset flag set with
<a class="link" href="GwyParamTable.html#gwy-param-table-set-no-reset" title="gwy_param_table_set_no_reset ()"><code class="function">gwy_param_table_set_no_reset()</code></a> are not reset either.</p>
<p>The parameters are reset in the order they were added to the table. In a <a class="link" href="GwyDialog.html" title="GwyDialog"><span class="type">GwyDialog</span></a> with multiple tables they are
reset in the order they were added to the dialog. In complex tables when valid values of one parameter depend on
the value of another this may not be sufficient for a well-defined reset. See the introductory section of
<a class="link" href="GwyDialog.html" title="GwyDialog"><span class="type">GwyDialog</span></a> for discussion.</p>
<p>The entire update will emit at most one signal (with id equal to -1).</p>
<div class="refsect3">
<a name="gwy-param-table-reset.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>A parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-from-params"></a><h3>gwy_param_table_set_from_params ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_from_params (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                 <em class="parameter"><code><a class="link" href="GwyParams.html" title="GwyParams"><span class="type">GwyParams</span></a> *params</code></em>);</pre>
<p>Set all parameters in a parameter table to values from a parameter set.</p>
<p>The parameter value set must be compatible with the table's one, including ids, names and types. It can be
a subset.</p>
<p>Unlike <a class="link" href="GwyParamTable.html#gwy-param-table-reset" title="gwy_param_table_reset ()"><code class="function">gwy_param_table_reset()</code></a>, this function sets also parameters with the no-reset flag. In the typical case,
they would not be included in <em class="parameter"><code>params</code></em>
 anyway. If they are, update them to the current values beforehand.</p>
<p>The parameters are set in the order they were added to the table. In the case of complex inter-parameter
dependencies some parameter may have to be set manually beforehand for the entire process to work as intended.</p>
<p>The entire update will emit at most one signal (with id equal to -1).</p>
<div class="refsect3">
<a name="gwy-param-table-set-from-params.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>A parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>params</p></td>
<td class="parameter_description"><p>A parameter value set.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-exists"></a><h3>gwy_param_table_exists ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
gwy_param_table_exists (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                        <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Tests if a parameter table has controls for a parameter.</p>
<div class="refsect3">
<a name="gwy-param-table-exists.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>A parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<div class="refsect3">
<a name="gwy-param-table-exists.returns"></a><h4>Returns</h4>
<p> <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the table has controls for parameter <em class="parameter"><code>id</code></em>
, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if it does not.</p>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-param-changed"></a><h3>gwy_param_table_param_changed ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_param_changed (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Emits the param-changed signal for a parameter table.</p>
<p>This function is rarely needed because the parameter table emits this signal itself.  It can be occassionally
useful for parameters which are not managed by <em class="parameter"><code>partable</code></em>
 and it cannot tell that they have changed.  If you want to
integrate them, i.e. treat more or less as if they were managed by <em class="parameter"><code>partable</code></em>
, you should probably use this function
when they change.</p>
<p>Signal recursion is prevented.  If this function is called from within a <a class="link" href="GwyParamTable.html#GwyParamTable-param-changed" title="The “param-changed” signal"><span class="type">“param-changed”</span></a> handler it
just immediately returns.  Similarly, if the signal is really emitted and other parameters change as the result,
their changes no longer cause any recursive <a class="link" href="GwyParamTable.html#GwyParamTable-param-changed" title="The “param-changed” signal"><span class="type">“param-changed”</span></a>.</p>
<p>The value of <em class="parameter"><code>id</code></em>
 may correspond to a parameter <a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> has no knowledge of.  So it is in effect an arbitrary
integer.</p>
<div class="refsect3">
<a name="gwy-param-table-param-changed.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-no-reset"></a><h3>gwy_param_table_set_no_reset ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_no_reset (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                              <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                              <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
<p>Sets the no-reset flag for a parameter in a parameter table.</p>
<p>No-reset parameters are untouched by <a class="link" href="GwyParamTable.html#gwy-param-table-reset" title="gwy_param_table_reset ()"><code class="function">gwy_param_table_reset()</code></a>.  Hence they are not reset by the <a class="link" href="GwyDialog.html" title="GwyDialog"><span class="type">GwyDialog</span></a> reset
response handler either.  This can be useful for parameters that do not have static default values and need special
treatment during the reset.</p>
<p>Some parameters are no-reset by default: for instance data ids or mask colour.</p>
<div class="refsect3">
<a name="gwy-param-table-set-no-reset.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>setting</p></td>
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to set the no-reset flag, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to unset it.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-no-resetv"></a><h3>gwy_param_table_set_no_resetv ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_no_resetv (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                               <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *ids</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
<p>Sets the no-reset flag for multiple parameters in a parameter table.</p>
<p>See <a class="link" href="GwyParamTable.html#gwy-param-table-set-no-reset" title="gwy_param_table_set_no_reset ()"><code class="function">gwy_param_table_set_no_reset()</code></a> for description.</p>
<div class="refsect3">
<a name="gwy-param-table-set-no-resetv.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>ids</p></td>
<td class="parameter_description"><p>Array of parameter identifiers.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>n</p></td>
<td class="parameter_description"><p>Number of items in <em class="parameter"><code>ids</code></em>
.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>setting</p></td>
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to set the no-reset flag, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to unset it.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-sensitive"></a><h3>gwy_param_table_set_sensitive ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_sensitive (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> sensitive</code></em>);</pre>
<p>Sets the sensitivity of a single control in a parameter table.</p>
<p>If the parameter identified by <em class="parameter"><code>id</code></em>
 corresponds to multiple widgets all are set sensitive or insensitive as
requested.  In most cases this is the right function to enable and disable parameters.  However, some may have to
be managed in more detail.</p>
<p>For radio buttons this function enables/disables the entire button group, including any header label.  Use
<a class="link" href="GwyParamTable.html#gwy-param-table-radio-set-sensitive" title="gwy_param_table_radio_set_sensitive ()"><code class="function">gwy_param_table_radio_set_sensitive()</code></a> to set sensitivity of individual radio buttons.</p>
<div class="refsect3">
<a name="gwy-param-table-set-sensitive.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>A parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>sensitive</p></td>
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the control sensitive, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to make it insensitive.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-label"></a><h3>gwy_param_table_set_label ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_label (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                           <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                           <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
<p>Sets the label text of a control in a parameter table.</p>
<p>Usually label texts are taken from parameter definitions.  This function modifies them dynamically.  It can also be
used to set the text of messages created by <a class="link" href="GwyParamTable.html#gwy-param-table-append-message" title="gwy_param_table_append_message ()"><code class="function">gwy_param_table_append_message()</code></a>.  Only controls which naturally have
labels can have the label set.  Some do not, for instance separators, results or foreign widgets.</p>
<div class="refsect3">
<a name="gwy-param-table-set-label.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>text</p></td>
<td class="parameter_description"><p>New label text (may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for the default text).</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-boolean"></a><h3>gwy_param_table_set_boolean ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_boolean (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                             <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                             <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> value</code></em>);</pre>
<p>Sets the value of a boolean parameter in a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a boolean defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-boolean" title="gwy_param_def_add_boolean ()"><code class="function">gwy_param_def_add_boolean()</code></a> or a predefined boolean.</p>
<div class="refsect3">
<a name="gwy-param-table-set-boolean.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>The new value.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-int"></a><h3>gwy_param_table_set_int ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_int (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> value</code></em>);</pre>
<p>Sets the value of an integer parameter in a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be an integer parameter defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-int" title="gwy_param_def_add_int ()"><code class="function">gwy_param_def_add_int()</code></a> or a predefined
integer parameter.</p>
<div class="refsect3">
<a name="gwy-param-table-set-int.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>The new value.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-double"></a><h3>gwy_param_table_set_double ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_double (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                            <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                            <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> value</code></em>);</pre>
<p>Sets the value of a double parameter in a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be an floating point parameter defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-double" title="gwy_param_def_add_double ()"><code class="function">gwy_param_def_add_double()</code></a> or
a predefined floating point parameter.</p>
<div class="refsect3">
<a name="gwy-param-table-set-double.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>The new value.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-enum"></a><h3>gwy_param_table_set_enum ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_enum (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                          <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                          <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> value</code></em>);</pre>
<p>Sets the value of an enum parameter in a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a custom enum defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-gwyenum" title="gwy_param_def_add_gwyenum ()"><code class="function">gwy_param_def_add_gwyenum()</code></a> or predefined enum set
up by <a class="link" href="GwyParamDef.html#gwy-param-def-add-enum" title="gwy_param_def_add_enum ()"><code class="function">gwy_param_def_add_enum()</code></a>.</p>
<div class="refsect3">
<a name="gwy-param-table-set-enum.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>The new value.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-flags"></a><h3>gwy_param_table_set_flags ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_flags (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                           <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                           <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> value</code></em>);</pre>
<p>Sets the value of an flags parameter in a parameter table.</p>
<div class="refsect3">
<a name="gwy-param-table-set-flags.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>The new value.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-string"></a><h3>gwy_param_table_set_string ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_string (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                            <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                            <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *value</code></em>);</pre>
<p>Sets the value of a string parameter.</p>
<p>The function can be used with string entries, unit choosers and resource combos.</p>
<div class="refsect3">
<a name="gwy-param-table-set-string.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>The new value.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-data-id"></a><h3>gwy_param_table_set_data_id ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_data_id (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                             <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                             <em class="parameter"><code><a class="link" href="GwyDataChooser.html#GwyAppDataId" title="GwyAppDataId"><span class="type">GwyAppDataId</span></a> value</code></em>);</pre>
<p>Sets the value of a data identifier parameter in a parameter table.</p>
<div class="refsect3">
<a name="gwy-param-table-set-data-id.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>The new value.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-curve"></a><h3>gwy_param_table_set_curve ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_curve (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                           <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                           <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> value</code></em>);</pre>
<p>Sets the value of a curve number parameter in a parameter table.</p>
<div class="refsect3">
<a name="gwy-param-table-set-curve.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>The new value.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-60.html#api-index-2.60">2.60</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-header"></a><h3>gwy_param_table_append_header ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_header (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                               <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *label</code></em>);</pre>
<p>Adds a control group header to a parameter table.</p>
<p>Headers can be used to visually separate parameters into groups.  They are typeset to stand out and have extra
space before them.</p>
<p>If <em class="parameter"><code>id</code></em>
 is supplied it must be unique, different from all parameter identifiers.  This is best achieved by taking
them all from the same enum.  It is only useful for changing the header text or sensitivity later.</p>
<div class="refsect3">
<a name="gwy-param-table-append-header.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>A parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier, but usually -1.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>label</p></td>
<td class="parameter_description"><p>Header text.  It should be in Header Capitalisation Style.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-separator"></a><h3>gwy_param_table_append_separator ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_separator (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>);</pre>
<p>Adds a separator to a parameter table.</p>
<p>Separator adds some extra space between parameters and can be used for visual grouping.  Control group headers
added by <a class="link" href="GwyParamTable.html#gwy-param-table-append-header" title="gwy_param_table_append_header ()"><code class="function">gwy_param_table_append_header()</code></a> have extra space before them added automatically.</p>
<div class="refsect3">
<a name="gwy-param-table-append-separator.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody><tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>A parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr></tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-set-unitstr"></a><h3>gwy_param_table_set_unitstr ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_set_unitstr (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                             <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                             <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *unitstr</code></em>);</pre>
<p>Sets a fixed units label for a control in a parameter table.</p>
<p>Unit labels are added to the right of the main parameter control.  Usually they are used for sliders, although they
can be set for most parameter controls except separators, enablers and vertical radio button lists.</p>
<div class="refsect3">
<a name="gwy-param-table-set-unitstr.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier of the control (not a new identifier).</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>unitstr</p></td>
<td class="parameter_description"><p>Units for the control (with Pango markup).</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-checkbox"></a><h3>gwy_param_table_append_checkbox ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_checkbox (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a checkbox to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a boolean defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-boolean" title="gwy_param_def_add_boolean ()"><code class="function">gwy_param_def_add_boolean()</code></a> or a predefined boolean.</p>
<p>The parameter must have a description which will be used as the label.</p>
<p>See also <a class="link" href="GwyParamTable.html#gwy-param-table-add-enabler" title="gwy_param_table_add_enabler ()"><code class="function">gwy_param_table_add_enabler()</code></a> for a checkbox integrated into another control and
<a class="link" href="GwyParamTable.html#gwy-param-table-append-checkboxes" title="gwy_param_table_append_checkboxes ()"><code class="function">gwy_param_table_append_checkboxes()</code></a> for a set of flags presented as checkboxes.</p>
<div class="refsect3">
<a name="gwy-param-table-append-checkbox.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-add-enabler"></a><h3>gwy_param_table_add_enabler ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_add_enabler (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                             <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                             <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> other_id</code></em>);</pre>
<p>Adds checkbox which enables and disables other parameter in a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a boolean defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-boolean" title="gwy_param_def_add_boolean ()"><code class="function">gwy_param_def_add_boolean()</code></a> or a predefined boolean.</p>
<p>The parameter identified by <em class="parameter"><code>other_id</code></em>
 must be added as combo box, data chooser, slider or radio button row (text
or image buttons).  The check box will then be integrated in the control of that parameter.  If you have a generic
enable/disable parameter with its own standalone checkbox use <a class="link" href="GwyParamTable.html#gwy-param-table-append-checkbox" title="gwy_param_table_append_checkbox ()"><code class="function">gwy_param_table_append_checkbox()</code></a> instead (and set
widget sensitivity using <a class="link" href="GwyParamTable.html#gwy-param-table-set-sensitive" title="gwy_param_table_set_sensitive ()"><code class="function">gwy_param_table_set_sensitive()</code></a> in the <a class="link" href="GwyParamTable.html#GwyParamTable-param-changed" title="The “param-changed” signal"><span class="type">“param-changed”</span></a> signal handler).</p>
<div class="refsect3">
<a name="gwy-param-table-add-enabler.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>other_id</p></td>
<td class="parameter_description"><p>Identifier of parameter to enable/distable.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-combo"></a><h3>gwy_param_table_append_combo ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_combo (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                              <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a combo box to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be either an enum or a resource.  Custom enums are defined by
<a class="link" href="GwyParamDef.html#gwy-param-def-add-gwyenum" title="gwy_param_def_add_gwyenum ()"><code class="function">gwy_param_def_add_gwyenum()</code></a>; predefined enum are set up by <a class="link" href="GwyParamDef.html#gwy-param-def-add-enum" title="gwy_param_def_add_enum ()"><code class="function">gwy_param_def_add_enum()</code></a>. Resource names are defined by
<a class="link" href="GwyParamDef.html#gwy-param-def-add-resource" title="gwy_param_def_add_resource ()"><code class="function">gwy_param_def_add_resource()</code></a>.</p>
<div class="refsect3">
<a name="gwy-param-table-append-combo.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-combo-set-filter"></a><h3>gwy_param_table_combo_set_filter ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_combo_set_filter (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                  <em class="parameter"><code><a class="link" href="GwyParamTable.html#GwyEnumFilterFunc" title="GwyEnumFilterFunc ()"><span class="type">GwyEnumFilterFunc</span></a> filter</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a resource defined by a function such as <a class="link" href="GwyParamDef.html#gwy-param-def-add-resource" title="gwy_param_def_add_resource ()"><code class="function">gwy_param_def_add_resource()</code></a>.</p>
<p>Setting the filter to a different one automatically refilters the data chooser.</p>
<div class="refsect3">
<a name="gwy-param-table-combo-set-filter.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>filter</p></td>
<td class="parameter_description"><p>The filter function.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>The data passed to <em class="parameter"><code>filter</code></em>
.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>destroy</p></td>
<td class="parameter_description"><p>Destroy notifier of <em class="parameter"><code>user_data</code></em>
or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-combo-refilter"></a><h3>gwy_param_table_combo_refilter ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_combo_refilter (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Requests refiltering of choices in a resource combo in a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a resource defined <a class="link" href="GwyParamDef.html#gwy-param-def-add-resource" title="gwy_param_def_add_resource ()"><code class="function">gwy_param_def_add_resource()</code></a>.</p>
<p>It is possible to call this function when the table widget does not exist yet.</p>
<div class="refsect3">
<a name="gwy-param-table-combo-refilter.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-radio"></a><h3>gwy_param_table_append_radio ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_radio (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                              <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a set of radio buttons to a parameter table as a vertical list.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a custom enum defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-gwyenum" title="gwy_param_def_add_gwyenum ()"><code class="function">gwy_param_def_add_gwyenum()</code></a> or predefined enum
set up by <a class="link" href="GwyParamDef.html#gwy-param-def-add-enum" title="gwy_param_def_add_enum ()"><code class="function">gwy_param_def_add_enum()</code></a>.</p>
<p>If the parameter has a description it will be used as the radio button list header.  Otherwise the buttons will be
free-standing.</p>
<p>Use <a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-header" title="gwy_param_table_append_radio_header ()"><code class="function">gwy_param_table_append_radio_header()</code></a> and <a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-item" title="gwy_param_table_append_radio_item ()"><code class="function">gwy_param_table_append_radio_item()</code></a> if you need to construct the list
piecewise, for instance interspersing the radio buttons with other controls.  Use
<a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-row" title="gwy_param_table_append_radio_row ()"><code class="function">gwy_param_table_append_radio_row()</code></a> for a compact one-row list and <a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-buttons" title="gwy_param_table_append_radio_buttons ()"><code class="function">gwy_param_table_append_radio_buttons()</code></a> for a
one-row list of image buttons.</p>
<div class="refsect3">
<a name="gwy-param-table-append-radio.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-radio-header"></a><h3>gwy_param_table_append_radio_header ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_radio_header (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a list header for radio buttons to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a custom enum defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-gwyenum" title="gwy_param_def_add_gwyenum ()"><code class="function">gwy_param_def_add_gwyenum()</code></a> or predefined enum
set up by <a class="link" href="GwyParamDef.html#gwy-param-def-add-enum" title="gwy_param_def_add_enum ()"><code class="function">gwy_param_def_add_enum()</code></a>.</p>
<p>The parameter must have a description which will be used as the radio button list header.</p>
<p>Use <a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-item" title="gwy_param_table_append_radio_item ()"><code class="function">gwy_param_table_append_radio_item()</code></a> to add individual radio buttons.
Use <a class="link" href="GwyParamTable.html#gwy-param-table-append-radio" title="gwy_param_table_append_radio ()"><code class="function">gwy_param_table_append_radio()</code></a> instead to add an entire set of radio buttons at once.</p>
<div class="refsect3">
<a name="gwy-param-table-append-radio-header.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-radio-item"></a><h3>gwy_param_table_append_radio_item ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_radio_item (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> value</code></em>);</pre>
<p>Adds a single radio button to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a custom enum defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-gwyenum" title="gwy_param_def_add_gwyenum ()"><code class="function">gwy_param_def_add_gwyenum()</code></a> or predefined enum set
up by <a class="link" href="GwyParamDef.html#gwy-param-def-add-enum" title="gwy_param_def_add_enum ()"><code class="function">gwy_param_def_add_enum()</code></a>. The value must belong to the enum.</p>
<p>Use <a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-header" title="gwy_param_table_append_radio_header ()"><code class="function">gwy_param_table_append_radio_header()</code></a> to add the header for a radio button list.
Use <a class="link" href="GwyParamTable.html#gwy-param-table-append-radio" title="gwy_param_table_append_radio ()"><code class="function">gwy_param_table_append_radio()</code></a> instead to add an entire set of radio buttons at once.</p>
<div class="refsect3">
<a name="gwy-param-table-append-radio-item.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>Enumerated value for a particular radio button.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-radio-row"></a><h3>gwy_param_table_append_radio_row ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_radio_row (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a set of radio buttons to a parameter table as a compact horizontal list.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a custom enum defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-gwyenum" title="gwy_param_def_add_gwyenum ()"><code class="function">gwy_param_def_add_gwyenum()</code></a> or predefined enum set
up by <a class="link" href="GwyParamDef.html#gwy-param-def-add-enum" title="gwy_param_def_add_enum ()"><code class="function">gwy_param_def_add_enum()</code></a>.</p>
<p>This function is only suitable for a small set of choices, each with a rather short label.  Use
<a class="link" href="GwyParamTable.html#gwy-param-table-append-radio" title="gwy_param_table_append_radio ()"><code class="function">gwy_param_table_append_radio()</code></a> for a vertical list and <a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-buttons" title="gwy_param_table_append_radio_buttons ()"><code class="function">gwy_param_table_append_radio_buttons()</code></a> for a one-row list of
image buttons.</p>
<div class="refsect3">
<a name="gwy-param-table-append-radio-row.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-radio-buttons"></a><h3>gwy_param_table_append_radio_buttons ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_radio_buttons (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                      <em class="parameter"><code>const <a href="../GwyEnum.html#GwyEnum-struct"><span class="type">GwyEnum</span></a> *stock_ids</code></em>);</pre>
<p>Adds a set of radio buttons to a parameter table as a row of image buttons.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a custom enum defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-gwyenum" title="gwy_param_def_add_gwyenum ()"><code class="function">gwy_param_def_add_gwyenum()</code></a> or predefined enum set
up by <a class="link" href="GwyParamDef.html#gwy-param-def-add-enum" title="gwy_param_def_add_enum ()"><code class="function">gwy_param_def_add_enum()</code></a>.</p>
<p>Button order is determined by parameter definition. Stock image identifiers <em class="parameter"><code>stock_ids</code></em>
 do not influence it and can
be given in any order.</p>
<p>The enum names from parameter definition will be used for button tooltips.  Use <a class="link" href="GwyParamTable.html#gwy-param-table-append-radio" title="gwy_param_table_append_radio ()"><code class="function">gwy_param_table_append_radio()</code></a> for
a vertical list and <a class="link" href="GwyParamTable.html#gwy-param-table-append-radio-row" title="gwy_param_table_append_radio_row ()"><code class="function">gwy_param_table_append_radio_row()</code></a> for a compact one-row list with text labels.</p>
<div class="refsect3">
<a name="gwy-param-table-append-radio-buttons.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>stock_ids</p></td>
<td class="parameter_description"><p>Stock image identifiers corresponding to the enum values.  It may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for standard enums for which
stock icons are predefined.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-radio-set-sensitive"></a><h3>gwy_param_table_radio_set_sensitive ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_radio_set_sensitive (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> value</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> sensitive</code></em>);</pre>
<p>Sets the sensitivity of a single radio button in a parameter table.</p>
<p>This function sets the sensitivity of a radio button corresponding to a specific value.  Use
<a class="link" href="GwyParamTable.html#gwy-param-table-set-sensitive" title="gwy_param_table_set_sensitive ()"><code class="function">gwy_param_table_set_sensitive()</code></a> to set the sensitivity of an enitre group of radio buttons.</p>
<div class="refsect3">
<a name="gwy-param-table-radio-set-sensitive.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>A parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value</p></td>
<td class="parameter_description"><p>Enumerated value for a particular radio button.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>sensitive</p></td>
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the control sensitive, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to make it insensitive.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-checkboxes"></a><h3>gwy_param_table_append_checkboxes ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_checkboxes (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a set of checkboxes to a parameter table as a vertical list.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a generic enum defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-gwyenum" title="gwy_param_def_add_gwyenum ()"><code class="function">gwy_param_def_add_gwyenum()</code></a> or
<a class="link" href="GwyParamDef.html#gwy-param-def-add-enum" title="gwy_param_def_add_enum ()"><code class="function">gwy_param_def_add_enum()</code></a>.</p>
<p>If the parameter has a description it will be used as the checkbox list header.  Otherwise the checkboxes will be
free-standing.</p>
<p>Use <a class="link" href="GwyParamTable.html#gwy-param-table-append-checkbox" title="gwy_param_table_append_checkbox ()"><code class="function">gwy_param_table_append_checkbox()</code></a> for individual boolean variables.</p>
<div class="refsect3">
<a name="gwy-param-table-append-checkboxes.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-checkboxes-set-sensitive"></a><h3>gwy_param_table_checkboxes_set_sensitive ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_checkboxes_set_sensitive
                               (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> sensitive</code></em>);</pre>
<p>Sets the sensitivity of a subgroup of flag checkboxes in a parameter table.</p>
<p>This function sets the sensitivity of a checkboxes corresponding to specific values.  Use
<a class="link" href="GwyParamTable.html#gwy-param-table-set-sensitive" title="gwy_param_table_set_sensitive ()"><code class="function">gwy_param_table_set_sensitive()</code></a> to set the sensitivity of an enitre group of checkboxes.</p>
<div class="refsect3">
<a name="gwy-param-table-checkboxes-set-sensitive.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>A parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>flags</p></td>
<td class="parameter_description"><p>Flag values for a particular radio button.  It can have multiple bits set – all corresponding checkboxes
are made sensitive/insensitive accordingly.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>sensitive</p></td>
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the control sensitive, <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to make it insensitive.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-graph-id"></a><h3>gwy_param_table_append_graph_id ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_graph_id (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds an graph data chooser to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be an graph id defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-graph-id" title="gwy_param_def_add_graph_id ()"><code class="function">gwy_param_def_add_graph_id()</code></a> or possibly
a predefined parameter of this type.</p>
<div class="refsect3">
<a name="gwy-param-table-append-graph-id.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-60.html#api-index-2.60">2.60</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-image-id"></a><h3>gwy_param_table_append_image_id ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_image_id (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds an image data chooser to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be an image id defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-image-id" title="gwy_param_def_add_image_id ()"><code class="function">gwy_param_def_add_image_id()</code></a> or possibly
a predefined parameter of this type.</p>
<div class="refsect3">
<a name="gwy-param-table-append-image-id.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-volume-id"></a><h3>gwy_param_table_append_volume_id ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_volume_id (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds an volume data chooser to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a volume data id defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-volume-id" title="gwy_param_def_add_volume_id ()"><code class="function">gwy_param_def_add_volume_id()</code></a> or possibly
a predefined parameter of this type.</p>
<div class="refsect3">
<a name="gwy-param-table-append-volume-id.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-xyz-id"></a><h3>gwy_param_table_append_xyz_id ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_xyz_id (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds an XYZ data chooser to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be an XYZ data id defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-xyz-id" title="gwy_param_def_add_xyz_id ()"><code class="function">gwy_param_def_add_xyz_id()</code></a> or possibly
a predefined parameter of this type.</p>
<div class="refsect3">
<a name="gwy-param-table-append-xyz-id.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-curve-map-id"></a><h3>gwy_param_table_append_curve_map_id ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_curve_map_id (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a curve map data chooser to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a curve map id defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-curve-map-id" title="gwy_param_def_add_curve_map_id ()"><code class="function">gwy_param_def_add_curve_map_id()</code></a> or possibly
a predefined parameter of this type.</p>
<div class="refsect3">
<a name="gwy-param-table-append-curve-map-id.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-60.html#api-index-2.60">2.60</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-target-graph"></a><h3>gwy_param_table_append_target_graph ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_target_graph (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                     <em class="parameter"><code><a href="../GwyGraphModel.html#GwyGraphModel-struct"><span class="type">GwyGraphModel</span></a> *gmodel</code></em>);</pre>
<p>Adds a target graph chooser to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a graph id defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-target-graph" title="gwy_param_def_add_target_graph ()"><code class="function">gwy_param_def_add_target_graph()</code></a>.</p>
<p>If <em class="parameter"><code>gmodel</code></em>
 is not <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> it will be used for filtering.  Only graphs with units matching <em class="parameter"><code>gmodel</code></em>
 will be allowed in
the chooser.  Filtering is only done upon construction and when explicitly requested using
<a class="link" href="GwyParamTable.html#gwy-param-table-data-id-refilter" title="gwy_param_table_data_id_refilter ()"><code class="function">gwy_param_table_data_id_refilter()</code></a>.  Therefore, <em class="parameter"><code>gmodel</code></em>
 can be changed piecewise without invoking reflitering in
the intermediate states.</p>
<div class="refsect3">
<a name="gwy-param-table-append-target-graph.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>gmodel</p></td>
<td class="parameter_description"><p>Graph model to use as template for filtering (or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>).</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-graph-curve"></a><h3>gwy_param_table_append_graph_curve ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_graph_curve (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                    <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                    <em class="parameter"><code><a href="../GwyGraphModel.html#GwyGraphModel-struct"><span class="type">GwyGraphModel</span></a> *gmodel</code></em>);</pre>
<p>Adds a curve data chooser for a graph model to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be an curve number defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-graph-curve" title="gwy_param_def_add_graph_curve ()"><code class="function">gwy_param_def_add_graph_curve()</code></a> or possibly
a predefined parameter of this type.</p>
<div class="refsect3">
<a name="gwy-param-table-append-graph-curve.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>gmodel</p></td>
<td class="parameter_description"><p>Graph model to choose the curve from.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-60.html#api-index-2.60">2.60</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-graph-curve-set-model"></a><h3>gwy_param_table_graph_curve_set_model ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_graph_curve_set_model (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                       <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                       <em class="parameter"><code><a href="../GwyGraphModel.html#GwyGraphModel-struct"><span class="type">GwyGraphModel</span></a> *gmodel</code></em>);</pre>
<p>Changes the graph model for a curve data chooser.</p>
<p>The chooser must be created by <a class="link" href="GwyParamTable.html#gwy-param-table-append-graph-curve" title="gwy_param_table_append_graph_curve ()"><code class="function">gwy_param_table_append_graph_curve()</code></a>.</p>
<div class="refsect3">
<a name="gwy-param-table-graph-curve-set-model.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>gmodel</p></td>
<td class="parameter_description"><p>Graph model to choose the curve from.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-60.html#api-index-2.60">2.60</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-lawn-curve"></a><h3>gwy_param_table_append_lawn_curve ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_lawn_curve (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                   <em class="parameter"><code><a href="../GwyLawn.html#GwyLawn-struct"><span class="type">GwyLawn</span></a> *lawn</code></em>);</pre>
<p>Adds a curve data chooser for a lawn to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be an curve number defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-lawn-curve" title="gwy_param_def_add_lawn_curve ()"><code class="function">gwy_param_def_add_lawn_curve()</code></a> or possibly
a predefined parameter of this type.</p>
<div class="refsect3">
<a name="gwy-param-table-append-lawn-curve.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>lawn</p></td>
<td class="parameter_description"><p>Lawn curve map object to choose the curve from.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-60.html#api-index-2.60">2.60</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-lawn-segment"></a><h3>gwy_param_table_append_lawn_segment ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_lawn_segment (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                     <em class="parameter"><code><a href="../GwyLawn.html#GwyLawn-struct"><span class="type">GwyLawn</span></a> *lawn</code></em>);</pre>
<p>Adds a segment data chooser for a lawn to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be an segment number defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-lawn-segment" title="gwy_param_def_add_lawn_segment ()"><code class="function">gwy_param_def_add_lawn_segment()</code></a> or possibly
a predefined parameter of this type.</p>
<div class="refsect3">
<a name="gwy-param-table-append-lawn-segment.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>lawn</p></td>
<td class="parameter_description"><p>Lawn curve map object to choose the segment from.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-60.html#api-index-2.60">2.60</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-data-id-set-filter"></a><h3>gwy_param_table_data_id_set_filter ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_data_id_set_filter (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                    <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                    <em class="parameter"><code><a class="link" href="GwyDataChooser.html#GwyDataChooserFilterFunc" title="GwyDataChooserFilterFunc ()"><span class="type">GwyDataChooserFilterFunc</span></a> filter</code></em>,
                                    <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
                                    <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a data id defined by a function such as <a class="link" href="GwyParamDef.html#gwy-param-def-add-image-id" title="gwy_param_def_add_image_id ()"><code class="function">gwy_param_def_add_image_id()</code></a>
or a predefined parameter of this type, for instance defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-target-graph" title="gwy_param_def_add_target_graph ()"><code class="function">gwy_param_def_add_target_graph()</code></a>.</p>
<p>The arguments have the same meaning as in <a class="link" href="GwyDataChooser.html#gwy-data-chooser-set-filter" title="gwy_data_chooser_set_filter ()"><code class="function">gwy_data_chooser_set_filter()</code></a>.  Setting the filter to a different one
automatically refilters the data chooser.</p>
<div class="refsect3">
<a name="gwy-param-table-data-id-set-filter.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>filter</p></td>
<td class="parameter_description"><p>The filter function.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>The data passed to <em class="parameter"><code>filter</code></em>
.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>destroy</p></td>
<td class="parameter_description"><p>Destroy notifier of <em class="parameter"><code>user_data</code></em>
or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-data-id-refilter"></a><h3>gwy_param_table_data_id_refilter ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_data_id_refilter (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Requests refiltering of choices in a data chooser in a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a data id defined by a function such as <a class="link" href="GwyParamDef.html#gwy-param-def-add-image-id" title="gwy_param_def_add_image_id ()"><code class="function">gwy_param_def_add_image_id()</code></a>
or a predefined parameter of this type, for instance defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-target-graph" title="gwy_param_def_add_target_graph ()"><code class="function">gwy_param_def_add_target_graph()</code></a>.</p>
<p>It is possible to call this function when the table widget does not exist yet.</p>
<div class="refsect3">
<a name="gwy-param-table-data-id-refilter.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-slider"></a><h3>gwy_param_table_append_slider ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_slider (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a numerical slider to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be an integer or floating point numerical parameter defined by
<a class="link" href="GwyParamDef.html#gwy-param-def-add-int" title="gwy_param_def_add_int ()"><code class="function">gwy_param_def_add_int()</code></a>, <a class="link" href="GwyParamDef.html#gwy-param-def-add-double" title="gwy_param_def_add_double ()"><code class="function">gwy_param_def_add_double()</code></a> or a predefined parameter of one of these types.</p>
<p>The parameter must have a description which will be used as the label.</p>
<div class="refsect3">
<a name="gwy-param-table-append-slider.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-slider-set-mapping"></a><h3>gwy_param_table_slider_set_mapping ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_slider_set_mapping (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                    <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                    <em class="parameter"><code><a href="../GwyAdjustBar.html#GwyScaleMappingType"><span class="type">GwyScaleMappingType</span></a> mapping</code></em>);</pre>
<p>Sets the mapping type for a slider in a parameter table.</p>
<div class="refsect3">
<a name="gwy-param-table-slider-set-mapping.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>mapping</p></td>
<td class="parameter_description"><p>Mapping type to use.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-slider-set-steps"></a><h3>gwy_param_table_slider_set_steps ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_slider_set_steps (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> step</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> page</code></em>);</pre>
<p>Sets the step and page step for a slider in a parameter table.</p>
<p>The parameter table sets automatically reasonable steps according to the parameter type and range.  This function
allows overriding them when more detailed control is needed.</p>
<div class="refsect3">
<a name="gwy-param-table-slider-set-steps.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>step</p></td>
<td class="parameter_description"><p>The step (in true parameter values), as in <a href="/usr/share/gtk-doc/html/gtk3/GtkAdjustment.html#GtkAdjustment-struct"><span class="type">GtkAdjustment</span></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>page</p></td>
<td class="parameter_description"><p>The page step (in true parameter values), as in <a href="/usr/share/gtk-doc/html/gtk3/GtkAdjustment.html#GtkAdjustment-struct"><span class="type">GtkAdjustment</span></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-slider-set-digits"></a><h3>gwy_param_table_slider_set_digits ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_slider_set_digits (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> digits</code></em>);</pre>
<p>Sets the numnber of decimal place for a slider in a parameter table.</p>
<p>The parameter table sets automatically a reasonable number decimal places according to the parameter type, range
and steps.  This function allows overriding it when more detailed control is needed.</p>
<div class="refsect3">
<a name="gwy-param-table-slider-set-digits.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>digits</p></td>
<td class="parameter_description"><p>The number of decimal places of the numerical value.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-slider-set-snapping"></a><h3>gwy_param_table_slider_set_snapping ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_slider_set_snapping (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
<p>Sets the snapping option of a slider in a parameter table.</p>
<p>This function is rarely needed. By default, snapping is enabled for integer sliders as they can only represent the
discrete integers, whereas floating point sliders are free. In some cases you may want to override it. Note that
once you set the snapping option explicitly, you are responsible for it. There is no way to tell the slider to
revert to its default behaviour.</p>
<div class="refsect3">
<a name="gwy-param-table-slider-set-snapping.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>setting</p></td>
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable snapping; <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to disable it.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-slider-restrict-range"></a><h3>gwy_param_table_slider_restrict_range ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_slider_restrict_range (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                       <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                       <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> minimum</code></em>,
                                       <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> maximum</code></em>);</pre>
<p>Sets the parameter range a slider in a parameter table to a subset of the full range.</p>
<p>This function allows restricting the slider range to a smaller range than the one set in the <a class="link" href="GwyParamDef.html" title="GwyParamDef"><span class="type">GwyParamDef</span></a>.  The
range can never be extended (it can be set to be less restricted than previously of course).</p>
<p>If there is a transformation between true and displayed values of parameters (for instance for angles) the minimum
and maximum refer to the true values.</p>
<div class="refsect3">
<a name="gwy-param-table-slider-restrict-range.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>minimum</p></td>
<td class="parameter_description"><p>Minimum allowed value (inclusive), in true parameter values.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>maximum</p></td>
<td class="parameter_description"><p>Minimum allowed value (inclusive), in true parameter values.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-slider-set-transform"></a><h3>gwy_param_table_slider_set_transform ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_slider_set_transform (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                      <em class="parameter"><code><a href="../libgwyddion-Math.html#GwyRealFunc"><span class="type">GwyRealFunc</span></a> value_to_gui</code></em>,
                                      <em class="parameter"><code><a href="../libgwyddion-Math.html#GwyRealFunc"><span class="type">GwyRealFunc</span></a> gui_to_value</code></em>,
                                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
                                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
<p>Sets the transformation function for a slider in a parameter table.</p>
<p>The functions have to be monotonically increasing in the allowed parameter range.</p>
<p>Note that <a href="/usr/share/gtk-doc/html/gtk3/GtkSpinButton.html#GtkSpinButton-struct"><span class="type">GtkSpinButton</span></a> behaves reasonably for human-sized values.  Neither the true nor the transformed value can
be too many orders of magnitude far from unity.  For values of physical quantities it is necessary to keep the
base power of 10 separately.  See also <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.</p>
<div class="refsect3">
<a name="gwy-param-table-slider-set-transform.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>value_to_gui</p></td>
<td class="parameter_description"><p>Function transforming true values to displayed values.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>gui_to_value</p></td>
<td class="parameter_description"><p>Function transforming displayed values to true values.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>Data passed to <em class="parameter"><code>value_to_gui</code></em>
and <em class="parameter"><code>gui_to_value</code></em>
.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>destroy</p></td>
<td class="parameter_description"><p>Destroy notifier of <em class="parameter"><code>user_data</code></em>
or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-slider-set-factor"></a><h3>gwy_param_table_slider_set_factor ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_slider_set_factor (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> q_value_to_gui</code></em>);</pre>
<p>Sets a constant factor transformation for a slider in a parameter table.</p>
<div class="refsect3">
<a name="gwy-param-table-slider-set-factor.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>q_value_to_gui</p></td>
<td class="parameter_description"><p>Conversion factor for transforming true values to displayed values.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-slider-add-alt"></a><h3>gwy_param_table_slider_add_alt ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_slider_add_alt (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Sets up an alternative value for a slider in a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must correspond to a slider already added by <a class="link" href="GwyParamTable.html#gwy-param-table-append-slider" title="gwy_param_table_append_slider ()"><code class="function">gwy_param_table_append_slider()</code></a>.  This
functions sets up the alternate representation.  It is initally just an identity though.  You need to use
a function specify a useful alternative representation afterwards, for instance using
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()"><code class="function">gwy_param_table_alt_set_field_pixel_x()</code></a> which uses real dimensions in a <a href="../GwyDataField.html#GwyDataField-struct"><span class="type">GwyDataField</span></a> alternative values for
pixels.</p>
<div class="refsect3">
<a name="gwy-param-table-slider-add-alt.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-alt-set-field-pixel-x"></a><h3>gwy_param_table_alt_set_field_pixel_x ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_alt_set_field_pixel_x (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                       <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                       <em class="parameter"><code><a href="../GwyDataField.html#GwyDataField-struct"><span class="type">GwyDataField</span></a> *field</code></em>);</pre>
<p>Defines a parameter table alternative value for a pixel slider using to physical sizes in a data field.</p>
<p>The slider needs to have an alternative value set up using <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.  Unit value of the
true parameter value will correspond to horizontal pixel size, as returned by <a href="../GwyDataField.html#gwy-data-field-get-dx"><code class="function">gwy_data_field_get_dx()</code></a>.</p>
<p>The data field <em class="parameter"><code>field</code></em>
 is only used by this function to set up the transformation. It can be destroyed afterwards
if no longer needed by the caller. No reference is taken and later changes to its data or properties do not have
any effect on the alternative values. Use <a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()"><code class="function">gwy_param_table_alt_set_field_pixel_x()</code></a> again if you need to adjust the
transformation for a modified (or different) data field.</p>
<div class="refsect3">
<a name="gwy-param-table-alt-set-field-pixel-x.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field</p></td>
<td class="parameter_description"><p>Data field defining the alternative value transformation.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-alt-set-field-pixel-y"></a><h3>gwy_param_table_alt_set_field_pixel_y ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_alt_set_field_pixel_y (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                       <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                       <em class="parameter"><code><a href="../GwyDataField.html#GwyDataField-struct"><span class="type">GwyDataField</span></a> *field</code></em>);</pre>
<p>Defines a parameter table alternative value for a pixel slider using to physical sizes in a data field.</p>
<p>The slider needs to have an alternative value set up using <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.  Unit value of the
true parameter value will correspond to vertical pixel size, as returned by <a href="../GwyDataField.html#gwy-data-field-get-dy"><code class="function">gwy_data_field_get_dy()</code></a>.</p>
<p>See <a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()"><code class="function">gwy_param_table_alt_set_field_pixel_x()</code></a> for a discussion how <em class="parameter"><code>field</code></em>
 is used.</p>
<div class="refsect3">
<a name="gwy-param-table-alt-set-field-pixel-y.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field</p></td>
<td class="parameter_description"><p>Data field defining the alternative value transformation.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-alt-set-brick-pixel-x"></a><h3>gwy_param_table_alt_set_brick_pixel_x ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_alt_set_brick_pixel_x (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                       <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                       <em class="parameter"><code><a href="../GwyBrick.html#GwyBrick-struct"><span class="type">GwyBrick</span></a> *brick</code></em>);</pre>
<p>Defines a parameter table alternative value for a pixel slider using to physical sizes in a data brick.</p>
<p>The slider needs to have an alternative value set up using <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.  Unit value of the
true parameter value will correspond to horizontal pixel size in the XY plane, as returned by <a href="../GwyBrick.html#gwy-brick-get-dx"><code class="function">gwy_brick_get_dx()</code></a>.</p>
<p>See <a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()"><code class="function">gwy_param_table_alt_set_field_pixel_x()</code></a> for a discussion how <em class="parameter"><code>brick</code></em>
 is used.</p>
<div class="refsect3">
<a name="gwy-param-table-alt-set-brick-pixel-x.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>brick</p></td>
<td class="parameter_description"><p>Data brick definiting the alternative value transformation.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-alt-set-brick-pixel-y"></a><h3>gwy_param_table_alt_set_brick_pixel_y ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_alt_set_brick_pixel_y (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                       <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                       <em class="parameter"><code><a href="../GwyBrick.html#GwyBrick-struct"><span class="type">GwyBrick</span></a> *brick</code></em>);</pre>
<p>Defines a parameter table alternative value for a pixel slider using to physical sizes in a data brick.</p>
<p>The slider needs to have an alternative value set up using <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.  Unit value of the
true parameter value will correspond to vertical pixel size in the XY plane, as returned by <a href="../GwyBrick.html#gwy-brick-get-dy"><code class="function">gwy_brick_get_dy()</code></a>.</p>
<p>See <a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()"><code class="function">gwy_param_table_alt_set_field_pixel_x()</code></a> for a discussion how <em class="parameter"><code>brick</code></em>
 is used.</p>
<div class="refsect3">
<a name="gwy-param-table-alt-set-brick-pixel-y.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>brick</p></td>
<td class="parameter_description"><p>Data brick definiting the alternative value transformation.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-alt-set-brick-pixel-z"></a><h3>gwy_param_table_alt_set_brick_pixel_z ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_alt_set_brick_pixel_z (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                       <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                       <em class="parameter"><code><a href="../GwyBrick.html#GwyBrick-struct"><span class="type">GwyBrick</span></a> *brick</code></em>);</pre>
<p>Defines a parameter table alternative value for a pixel slider using to physical sizes in a data brick.</p>
<p>The slider needs to have an alternative value set up using <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.  Unit value of the
true parameter value will correspond to depth-wise pixel size (more precisely, voxel size), as returned by
<a href="../GwyBrick.html#gwy-brick-get-dz"><code class="function">gwy_brick_get_dz()</code></a>.</p>
<p>See <a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()"><code class="function">gwy_param_table_alt_set_field_pixel_x()</code></a> for a discussion how <em class="parameter"><code>brick</code></em>
 is used.</p>
<p>See <a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-calibration" title="gwy_param_table_alt_set_calibration ()"><code class="function">gwy_param_table_alt_set_calibration()</code></a> which can be used with bricks which have Z-calibration.</p>
<div class="refsect3">
<a name="gwy-param-table-alt-set-brick-pixel-z.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>brick</p></td>
<td class="parameter_description"><p>Data brick definiting the alternative value transformation.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-alt-set-lawn-pixel-x"></a><h3>gwy_param_table_alt_set_lawn_pixel_x ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_alt_set_lawn_pixel_x (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                      <em class="parameter"><code><a href="../GwyLawn.html#GwyLawn-struct"><span class="type">GwyLawn</span></a> *lawn</code></em>);</pre>
<p>Defines a parameter table alternative value for a pixel slider using to physical sizes in a data lawn.</p>
<p>The slider needs to have an alternative value set up using <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.  Unit value of the
true parameter value will correspond to horizontal pixel size, as returned by <a href="../GwyLawn.html#gwy-lawn-get-dx"><code class="function">gwy_lawn_get_dx()</code></a>.</p>
<p>See <a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()"><code class="function">gwy_param_table_alt_set_field_pixel_x()</code></a> for a discussion how <em class="parameter"><code>lawn</code></em>
 is used.</p>
<div class="refsect3">
<a name="gwy-param-table-alt-set-lawn-pixel-x.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>lawn</p></td>
<td class="parameter_description"><p>Data lawn definiting the alternative value transformation.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-alt-set-lawn-pixel-y"></a><h3>gwy_param_table_alt_set_lawn_pixel_y ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_alt_set_lawn_pixel_y (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                      <em class="parameter"><code><a href="../GwyLawn.html#GwyLawn-struct"><span class="type">GwyLawn</span></a> *lawn</code></em>);</pre>
<p>Defines a parameter table alternative value for a pixel slider using to physical sizes in a data lawn.</p>
<p>The slider needs to have an alternative value set up using <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.  Unit value of the
true parameter value will correspond to vertical pixel size, as returned by <a href="../GwyLawn.html#gwy-lawn-get-dy"><code class="function">gwy_lawn_get_dy()</code></a>.</p>
<p>See <a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()"><code class="function">gwy_param_table_alt_set_field_pixel_x()</code></a> for a discussion how <em class="parameter"><code>lawn</code></em>
 is used.</p>
<div class="refsect3">
<a name="gwy-param-table-alt-set-lawn-pixel-y.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>lawn</p></td>
<td class="parameter_description"><p>Data lawn definiting the alternative value transformation.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-alt-set-field-frac-z"></a><h3>gwy_param_table_alt_set_field_frac_z ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_alt_set_field_frac_z (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                      <em class="parameter"><code><a href="../GwyDataField.html#GwyDataField-struct"><span class="type">GwyDataField</span></a> *field</code></em>);</pre>
<p>Defines a parameter table alternative value for a fraction slider using to physical values in a data field.</p>
<p>The slider needs to have an alternative value set up using <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.  The range [0,1] of
true parameter values will correspond to the range of values in the data field, as returned by
<a href="../libgwyprocess-stats.html#gwy-data-field-get-min-max"><code class="function">gwy_data_field_get_min_max()</code></a>.</p>
<p>See <a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()"><code class="function">gwy_param_table_alt_set_field_pixel_x()</code></a> for a discussion how <em class="parameter"><code>field</code></em>
 is used.</p>
<div class="refsect3">
<a name="gwy-param-table-alt-set-field-frac-z.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>field</p></td>
<td class="parameter_description"><p>Data field defining the alternative value transformation.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-alt-set-linear"></a><h3>gwy_param_table_alt_set_linear ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_alt_set_linear (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> q_to_gui</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> off_to_gui</code></em>,
                                <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *unitstr</code></em>);</pre>
<p>Defines a parameter table alternative value for a fraction slider using a linear function.</p>
<p>This function enables setting up a general linear transformation for the alternative value.  The usual cases are
more conveniently handled by functions like <a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-pixel-x" title="gwy_param_table_alt_set_field_pixel_x ()"><code class="function">gwy_param_table_alt_set_field_pixel_x()</code></a> or
<a class="link" href="GwyParamTable.html#gwy-param-table-alt-set-field-frac-z" title="gwy_param_table_alt_set_field_frac_z ()"><code class="function">gwy_param_table_alt_set_field_frac_z()</code></a>.</p>
<p>The slider needs to have an alternative value set up using <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.  The displayed value
is calculated from true parameter as <em class="parameter"><code>q_to_gui</code></em>
*<em class="parameter"><code>value</code></em>
 + <em class="parameter"><code>off_to_gui</code></em>
.</p>
<p>The factor and offset include any power-of-10 factors corresponding to the units <em class="parameter"><code>unitstr</code></em>
.  If <em class="parameter"><code>unitstr</code></em>
 comes from
a <a href="../libgwyddion-GwySIValueFormat.html#GwySIValueFormat"><span class="type">GwySIValueFormat</span></a>, then <em class="parameter"><code>q_to_gui</code></em>
 and <em class="parameter"><code>off_to_gui</code></em>
 need to be divided by <em class="parameter"><code>magnitude</code></em>
.</p>
<div class="refsect3">
<a name="gwy-param-table-alt-set-linear.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>q_to_gui</p></td>
<td class="parameter_description"><p>Conversion factor for transforming true values to displayed values.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>off_to_gui</p></td>
<td class="parameter_description"><p>Offset for transforming true values to displayed values.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>unitstr</p></td>
<td class="parameter_description"><p>Units for the alternative value (with Pango markup).</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-alt-set-calibration"></a><h3>gwy_param_table_alt_set_calibration ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_alt_set_calibration (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                     <em class="parameter"><code><a href="../GwyDataLine.html#GwyDataLine-struct"><span class="type">GwyDataLine</span></a> *calibration</code></em>);</pre>
<p>Defines a parameter table alternative value for a fraction slider using to a table given by a data line.</p>
<p>The slider needs to have an alternative value set up using <a class="link" href="GwyParamTable.html#gwy-param-table-slider-add-alt" title="gwy_param_table_slider_add_alt ()"><code class="function">gwy_param_table_slider_add_alt()</code></a>.  The range [0,<em class="parameter"><code>res</code></em>
-1]
of true parameter values will correspond to the values in <em class="parameter"><code>calibration</code></em>
, in order. It has to contain a monotonically
increasing sequence of values.</p>
<p>Modification of <em class="parameter"><code>calibration</code></em>
 during the existence of <em class="parameter"><code>partable</code></em>
 is not supported. The data line has to be static.</p>
<div class="refsect3">
<a name="gwy-param-table-alt-set-calibration.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>calibration</p></td>
<td class="parameter_description"><p>Data line defining the calibration. It will be referenced by the parameter table.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-entry"></a><h3>gwy_param_table_append_entry ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_entry (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                              <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds an entry to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a string, integer or double.  Other types may be supported in future.</p>
<div class="refsect3">
<a name="gwy-param-table-append-entry.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-60.html#api-index-2.60">2.60</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-entry-set-width"></a><h3>gwy_param_table_entry_set_width ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_entry_set_width (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width_chars</code></em>);</pre>
<p>Sets the width of an entry in a parameter table.</p>
<p>For numeric formats the automatic width should be sufficient.</p>
<div class="refsect3">
<a name="gwy-param-table-entry-set-width.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>width_chars</p></td>
<td class="parameter_description"><p>Entry width in characters.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-60.html#api-index-2.60">2.60</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-entry-set-value-format"></a><h3>gwy_param_table_entry_set_value_format ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_entry_set_value_format
                               (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                <em class="parameter"><code><a href="../libgwyddion-GwySIValueFormat.html#GwySIValueFormat"><span class="type">GwySIValueFormat</span></a> *vf</code></em>);</pre>
<p>Sets the parsing and formatting for a numeric entry to a given value format.</p>
<p>The parameter must be a double defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-double" title="gwy_param_def_add_double ()"><code class="function">gwy_param_def_add_double()</code></a> or a predefined parameter of one of these
types.</p>
<p>Setting the value format also sets the unit label accordingly.  If you want a different unit label you can override
it by using <a class="link" href="GwyParamTable.html#gwy-param-table-set-unitstr" title="gwy_param_table_set_unitstr ()"><code class="function">gwy_param_table_set_unitstr()</code></a> after this function.</p>
<div class="refsect3">
<a name="gwy-param-table-entry-set-value-format.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>vf</p></td>
<td class="parameter_description"><p>Value format to use.  The parameter table makes its own copy of the format.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-60.html#api-index-2.60">2.60</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-entry-set-instant-changes"></a><h3>gwy_param_table_entry_set_instant_changes ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_entry_set_instant_changes
                               (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
<p>Enables or disables instant change signals of a parameter table entriy.</p>
<p>With instant changes any edit causes a change of the parameter and emission of GwyParamTable::param-changed. By
default, both only occur only when the entry loses focus or upon entry activation (pressing Enter).</p>
<p>Instant changes are not suitable for parameters with rectifiers because it can lead to the user and rectification
function fighting over the entry content.</p>
<div class="refsect3">
<a name="gwy-param-table-entry-set-instant-changes.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>setting</p></td>
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to enable instant changes; <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to disable them.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-range"></a><h3>gwy_param_table_append_range ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_range (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                              <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id_from</code></em>,
                              <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id_to</code></em>);</pre>
<p>Adds a pair of numerical entries representing a range to a parameter table.</p>
<p>This is mostly useful for entering graph ranges numerically. For image ranges separate controls are preferred as
they allow pixel plus alternative real values.</p>
<p>The two parameters identified by <em class="parameter"><code>id_from</code></em>
 and <em class="parameter"><code>id_to</code></em>
 must be doubles and distinct. Parameter <em class="parameter"><code>id_from</code></em>
 is considered
primary and should be used for referring to the control as a whole (for instance to make it insensitive), even
though for convenience both are passed directly to this function.</p>
<p>Use <a class="link" href="GwyParamTable.html#gwy-param-table-entry-set-value-format" title="gwy_param_table_entry_set_value_format ()"><code class="function">gwy_param_table_entry_set_value_format()</code></a> to set the value format.</p>
<div class="refsect3">
<a name="gwy-param-table-append-range.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id_from</p></td>
<td class="parameter_description"><p>Parameter identifier for the beginning.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id_to</p></td>
<td class="parameter_description"><p>Parameter identifier for the end.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-63.html#api-index-2.63">2.63</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-unit-chooser"></a><h3>gwy_param_table_append_unit_chooser ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_unit_chooser (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                     <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a unit chooser to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a unit parameter defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-unit" title="gwy_param_def_add_unit ()"><code class="function">gwy_param_def_add_unit()</code></a>.</p>
<div class="refsect3">
<a name="gwy-param-table-append-unit-chooser.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-color"></a><h3>gwy_param_table_append_color ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_color (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                              <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a generic colour button to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a colour parameter defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-color" title="gwy_param_def_add_color ()"><code class="function">gwy_param_def_add_color()</code></a>. See
<a class="link" href="GwyParamTable.html#gwy-param-table-append-mask-color" title="gwy_param_table_append_mask_color ()"><code class="function">gwy_param_table_append_mask_color()</code></a> for mask colours.</p>
<div class="refsect3">
<a name="gwy-param-table-append-color.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-64.html#api-index-2.64">2.64</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-color-add-preset"></a><h3>gwy_param_table_color_add_preset ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_color_add_preset (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                  <em class="parameter"><code><a href="../libgwydraw-GwyRGBA.html#GwyRGBA"><span class="type">GwyRGBA</span></a> rgba</code></em>,
                                  <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
<p>Adds a preset colour to a generic colour button in a parameter table.</p>
<p>Although <em class="parameter"><code>name</code></em>
 may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, unlabelled presets look too similar to the colour button. So it is recommended to
label the colours.</p>
<div class="refsect3">
<a name="gwy-param-table-color-add-preset.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>rgba</p></td>
<td class="parameter_description"><p>The predefined colour.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>name</p></td>
<td class="parameter_description"><p>Label to display alongside, possibly <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-64.html#api-index-2.64">2.64</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-mask-color"></a><h3>gwy_param_table_append_mask_color ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_mask_color (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                   <em class="parameter"><code><a href="../GwyContainer.html#GwyContainer-struct"><span class="type">GwyContainer</span></a> *preview_data</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> preview_i</code></em>,
                                   <em class="parameter"><code><a href="../GwyContainer.html#GwyContainer-struct"><span class="type">GwyContainer</span></a> *data</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> i</code></em>);</pre>
<p>Adds a preview mask colour button to a parameter table.</p>
<p>The mask colour will use the standard prefix "/0/mask" where 0 is replaced by <em class="parameter"><code>preview_i</code></em>
.  So it should be also
used when setting up the mask layer.</p>
<p>It is possible to have multiple masks and colours in the preview data.  However, you need to consider that the
colour managed by this colour button will be given by <em class="parameter"><code>preview_i</code></em>
.</p>
<p>Usually the mask colour should be initialised from the file using <a class="link" href="libgwyapp-data-browser.html#gwy-app-sync-data-items" title="gwy_app_sync_data_items ()"><code class="function">gwy_app_sync_data_items()</code></a>.  When the dialog is
finished it the mask colour should be set on the output again using <a class="link" href="libgwyapp-data-browser.html#gwy-app-sync-data-items" title="gwy_app_sync_data_items ()"><code class="function">gwy_app_sync_data_items()</code></a>.  If <em class="parameter"><code>data</code></em>
 and <em class="parameter"><code>i</code></em>
 are
supplied then this is done automatically, which is suitable for typical mask-creating modules.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a colour parameter defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-mask-color" title="gwy_param_def_add_mask_color ()"><code class="function">gwy_param_def_add_mask_color()</code></a>.</p>
<div class="refsect3">
<a name="gwy-param-table-append-mask-color.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>preview_data</p></td>
<td class="parameter_description"><p>Data container for the preview data.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>preview_i</p></td>
<td class="parameter_description"><p>Id of the data field in <em class="parameter"><code>preview_data</code></em>
.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>data</p></td>
<td class="parameter_description"><p>Application data container with the mask (or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>).</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>i</p></td>
<td class="parameter_description"><p>Id of the data field in <em class="parameter"><code>data</code></em>
(or -1).</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-button"></a><h3>gwy_param_table_append_button ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_button (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> sibling_id</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> response</code></em>,
                               <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
<p>Adds a button to a parameter table.</p>
<p>Action buttons occasionally appear inside parameter tables when they do not represent a global action but act on
a specific control.  For instance they can be used to run an automatic estimation of one specific parameter.</p>
<p>Each button must have its own unique <em class="parameter"><code>id</code></em>
, different from all parameter identifiers.  This is best achieved by
taking them all from the same enum.  However, pressing the button does not change any parameter.  It emits
GtkDialog::response signal on the parent dialog, with response id given by <em class="parameter"><code>response</code></em>
.  Connect to this signal to
actually perform the action.</p>
<p>A row with multiple buttons can be created by passing -1 as <em class="parameter"><code>sibling_id</code></em>
 for the first button and then ids of some
of the previous buttons for the other buttons.</p>
<div class="refsect3">
<a name="gwy-param-table-append-button.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>sibling_id</p></td>
<td class="parameter_description"><p>Identifier of another button in the same row, or -1 for a new button row.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>response</p></td>
<td class="parameter_description"><p>Dialog response to emit.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>text</p></td>
<td class="parameter_description"><p>Text on the button.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-info"></a><h3>gwy_param_table_append_info ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_info (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                             <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                             <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *label</code></em>);</pre>
<p>Add a structured informational value label to a parameter table.</p>
<p>Informational values not modifiable by the users often appear in parameter tables.  Each must have its own unique
<em class="parameter"><code>id</code></em>
, different from all parameter identifiers, if you need to refer to it later.  This is best achieved by taking
them all from the same enum.  For static texts you can also pass -1 as <em class="parameter"><code>id</code></em>
; you will not be able to refer to them
later.</p>
<p>Use <a class="link" href="GwyParamTable.html#gwy-param-table-info-set-valuestr" title="gwy_param_table_info_set_valuestr ()"><code class="function">gwy_param_table_info_set_valuestr()</code></a> to set the value part of the information; use <a class="link" href="GwyParamTable.html#gwy-param-table-set-unitstr" title="gwy_param_table_set_unitstr ()"><code class="function">gwy_param_table_set_unitstr()</code></a>
to set the unit part.</p>
<p>This function is suitable for one-off labels.  For larger sets of values consider using <a href="../GwyResults.html#GwyResults-struct"><span class="type">GwyResults</span></a> and
<a class="link" href="GwyParamTable.html#gwy-param-table-append-results" title="gwy_param_table_append_results ()"><code class="function">gwy_param_table_append_results()</code></a>.  See also <a class="link" href="GwyParamTable.html#gwy-param-table-append-message" title="gwy_param_table_append_message ()"><code class="function">gwy_param_table_append_message()</code></a> for unstructured texts.</p>
<div class="refsect3">
<a name="gwy-param-table-append-info.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>label</p></td>
<td class="parameter_description"><p>Information label text.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-results"></a><h3>gwy_param_table_append_results ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_results (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                <em class="parameter"><code><a href="../GwyResults.html#GwyResults-struct"><span class="type">GwyResults</span></a> *results</code></em>,
                                <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *result_id</code></em>,
                                <em class="parameter"><code>...</code></em>);</pre>
<p>Adds a set of reported scalar variables to a parameter table.</p>
<p>Results are not actual user modifiable settings.  Yet they often appear in parameter tables.  This function
integrates them to the parameter table.  It appends a single contiguous block of results.  Use it multiple times,
perhaps interspersed with <a class="link" href="GwyParamTable.html#gwy-param-table-append-header" title="gwy_param_table_append_header ()"><code class="function">gwy_param_table_append_header()</code></a>, to create multiple blocks for the same <em class="parameter"><code>results</code></em>
 object.</p>
<p>Multiple result blocks can share one <em class="parameter"><code>id</code></em>
.  Functions such as <a class="link" href="GwyParamTable.html#gwy-param-table-results-fill" title="gwy_param_table_results_fill ()"><code class="function">gwy_param_table_results_fill()</code></a> and
<a class="link" href="GwyParamTable.html#gwy-param-table-results-clear" title="gwy_param_table_results_clear ()"><code class="function">gwy_param_table_results_clear()</code></a> then act on all blocks with given id.</p>
<div class="refsect3">
<a name="gwy-param-table-append-results.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>results</p></td>
<td class="parameter_description"><p>A set of reported scalar values.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>result_id</p></td>
<td class="parameter_description"><p>String identifier of the first result in <em class="parameter"><code>result</code></em>
to add.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>...</p></td>
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated list of more result identifiers.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-resultsv"></a><h3>gwy_param_table_append_resultsv ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_resultsv (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                 <em class="parameter"><code><a href="../GwyResults.html#GwyResults-struct"><span class="type">GwyResults</span></a> *results</code></em>,
                                 <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **result_ids</code></em>,
                                 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> nids</code></em>);</pre>
<p>Adds a set of reported scalar variables to a parameter table.</p>
<p>See <a class="link" href="GwyParamTable.html#gwy-param-table-append-results" title="gwy_param_table_append_results ()"><code class="function">gwy_param_table_append_results()</code></a> for details.</p>
<div class="refsect3">
<a name="gwy-param-table-append-resultsv.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>results</p></td>
<td class="parameter_description"><p>A set of reported scalar values.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>result_ids</p></td>
<td class="parameter_description"><p>Array of string result identifiers in <em class="parameter"><code>results</code></em>
.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>nids</p></td>
<td class="parameter_description"><p>Number of items in <em class="parameter"><code>result_ids</code></em>
.  You can pass -1 if the array is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-results-fill"></a><h3>gwy_param_table_results_fill ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_results_fill (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                              <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Fills displayed values in a set of reported scalar variables in a parameter table.</p>
<p>The identifier <em class="parameter"><code>id</code></em>
 must correspond to a results block added by <a class="link" href="GwyParamTable.html#gwy-param-table-append-results" title="gwy_param_table_append_results ()"><code class="function">gwy_param_table_append_results()</code></a> or a similar
function.</p>
<div class="refsect3">
<a name="gwy-param-table-results-fill.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-results-clear"></a><h3>gwy_param_table_results_clear ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_results_clear (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Clears all displayed values in a set of reported scalar variables in a parameter table.</p>
<p>The identifier <em class="parameter"><code>id</code></em>
 must correspond to a results block added by <a class="link" href="GwyParamTable.html#gwy-param-table-append-results" title="gwy_param_table_append_results ()"><code class="function">gwy_param_table_append_results()</code></a> or a similar
function.</p>
<div class="refsect3">
<a name="gwy-param-table-results-clear.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-report"></a><h3>gwy_param_table_append_report ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_report (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                               <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds controls for report formatting to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a report type defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-report-type" title="gwy_param_def_add_report_type ()"><code class="function">gwy_param_def_add_report_type()</code></a>.</p>
<p>You also need to provide means of report creation by <a class="link" href="GwyParamTable.html#gwy-param-table-report-set-results" title="gwy_param_table_report_set_results ()"><code class="function">gwy_param_table_report_set_results()</code></a> or
<a class="link" href="GwyParamTable.html#gwy-param-table-report-set-formatter" title="gwy_param_table_report_set_formatter ()"><code class="function">gwy_param_table_report_set_formatter()</code></a>.  Otherwise the controls allow changing the format type parameter, but the
action buttons cannot do anything.</p>
<div class="refsect3">
<a name="gwy-param-table-append-report.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-report-set-results"></a><h3>gwy_param_table_report_set_results ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_report_set_results (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                    <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                    <em class="parameter"><code><a href="../GwyResults.html#GwyResults-struct"><span class="type">GwyResults</span></a> *results</code></em>);</pre>
<p>Sets up report export controls in a parameter table to format <a href="../GwyResults.html#GwyResults-struct"><span class="type">GwyResults</span></a>.</p>
<p>The results would be typically added to the table just above using <a class="link" href="GwyParamTable.html#gwy-param-table-append-results" title="gwy_param_table_append_results ()"><code class="function">gwy_param_table_append_results()</code></a>.  However, you
can use aribtrary <a href="../GwyResults.html#GwyResults-struct"><span class="type">GwyResults</span></a> object.</p>
<div class="refsect3">
<a name="gwy-param-table-report-set-results.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>results</p></td>
<td class="parameter_description"><p>A set of reported scalar values.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-report-set-formatter"></a><h3>gwy_param_table_report_set_formatter ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_report_set_formatter (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                      <em class="parameter"><code><a class="link" href="GwyParamTable.html#GwyCreateTextFunc" title="GwyCreateTextFunc ()"><span class="type">GwyCreateTextFunc</span></a> format_report</code></em>,
                                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
                                      <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
<p>Sets up report export controls in a parameter table to use a custom function to format the report.</p>
<p>When using a custom formatting function, the report would typically be added just above as a <a href="/usr/share/gtk-doc/html/gtk3/GtkTreeView.html#GtkTreeView-struct"><span class="type">GtkTreeView</span></a> or
a similar data display widget.</p>
<div class="refsect3">
<a name="gwy-param-table-report-set-formatter.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>format_report</p></td>
<td class="parameter_description"><p>Function which will format the report for Copy and Save actions.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>Data passed to <em class="parameter"><code>format_report</code></em>
.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>destroy</p></td>
<td class="parameter_description"><p>Destroy notifier of <em class="parameter"><code>user_data</code></em>
or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-hold-selection"></a><h3>gwy_param_table_append_hold_selection ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_hold_selection (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                       <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a selection holding parameter to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a selection holding flags parameter defined by
<a class="link" href="GwyParamDef.html#gwy-param-def-add-hold-selection" title="gwy_param_def_add_hold_selection ()"><code class="function">gwy_param_def_add_hold_selection()</code></a>.</p>
<div class="refsect3">
<a name="gwy-param-table-append-hold-selection.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-63.html#api-index-2.63">2.63</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-seed"></a><h3>gwy_param_table_append_seed ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_seed (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                             <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
<p>Adds a random seed parameter to a parameter table.</p>
<p>The parameter identified by <em class="parameter"><code>id</code></em>
 must be a random seed parameter defined by <a class="link" href="GwyParamDef.html#gwy-param-def-add-seed" title="gwy_param_def_add_seed ()"><code class="function">gwy_param_def_add_seed()</code></a>.</p>
<p>Usually there is an associated boolean parameter controlling randomization which should be added just below using
<a class="link" href="GwyParamTable.html#gwy-param-table-append-checkbox" title="gwy_param_table_append_checkbox ()"><code class="function">gwy_param_table_append_checkbox()</code></a>.</p>
<div class="refsect3">
<a name="gwy-param-table-append-seed.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-message"></a><h3>gwy_param_table_append_message ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_message (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
<p>Adds a simple message to a parameter table.</p>
<p>Messages are not actual user modifiable settings.  Yet they often appear in parameter tables.  Each message must
have its own unique <em class="parameter"><code>id</code></em>
, different from all parameter identifiers, if you need to refer to it later.  This is best
achieved by taking them all from the same enum.  For static texts you can also pass -1 as <em class="parameter"><code>id</code></em>
; you will not be
able to refer to them later.</p>
<p>Use <a class="link" href="GwyParamTable.html#gwy-param-table-set-label" title="gwy_param_table_set_label ()"><code class="function">gwy_param_table_set_label()</code></a> to change the text later.  Use <a class="link" href="GwyParamTable.html#gwy-param-table-message-set-type" title="gwy_param_table_message_set_type ()"><code class="function">gwy_param_table_message_set_type()</code></a> to set the
message type.</p>
<p>This function is intended for unstructured and potentially long, even multiline texts.  They can take the full
width but cannot have unit text.  Use <a class="link" href="GwyParamTable.html#gwy-param-table-append-info" title="gwy_param_table_append_info ()"><code class="function">gwy_param_table_append_info()</code></a> instead for information labels with the common
label-value-unit structure.</p>
<div class="refsect3">
<a name="gwy-param-table-append-message.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier (possibly -1).</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>text</p></td>
<td class="parameter_description"><p>Message text (may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for initially empty message).</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-info-set-valuestr"></a><h3>gwy_param_table_info_set_valuestr ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_info_set_valuestr (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                   <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                   <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
<p>Sets the value text of a informational value label in a parameter table.</p>
<p>The value text is right-aligned and placed to the right part of the row.  This can be used to create simple
structured label-value-units messages.</p>
<div class="refsect3">
<a name="gwy-param-table-info-set-valuestr.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier of the informational value label (not a new identifier).</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>text</p></td>
<td class="parameter_description"><p>Value text (may be <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for empty value).</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-info-set-add-punctuation"></a><h3>gwy_param_table_info_set_add_punctuation ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_info_set_add_punctuation
                               (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
<p>Sets whether standard punctuation is added to an informational value label in a parameter table.</p>
<p>The default behaviour is to add the same punctuation as to parameter labels. Use this function to disable it.</p>
<div class="refsect3">
<a name="gwy-param-table-info-set-add-punctuation.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier of the informational value label (not a new identifier).</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>setting</p></td>
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to add punctuation (usually a colon), <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to keep the label intact.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-62.html#api-index-2.62">2.62</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-message-set-type"></a><h3>gwy_param_table_message_set_type ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_message_set_type (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk3/GtkMessageDialog.html#GtkMessageType"><span class="type">GtkMessageType</span></a> type</code></em>);</pre>
<p>Sets the type of a message in a parameter table.</p>
<p>This function modifies the visual style of the text according to the given type, the default <a href="/usr/share/gtk-doc/html/gtk3/GtkMessageDialog.html#GTK-MESSAGE-INFO:CAPS"><code class="literal">GTK_MESSAGE_INFO</code></a>
corresponding to a neutral presentation.  Not all types are equally meaningful in a parameter table.  Do not use
<a href="/usr/share/gtk-doc/html/gtk3/GtkMessageDialog.html#GTK-MESSAGE-QUESTION:CAPS"><code class="literal">GTK_MESSAGE_QUESTION</code></a> and <a href="/usr/share/gtk-doc/html/gtk3/GtkMessageDialog.html#GTK-MESSAGE-OTHER:CAPS"><code class="literal">GTK_MESSAGE_OTHER</code></a>.</p>
<p>If the message has a value text set by <code class="function">gwy_param_table_message_set_value_text()</code> both are styled the same.</p>
<div class="refsect3">
<a name="gwy-param-table-message-set-type.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier of the message.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>type</p></td>
<td class="parameter_description"><p>Message type.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="gwy-param-table-append-foreign"></a><h3>gwy_param_table_append_foreign ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
gwy_param_table_append_foreign (<em class="parameter"><code><a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *partable</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>,
                                <em class="parameter"><code><a class="link" href="GwyParamTable.html#GwyCreateWidgetFunc" title="GwyCreateWidgetFunc ()"><span class="type">GwyCreateWidgetFunc</span></a> create_widget</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
                                <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
<p>Adds a widget that is not supported natively to a parameter table.</p>
<p>This function takes a function instead of the widget itself.  If the table widget is destroyed and recreated then
<em class="parameter"><code>create_widget</code></em>
 can be called multiple times.  Typically, however, it will just be called once.  The destroy notifier
will only be called when <em class="parameter"><code>partable</code></em>
 itself is destroyed.</p>
<p>The created widget must not be indepdendently destroyed while the table widget exists.  If the widget is
a container, like <a href="/usr/share/gtk-doc/html/gtk3/GtkBox.html#GtkBox-struct"><span class="type">GtkBox</span></a>, it will give you considerable freedom to change its contents later.</p>
<p>The identifier <em class="parameter"><code>id</code></em>
 may be passed as -1 if you are not interested in referring to the widget using <a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a>
functions.  A real identifier enables some rudimentary functionality such as <a class="link" href="GwyParamTable.html#gwy-param-table-exists" title="gwy_param_table_exists ()"><code class="function">gwy_param_table_exists()</code></a> and
<a class="link" href="GwyParamTable.html#gwy-param-table-set-sensitive" title="gwy_param_table_set_sensitive ()"><code class="function">gwy_param_table_set_sensitive()</code></a>.</p>
<div class="refsect3">
<a name="gwy-param-table-append-foreign.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>partable</p></td>
<td class="parameter_description"><p>Set of parameter value controls.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>id</p></td>
<td class="parameter_description"><p>Parameter identifier.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>create_widget</p></td>
<td class="parameter_description"><p>Function to create the widget.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>The data passed to <em class="parameter"><code>create_widget</code></em>
.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>destroy</p></td>
<td class="parameter_description"><p>Destroy notifier of <em class="parameter"><code>user_data</code></em>
or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
</div>
<div class="refsect1">
<a name="GwyParamTable.other_details"></a><h2>Types and Values</h2>
<div class="refsect2">
<a name="GwyParamTable-struct"></a><h3>struct GwyParamTable</h3>
<pre class="programlisting">struct GwyParamTable;</pre>
<p>Object managing user interface controls for parameters.</p>
<p>The <a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> struct contains no public fields.</p>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
<hr>
<div class="refsect2">
<a name="GwyParamTableClass"></a><h3>struct GwyParamTableClass</h3>
<pre class="programlisting">struct GwyParamTableClass {
    GInitiallyUnownedClass parent;
};
</pre>
<p>Class of user interface parameter controls manager.</p>
<p class="since">Since: <a class="link" href="api-index-2-59.html#api-index-2.59">2.59</a></p>
</div>
</div>
<div class="refsect1">
<a name="GwyParamTable.signal-details"></a><h2>Signal Details</h2>
<div class="refsect2">
<a name="GwyParamTable-param-changed"></a><h3>The <code class="literal">“param-changed”</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>
user_function (<a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> *gwyparamtable,
               <span class="type">int</span>            arg1,
               <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>       user_data)</pre>
<p>The ::param-changed signal is emitted when a parameter changes.</p>
<p>The signal is not emitted recursively.  In other words, if a signal handler modifies other parameters in
response to a parameter change, it is expected to complete all the dependent udpdates.</p>
<div class="refsect3">
<a name="GwyParamTable-param-changed.parameters"></a><h4>Parameters</h4>
<div class="informaltable"><table class="informaltable" width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
<col class="parameters_description">
<col width="200px" class="parameters_annotations">
</colgroup>
<tbody>
<tr>
<td class="parameter_name"><p>gwyparamtable</p></td>
<td class="parameter_description"><p>The <a class="link" href="GwyParamTable.html" title="GwyParamTable"><span class="type">GwyParamTable</span></a> which received the signal.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>arg1</p></td>
<td class="parameter_description"><p>Identifier of the changed parameter.</p></td>
<td class="parameter_annotations"> </td>
</tr>
<tr>
<td class="parameter_name"><p>user_data</p></td>
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
<td class="parameter_annotations"> </td>
</tr>
</tbody>
</table></div>
</div>
<p>Flags: <a href="/usr/share/gtk-doc/html/gobject/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS">Run First</a></p>
</div>
</div>
</div>
<div class="footer">
<hr>Generated by GTK-Doc V1.19</div>
</body>
</html>