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
|
<!doctype html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><title>Python: module skeinforge_tools.skeinforge_utilities.settings</title>
</head><body bgcolor="#f0f0f8">
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
<tr bgcolor="#7799ee">
<td valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="skeinforge_tools.html"><font color="#ffffff">skeinforge_tools</font></a>.<a href="skeinforge_tools.skeinforge_utilities.html"><font color="#ffffff">skeinforge_utilities</font></a>.settings</strong></big></big> ($Date: 2008/23/04 $)</font></td
><td align=right valign=bottom
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/enrique/Desktop/backup/babbleold/script/reprap/pyRepRap/skeinforge_tools/skeinforge_utilities/settings.py">/home/enrique/Desktop/backup/babbleold/script/reprap/pyRepRap/skeinforge_tools/skeinforge_utilities/settings.py</a></font></td></tr></table>
<p><tt>Settings is a collection of utilities to display, read & write the settings and position widgets.</tt></p>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#aa55cc">
<td colspan=3 valign=bottom> <br>
<font color="#fffff" face="helvetica, arial"><big><strong>Modules</strong></big></font></td></tr>
<tr><td bgcolor="#aa55cc"><tt> </tt></td><td> </td>
<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="Tkinter.html">Tkinter</a><br>
<a href="__init__.html">__init__</a><br>
</td><td width="25%" valign=top><a href="cStringIO.html">cStringIO</a><br>
<a href="skeinforge_tools.skeinforge_utilities.euclidean.html">skeinforge_tools.skeinforge_utilities.euclidean</a><br>
</td><td width="25%" valign=top><a href="skeinforge_tools.skeinforge_utilities.gcodec.html">skeinforge_tools.skeinforge_utilities.gcodec</a><br>
<a href="os.html">os</a><br>
</td><td width="25%" valign=top><a href="shutil.html">shutil</a><br>
<a href="webbrowser.html">webbrowser</a><br>
</td></tr></table></td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ee77aa">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td>
<td width="100%"><dl>
<dt><font face="helvetica, arial"><a href="Tkinter.html#Scrollbar">Tkinter.Scrollbar</a>(<a href="Tkinter.html#Widget">Tkinter.Widget</a>)
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#HiddenScrollbar">HiddenScrollbar</a>
</font></dt></dl>
</dd>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#AddProfile">AddProfile</a>
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#DeleteProfile">DeleteProfile</a>
</font></dt></dl>
</dd>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#CloseListener">CloseListener</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#DeleteProfileDialog">DeleteProfileDialog</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#DisplayToolButton">DisplayToolButton</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#FileHelpMenuBar">FileHelpMenuBar</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#FrameList">FrameList</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#GridHorizontal">GridHorizontal</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#GridVertical">GridVertical</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#HelpPage">HelpPage</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#HelpPageRepository">HelpPageRepository</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#LabelDisplay">LabelDisplay</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#LabelHelp">LabelHelp</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#LabelSeparator">LabelSeparator</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#LatentStringVar">LatentStringVar</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#MenuButtonDisplay">MenuButtonDisplay</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#PluginFrame">PluginFrame</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#ProfileList">ProfileList</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#RepositoryDialog">RepositoryDialog</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a>
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#MenuRadio">MenuRadio</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#Radio">Radio</a>
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#RadioCapitalized">RadioCapitalized</a>
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#RadioPlugin">RadioPlugin</a>
</font></dt></dl>
</dd>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#RadioCapitalizedButton">RadioCapitalizedButton</a>
</font></dt></dl>
</dd>
</dl>
</dd>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#FileNameInput">FileNameInput</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a>
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a>
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpinNotOnMenu">FloatSpinNotOnMenu</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpinUpdate">FloatSpinUpdate</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpin">IntSpin</a>
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpinNotOnMenu">IntSpinNotOnMenu</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpinUpdate">IntSpinUpdate</a>
</font></dt></dl>
</dd>
</dl>
</dd>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSetting">IntSetting</a>
</font></dt></dl>
</dd>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#ProfileListboxSetting">ProfileListboxSetting</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#TextSetting">TextSetting</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#WindowPosition">WindowPosition</a>
</font></dt></dl>
</dd>
<dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#TokenConversion">TokenConversion</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#ToolDialog">ToolDialog</a>
</font></dt><dt><font face="helvetica, arial"><a href="skeinforge_tools.skeinforge_utilities.settings.html#WindowVisibilities">WindowVisibilities</a>
</font></dt></dl>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="AddProfile">class <strong>AddProfile</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to add a profile.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="AddProfile-addSelection"><strong>addSelection</strong></a>(self)</dt><dd><tt>Add the selection of a listbox setting.</tt></dd></dl>
<dl><dt><a name="AddProfile-addSelectionWithEvent"><strong>addSelectionWithEvent</strong></a>(self, event)</dt><dd><tt>Add the selection of a listbox setting, given an event.</tt></dd></dl>
<dl><dt><a name="AddProfile-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="AddProfile-getFromProfileListboxSettingRepository"><strong>getFromProfileListboxSettingRepository</strong></a>(self, profileListboxSetting, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="BooleanSetting">class <strong>BooleanSetting</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a boolean.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="BooleanSetting-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the repository menu.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the checkbutton to the boolean.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Do nothing because toggleCheckbutton is handling the value.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the boolean to the string.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-toggleCheckbutton"><strong>toggleCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-toggleMenuCheckbutton"><strong>toggleMenuCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="BooleanSetting-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="BooleanSetting-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="CloseListener">class <strong>CloseListener</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to listen to link a window to the global repository dialog list table.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="CloseListener-__init__"><strong>__init__</strong></a>(self, window, closeFunction<font color="#909090">=None</font>)</dt><dd><tt>Add the window to the global repository dialog list table.</tt></dd></dl>
<dl><dt><a name="CloseListener-listenToWidget"><strong>listenToWidget</strong></a>(self, widget)</dt><dd><tt>Listen to the destroy message of the widget.</tt></dd></dl>
<dl><dt><a name="CloseListener-wasClosed"><strong>wasClosed</strong></a>(self, event)</dt><dd><tt>The dialog was closed.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="DeleteProfile">class <strong>DeleteProfile</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#AddProfile">AddProfile</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to delete the selection of a listbox profile.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="DeleteProfile-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="DeleteProfile-deleteSelection"><strong>deleteSelection</strong></a>(self)</dt><dd><tt>Delete the selection of a listbox setting.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#AddProfile">AddProfile</a>:<br>
<dl><dt><a name="DeleteProfile-addSelection"><strong>addSelection</strong></a>(self)</dt><dd><tt>Add the selection of a listbox setting.</tt></dd></dl>
<dl><dt><a name="DeleteProfile-addSelectionWithEvent"><strong>addSelectionWithEvent</strong></a>(self, event)</dt><dd><tt>Add the selection of a listbox setting, given an event.</tt></dd></dl>
<dl><dt><a name="DeleteProfile-getFromProfileListboxSettingRepository"><strong>getFromProfileListboxSettingRepository</strong></a>(self, profileListboxSetting, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="DeleteProfileDialog">class <strong>DeleteProfileDialog</strong></a></font></td></tr>
<tr><td bgcolor="#ffc8d8"><tt> </tt></td><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="DeleteProfileDialog-__init__"><strong>__init__</strong></a>(self, profileListboxSetting, root)</dt><dd><tt>Display a delete dialog.</tt></dd></dl>
<dl><dt><a name="DeleteProfileDialog-delete"><strong>delete</strong></a>(self)</dt><dd><tt>Delete the selection of a listbox setting.</tt></dd></dl>
<dl><dt><a name="DeleteProfileDialog-no"><strong>no</strong></a>(self)</dt><dd><tt>The dialog was closed.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="DisplayToolButton">class <strong>DisplayToolButton</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display the tool dialog button, in a two column wide table.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="DisplayToolButton-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="DisplayToolButton-displayDialog"><strong>displayDialog</strong></a>(self)</dt><dd><tt>Display function.</tt></dd></dl>
<dl><dt><a name="DisplayToolButton-getFromPath"><strong>getFromPath</strong></a>(self, important, name, path, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="FileHelpMenuBar">class <strong>FileHelpMenuBar</strong></a></font></td></tr>
<tr><td bgcolor="#ffc8d8"><tt> </tt></td><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="FileHelpMenuBar-__init__"><strong>__init__</strong></a>(self, root)</dt><dd><tt>Create a menu bar with a file and help menu.</tt></dd></dl>
<dl><dt><a name="FileHelpMenuBar-addMenuToMenuBar"><strong>addMenuToMenuBar</strong></a>(self, labelText, menu)</dt><dd><tt>Add a menu to the menu bar.</tt></dd></dl>
<dl><dt><a name="FileHelpMenuBar-addPluginToMenuBar"><strong>addPluginToMenuBar</strong></a>(self, modulePath, repository, window)</dt><dd><tt>Add a menu to the menu bar from a tool.</tt></dd></dl>
<dl><dt><a name="FileHelpMenuBar-completeMenu"><strong>completeMenu</strong></a>(self, closeFunction, repository, saveFunction, window)</dt><dd><tt>Complete the menu.</tt></dd></dl>
<dl><dt><a name="FileHelpMenuBar-saveClose"><strong>saveClose</strong></a>(self)</dt><dd><tt>Call the save function then the close function.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="FileNameInput">class <strong>FileNameInput</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a fileName.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="FileNameInput-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="FileNameInput-execute"><strong>execute</strong></a>(self)</dt><dd><tt>Open the file picker.</tt></dd></dl>
<dl><dt><a name="FileNameInput-getFileNameFirstTypes"><strong>getFileNameFirstTypes</strong></a>(self)</dt><dd><tt>Get the file types with the file type of the fileName moved to the front of the list.</tt></dd></dl>
<dl><dt><a name="FileNameInput-getFromFileName"><strong>getFromFileName</strong></a>(self, fileTypes, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FileNameInput-setCancelledValue"><strong>setCancelledValue</strong></a>(self, fileName)</dt><dd><tt>Set the value to the file name and wasCancelled true if a file was not picked.</tt></dd></dl>
<dl><dt><a name="FileNameInput-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Do nothing because the file dialog is handling the value.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="FileNameInput-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="FileNameInput-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="FileNameInput-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="FileNameInput-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="FileNameInput-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="FileNameInput-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="FileNameInput-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FileNameInput-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FileNameInput-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FileNameInput-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="FileNameInput-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="FileNameInput-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="FileNameInput-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="FileNameInput-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the value to the value string.</tt></dd></dl>
<dl><dt><a name="FileNameInput-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="FloatSetting">class <strong>FloatSetting</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a float.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="FloatSetting-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the float to the string.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="FloatSetting-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="FloatSetting-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="FloatSetting-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="FloatSetting-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="FloatSetting-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="FloatSetting-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="FloatSetting-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="FloatSetting-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSetting-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSetting-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSetting-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="FloatSetting-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="FloatSetting-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the entry field.</tt></dd></dl>
<dl><dt><a name="FloatSetting-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="FloatSetting-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="FloatSetting-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="FloatSpin">class <strong>FloatSpin</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write an float in a spin box.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="FloatSpin-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="FloatSpin-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="FloatSpin-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="FloatSpin-decrease"><strong>decrease</strong></a>(self)</dt><dd><tt>Decrease the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="FloatSpin-entryUpdated"><strong>entryUpdated</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="FloatSpin-getFromValue"><strong>getFromValue</strong></a>(self, from_, name, repository, to, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSpin-increase"><strong>increase</strong></a>(self)</dt><dd><tt>Increase the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="FloatSpin-setColor"><strong>setColor</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="FloatSpin-setColorToDisplay"><strong>setColorToDisplay</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="FloatSpin-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="FloatSpin-setStateUpdateColor"><strong>setStateUpdateColor</strong></a>(self)</dt><dd><tt>Set the state to the value, call the update function, then set the color.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a>:<br>
<dl><dt><a name="FloatSpin-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the float to the string.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="FloatSpin-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="FloatSpin-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="FloatSpin-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="FloatSpin-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="FloatSpin-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSpin-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSpin-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="FloatSpin-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the entry field.</tt></dd></dl>
<dl><dt><a name="FloatSpin-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="FloatSpin-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="FloatSpin-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="FloatSpinNotOnMenu">class <strong>FloatSpinNotOnMenu</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write an float in a spin box, which is not to be added to a menu.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpinNotOnMenu">FloatSpinNotOnMenu</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="FloatSpinNotOnMenu-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a>:<br>
<dl><dt><a name="FloatSpinNotOnMenu-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-decrease"><strong>decrease</strong></a>(self)</dt><dd><tt>Decrease the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-entryUpdated"><strong>entryUpdated</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-getFromValue"><strong>getFromValue</strong></a>(self, from_, name, repository, to, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-increase"><strong>increase</strong></a>(self)</dt><dd><tt>Increase the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-setColor"><strong>setColor</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-setColorToDisplay"><strong>setColorToDisplay</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-setStateUpdateColor"><strong>setStateUpdateColor</strong></a>(self)</dt><dd><tt>Set the state to the value, call the update function, then set the color.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a>:<br>
<dl><dt><a name="FloatSpinNotOnMenu-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the float to the string.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="FloatSpinNotOnMenu-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the entry field.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="FloatSpinNotOnMenu-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="FloatSpinUpdate">class <strong>FloatSpinUpdate</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read, update & write an float in a spin box.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpinUpdate">FloatSpinUpdate</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="FloatSpinUpdate-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a>:<br>
<dl><dt><a name="FloatSpinUpdate-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-decrease"><strong>decrease</strong></a>(self)</dt><dd><tt>Decrease the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-entryUpdated"><strong>entryUpdated</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-getFromValue"><strong>getFromValue</strong></a>(self, from_, name, repository, to, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-increase"><strong>increase</strong></a>(self)</dt><dd><tt>Increase the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-setColor"><strong>setColor</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-setColorToDisplay"><strong>setColorToDisplay</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-setStateUpdateColor"><strong>setStateUpdateColor</strong></a>(self)</dt><dd><tt>Set the state to the value, call the update function, then set the color.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a>:<br>
<dl><dt><a name="FloatSpinUpdate-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the float to the string.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="FloatSpinUpdate-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the entry field.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="FloatSpinUpdate-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="FrameList">class <strong>FrameList</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to list the frames.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="FrameList-addToList"><strong>addToList</strong></a>(self, word)</dt><dd><tt>Add the word to the sorted list.</tt></dd></dl>
<dl><dt><a name="FrameList-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="FrameList-removeFromList"><strong>removeFromList</strong></a>(self, word)</dt><dd><tt>Remove the word from the sorted list.</tt></dd></dl>
<dl><dt><a name="FrameList-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Do nothing because frame list does not have a display.</tt></dd></dl>
<dl><dt><a name="FrameList-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second and later words of a split line.</tt></dd></dl>
<dl><dt><a name="FrameList-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and list to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="GridHorizontal">class <strong>GridHorizontal</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to place elements horizontally on a grid.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="GridHorizontal-__init__"><strong>__init__</strong></a>(self, column, row)</dt><dd><tt>Initialize the column and row.</tt></dd></dl>
<dl><dt><a name="GridHorizontal-getCopy"><strong>getCopy</strong></a>(self)</dt><dd><tt>Get a copy.</tt></dd></dl>
<dl><dt><a name="GridHorizontal-increment"><strong>increment</strong></a>(self)</dt><dd><tt>Increment the position horizontally.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="GridVertical">class <strong>GridVertical</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to place elements vertically on a grid.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="GridVertical-__init__"><strong>__init__</strong></a>(self, column, row)</dt><dd><tt>Initialize the column and row.</tt></dd></dl>
<dl><dt><a name="GridVertical-execute"><strong>execute</strong></a>(self)</dt><dd><tt>The execute button was clicked.</tt></dd></dl>
<dl><dt><a name="GridVertical-getCopy"><strong>getCopy</strong></a>(self)</dt><dd><tt>Get a copy.</tt></dd></dl>
<dl><dt><a name="GridVertical-increment"><strong>increment</strong></a>(self)</dt><dd><tt>Increment the position vertically.</tt></dd></dl>
<dl><dt><a name="GridVertical-incrementGivenNumberOfColumns"><strong>incrementGivenNumberOfColumns</strong></a>(self, numberOfColumns)</dt><dd><tt>Increment the position vertically and offset it horizontally by the given number of columns.</tt></dd></dl>
<dl><dt><a name="GridVertical-setExecutablesRepository"><strong>setExecutablesRepository</strong></a>(self, repository)</dt><dd><tt>Set the executables to an empty list and set the repository.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="HelpPage">class <strong>HelpPage</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to open a help page.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="HelpPage-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="HelpPage-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the repository menu.</tt></dd></dl>
<dl><dt><a name="HelpPage-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="HelpPage-getFromNameAfterHTTP"><strong>getFromNameAfterHTTP</strong></a>(self, afterHTTP, name, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="HelpPage-getFromNameAfterWWW"><strong>getFromNameAfterWWW</strong></a>(self, afterWWW, name, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="HelpPage-getFromNameSubName"><strong>getFromNameSubName</strong></a>(self, name, repository, subName<font color="#909090">=''</font>)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="HelpPage-getOpenFromAbsolute"><strong>getOpenFromAbsolute</strong></a>(self, hypertextAddress)</dt><dd><tt>Get the open help page function from the hypertext address.</tt></dd></dl>
<dl><dt><a name="HelpPage-getOpenFromAfterHTTP"><strong>getOpenFromAfterHTTP</strong></a>(self, afterHTTP)</dt><dd><tt>Get the open help page function from the part of the address after the HTTP.</tt></dd></dl>
<dl><dt><a name="HelpPage-getOpenFromAfterWWW"><strong>getOpenFromAfterWWW</strong></a>(self, afterWWW)</dt><dd><tt>Get the open help page function from the afterWWW of the address after the www.</tt></dd></dl>
<dl><dt><a name="HelpPage-getOpenFromDocumentationSubName"><strong>getOpenFromDocumentationSubName</strong></a>(self, subName<font color="#909090">=''</font>)</dt><dd><tt>Get the open help page function from the afterWWW of the address after the www.</tt></dd></dl>
<dl><dt><a name="HelpPage-openPage"><strong>openPage</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Open the browser to the hypertext address.</tt></dd></dl>
<dl><dt><a name="HelpPage-setToNameRepository"><strong>setToNameRepository</strong></a>(self, name, repository)</dt><dd><tt>Set to the name and repository.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="HelpPageRepository">class <strong>HelpPageRepository</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to open a repository help page.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="HelpPageRepository-__init__"><strong>__init__</strong></a>(self, repository)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="HelpPageRepository-openPage"><strong>openPage</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Open the browser to the repository help page.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="HiddenScrollbar">class <strong>HiddenScrollbar</strong></a>(<a href="Tkinter.html#Scrollbar">Tkinter.Scrollbar</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to hide the scrollbar if it is not needed.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#HiddenScrollbar">HiddenScrollbar</a></dd>
<dd><a href="Tkinter.html#Scrollbar">Tkinter.Scrollbar</a></dd>
<dd><a href="Tkinter.html#Widget">Tkinter.Widget</a></dd>
<dd><a href="Tkinter.html#BaseWidget">Tkinter.BaseWidget</a></dd>
<dd><a href="Tkinter.html#Misc">Tkinter.Misc</a></dd>
<dd><a href="Tkinter.html#Pack">Tkinter.Pack</a></dd>
<dd><a href="Tkinter.html#Place">Tkinter.Place</a></dd>
<dd><a href="Tkinter.html#Grid">Tkinter.Grid</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="HiddenScrollbar-set"><strong>set</strong></a>(self, lo, hi)</dt><dd><tt>Add to grid is needed, remove if not.</tt></dd></dl>
<hr>
Methods inherited from <a href="Tkinter.html#Scrollbar">Tkinter.Scrollbar</a>:<br>
<dl><dt><a name="HiddenScrollbar-__init__"><strong>__init__</strong></a>(self, master<font color="#909090">=None</font>, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Construct a scrollbar widget with the parent MASTER.<br>
<br>
Valid resource names: activebackground, activerelief,<br>
background, bd, bg, borderwidth, command, cursor,<br>
elementborderwidth, highlightbackground,<br>
highlightcolor, highlightthickness, jump, orient,<br>
relief, repeatdelay, repeatinterval, takefocus,<br>
troughcolor, width.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-activate"><strong>activate</strong></a>(self, index)</dt><dd><tt>Display the element at INDEX with activebackground and activerelief.<br>
INDEX can be "arrow1","slider" or "arrow2".</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-delta"><strong>delta</strong></a>(self, deltax, deltay)</dt><dd><tt>Return the fractional change of the scrollbar setting if it<br>
would be moved by DELTAX or DELTAY pixels.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-fraction"><strong>fraction</strong></a>(self, x, y)</dt><dd><tt>Return the fractional value which corresponds to a slider<br>
position of X,Y.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-get"><strong>get</strong></a>(self)</dt><dd><tt>Return the current fractional values (upper and lower end)<br>
of the slider position.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-identify"><strong>identify</strong></a>(self, x, y)</dt><dd><tt>Return the element under position X,Y as one of<br>
"arrow1","slider","arrow2" or "".</tt></dd></dl>
<hr>
Methods inherited from <a href="Tkinter.html#BaseWidget">Tkinter.BaseWidget</a>:<br>
<dl><dt><a name="HiddenScrollbar-destroy"><strong>destroy</strong></a>(self)</dt><dd><tt>Destroy this and all descendants widgets.</tt></dd></dl>
<hr>
Methods inherited from <a href="Tkinter.html#Misc">Tkinter.Misc</a>:<br>
<dl><dt><a name="HiddenScrollbar-__getitem__"><strong>__getitem__</strong></a> = cget(self, key)</dt><dd><tt>Return the resource value for a KEY given as string.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-__setitem__"><strong>__setitem__</strong></a>(self, key, value)</dt></dl>
<dl><dt><a name="HiddenScrollbar-__str__"><strong>__str__</strong></a>(self)</dt><dd><tt>Return the window path name of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-after"><strong>after</strong></a>(self, ms, func<font color="#909090">=None</font>, *args)</dt><dd><tt>Call function once after given time.<br>
<br>
MS specifies the time in milliseconds. FUNC gives the<br>
function which shall be called. Additional parameters<br>
are given as parameters to the function call. Return<br>
identifier to cancel scheduling with after_cancel.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-after_cancel"><strong>after_cancel</strong></a>(self, id)</dt><dd><tt>Cancel scheduling of function identified with ID.<br>
<br>
Identifier returned by after or after_idle must be<br>
given as first parameter.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-after_idle"><strong>after_idle</strong></a>(self, func, *args)</dt><dd><tt>Call FUNC once if the Tcl main loop has no event to<br>
process.<br>
<br>
Return an identifier to cancel the scheduling with<br>
after_cancel.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-bbox"><strong>bbox</strong></a> = grid_bbox(self, column<font color="#909090">=None</font>, row<font color="#909090">=None</font>, col2<font color="#909090">=None</font>, row2<font color="#909090">=None</font>)</dt><dd><tt>Return a tuple of integer coordinates for the bounding<br>
box of this widget controlled by the geometry manager grid.<br>
<br>
If COLUMN, ROW is given the bounding box applies from<br>
the cell with row and column 0 to the specified<br>
cell. If COL2 and ROW2 are given the bounding box<br>
starts at that cell.<br>
<br>
The returned integers specify the offset of the upper left<br>
corner in the master widget and the width and height.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-bell"><strong>bell</strong></a>(self, displayof<font color="#909090">=0</font>)</dt><dd><tt>Ring a display's bell.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-bind"><strong>bind</strong></a>(self, sequence<font color="#909090">=None</font>, func<font color="#909090">=None</font>, add<font color="#909090">=None</font>)</dt><dd><tt>Bind to this widget at event SEQUENCE a call to function FUNC.<br>
<br>
SEQUENCE is a string of concatenated event<br>
patterns. An event pattern is of the form<br>
<MODIFIER-MODIFIER-TYPE-DETAIL> where MODIFIER is one<br>
of Control, Mod2, M2, Shift, Mod3, M3, Lock, Mod4, M4,<br>
Button1, B1, Mod5, M5 Button2, B2, Meta, M, Button3,<br>
B3, Alt, Button4, B4, Double, Button5, B5 Triple,<br>
Mod1, M1. TYPE is one of Activate, Enter, Map,<br>
ButtonPress, Button, Expose, Motion, ButtonRelease<br>
FocusIn, MouseWheel, Circulate, FocusOut, Property,<br>
Colormap, Gravity Reparent, Configure, KeyPress, Key,<br>
Unmap, Deactivate, KeyRelease Visibility, Destroy,<br>
Leave and DETAIL is the button number for ButtonPress,<br>
ButtonRelease and DETAIL is the Keysym for KeyPress and<br>
KeyRelease. Examples are<br>
<Control-Button-1> for pressing Control and mouse button 1 or<br>
<Alt-A> for pressing A and the Alt key (KeyPress can be omitted).<br>
An event pattern can also be a virtual event of the form<br>
<<AString>> where AString can be arbitrary. This<br>
event can be generated by event_generate.<br>
If events are concatenated they must appear shortly<br>
after each other.<br>
<br>
FUNC will be called if the event sequence occurs with an<br>
instance of Event as argument. If the return value of FUNC is<br>
"break" no further bound function is invoked.<br>
<br>
An additional boolean parameter ADD specifies whether FUNC will<br>
be called additionally to the other bound function or whether<br>
it will replace the previous function.<br>
<br>
Bind will return an identifier to allow deletion of the bound function with<br>
unbind without memory leak.<br>
<br>
If FUNC or SEQUENCE is omitted the bound function or list<br>
of bound events are returned.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-bind_all"><strong>bind_all</strong></a>(self, sequence<font color="#909090">=None</font>, func<font color="#909090">=None</font>, add<font color="#909090">=None</font>)</dt><dd><tt>Bind to all widgets at an event SEQUENCE a call to function FUNC.<br>
An additional boolean parameter ADD specifies whether FUNC will<br>
be called additionally to the other bound function or whether<br>
it will replace the previous function. See bind for the return value.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-bind_class"><strong>bind_class</strong></a>(self, className, sequence<font color="#909090">=None</font>, func<font color="#909090">=None</font>, add<font color="#909090">=None</font>)</dt><dd><tt>Bind to widgets with bindtag CLASSNAME at event<br>
SEQUENCE a call of function FUNC. An additional<br>
boolean parameter ADD specifies whether FUNC will be<br>
called additionally to the other bound function or<br>
whether it will replace the previous function. See bind for<br>
the return value.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-bindtags"><strong>bindtags</strong></a>(self, tagList<font color="#909090">=None</font>)</dt><dd><tt>Set or get the list of bindtags for this widget.<br>
<br>
With no argument return the list of all bindtags associated with<br>
this widget. With a list of strings as argument the bindtags are<br>
set to this list. The bindtags determine in which order events are<br>
processed (see bind).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-cget"><strong>cget</strong></a>(self, key)</dt><dd><tt>Return the resource value for a KEY given as string.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-clipboard_append"><strong>clipboard_append</strong></a>(self, string, **kw)</dt><dd><tt>Append STRING to the Tk clipboard.<br>
<br>
A widget specified at the optional displayof keyword<br>
argument specifies the target display. The clipboard<br>
can be retrieved with selection_get.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-clipboard_clear"><strong>clipboard_clear</strong></a>(self, **kw)</dt><dd><tt>Clear the data in the Tk clipboard.<br>
<br>
A widget specified for the optional displayof keyword<br>
argument specifies the target display.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-clipboard_get"><strong>clipboard_get</strong></a>(self, **kw)</dt><dd><tt>Retrieve data from the clipboard on window's display.<br>
<br>
The window keyword defaults to the root window of the Tkinter<br>
application.<br>
<br>
The type keyword specifies the form in which the data is<br>
to be returned and should be an atom name such as STRING<br>
or FILE_NAME. Type defaults to STRING.<br>
<br>
This command is equivalent to:<br>
<br>
<a href="#HiddenScrollbar-selection_get">selection_get</a>(CLIPBOARD)</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-colormodel"><strong>colormodel</strong></a>(self, value<font color="#909090">=None</font>)</dt><dd><tt>Useless. Not implemented in Tk.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-columnconfigure"><strong>columnconfigure</strong></a> = grid_columnconfigure(self, index, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Configure column INDEX of a grid.<br>
<br>
Valid resources are minsize (minimum size of the column),<br>
weight (how much does additional space propagate to this column)<br>
and pad (how much space to let additionally).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-config"><strong>config</strong></a> = configure(self, cnf<font color="#909090">=None</font>, **kw)</dt><dd><tt>Configure resources of a widget.<br>
<br>
The values for resources are specified as keyword<br>
arguments. To get an overview about<br>
the allowed keyword arguments call the method keys.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-configure"><strong>configure</strong></a>(self, cnf<font color="#909090">=None</font>, **kw)</dt><dd><tt>Configure resources of a widget.<br>
<br>
The values for resources are specified as keyword<br>
arguments. To get an overview about<br>
the allowed keyword arguments call the method keys.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-deletecommand"><strong>deletecommand</strong></a>(self, name)</dt><dd><tt>Internal function.<br>
<br>
Delete the Tcl command provided in NAME.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-event_add"><strong>event_add</strong></a>(self, virtual, *sequences)</dt><dd><tt>Bind a virtual event VIRTUAL (of the form <<Name>>)<br>
to an event SEQUENCE such that the virtual event is triggered<br>
whenever SEQUENCE occurs.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-event_delete"><strong>event_delete</strong></a>(self, virtual, *sequences)</dt><dd><tt>Unbind a virtual event VIRTUAL from SEQUENCE.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-event_generate"><strong>event_generate</strong></a>(self, sequence, **kw)</dt><dd><tt>Generate an event SEQUENCE. Additional<br>
keyword arguments specify parameter of the event<br>
(e.g. x, y, rootx, rooty).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-event_info"><strong>event_info</strong></a>(self, virtual<font color="#909090">=None</font>)</dt><dd><tt>Return a list of all virtual events or the information<br>
about the SEQUENCE bound to the virtual event VIRTUAL.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-focus"><strong>focus</strong></a> = focus_set(self)</dt><dd><tt>Direct input focus to this widget.<br>
<br>
If the application currently does not have the focus<br>
this widget will get the focus if the application gets<br>
the focus through the window manager.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-focus_displayof"><strong>focus_displayof</strong></a>(self)</dt><dd><tt>Return the widget which has currently the focus on the<br>
display where this widget is located.<br>
<br>
Return None if the application does not have the focus.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-focus_force"><strong>focus_force</strong></a>(self)</dt><dd><tt>Direct input focus to this widget even if the<br>
application does not have the focus. Use with<br>
caution!</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-focus_get"><strong>focus_get</strong></a>(self)</dt><dd><tt>Return the widget which has currently the focus in the<br>
application.<br>
<br>
Use focus_displayof to allow working with several<br>
displays. Return None if application does not have<br>
the focus.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-focus_lastfor"><strong>focus_lastfor</strong></a>(self)</dt><dd><tt>Return the widget which would have the focus if top level<br>
for this widget gets the focus from the window manager.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-focus_set"><strong>focus_set</strong></a>(self)</dt><dd><tt>Direct input focus to this widget.<br>
<br>
If the application currently does not have the focus<br>
this widget will get the focus if the application gets<br>
the focus through the window manager.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-getboolean"><strong>getboolean</strong></a>(self, s)</dt><dd><tt>Return a boolean value for Tcl boolean values true and false given as parameter.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-getvar"><strong>getvar</strong></a>(self, name<font color="#909090">='PY_VAR'</font>)</dt><dd><tt>Return value of Tcl variable NAME.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grab_current"><strong>grab_current</strong></a>(self)</dt><dd><tt>Return widget which has currently the grab in this application<br>
or None.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grab_release"><strong>grab_release</strong></a>(self)</dt><dd><tt>Release grab for this widget if currently set.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grab_set"><strong>grab_set</strong></a>(self)</dt><dd><tt>Set grab for this widget.<br>
<br>
A grab directs all events to this and descendant<br>
widgets in the application.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grab_set_global"><strong>grab_set_global</strong></a>(self)</dt><dd><tt>Set global grab for this widget.<br>
<br>
A global grab directs all events to this and<br>
descendant widgets on the display. Use with caution -<br>
other applications do not get events anymore.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grab_status"><strong>grab_status</strong></a>(self)</dt><dd><tt>Return None, "local" or "global" if this widget has<br>
no, a local or a global grab.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_bbox"><strong>grid_bbox</strong></a>(self, column<font color="#909090">=None</font>, row<font color="#909090">=None</font>, col2<font color="#909090">=None</font>, row2<font color="#909090">=None</font>)</dt><dd><tt>Return a tuple of integer coordinates for the bounding<br>
box of this widget controlled by the geometry manager grid.<br>
<br>
If COLUMN, ROW is given the bounding box applies from<br>
the cell with row and column 0 to the specified<br>
cell. If COL2 and ROW2 are given the bounding box<br>
starts at that cell.<br>
<br>
The returned integers specify the offset of the upper left<br>
corner in the master widget and the width and height.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_columnconfigure"><strong>grid_columnconfigure</strong></a>(self, index, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Configure column INDEX of a grid.<br>
<br>
Valid resources are minsize (minimum size of the column),<br>
weight (how much does additional space propagate to this column)<br>
and pad (how much space to let additionally).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_location"><strong>grid_location</strong></a>(self, x, y)</dt><dd><tt>Return a tuple of column and row which identify the cell<br>
at which the pixel at position X and Y inside the master<br>
widget is located.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_propagate"><strong>grid_propagate</strong></a>(self, flag<font color="#909090">=['_noarg_']</font>)</dt><dd><tt>Set or get the status for propagation of geometry information.<br>
<br>
A boolean argument specifies whether the geometry information<br>
of the slaves will determine the size of this widget. If no argument<br>
is given, the current setting will be returned.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_rowconfigure"><strong>grid_rowconfigure</strong></a>(self, index, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Configure row INDEX of a grid.<br>
<br>
Valid resources are minsize (minimum size of the row),<br>
weight (how much does additional space propagate to this row)<br>
and pad (how much space to let additionally).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_size"><strong>grid_size</strong></a>(self)</dt><dd><tt>Return a tuple of the number of column and rows in the grid.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_slaves"><strong>grid_slaves</strong></a>(self, row<font color="#909090">=None</font>, column<font color="#909090">=None</font>)</dt><dd><tt>Return a list of all slaves of this widget<br>
in its packing order.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-image_names"><strong>image_names</strong></a>(self)</dt><dd><tt>Return a list of all existing image names.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-image_types"><strong>image_types</strong></a>(self)</dt><dd><tt>Return a list of all available image types (e.g. phote bitmap).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-keys"><strong>keys</strong></a>(self)</dt><dd><tt>Return a list of all resource names of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-lift"><strong>lift</strong></a> = tkraise(self, aboveThis<font color="#909090">=None</font>)</dt><dd><tt>Raise this widget in the stacking order.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-lower"><strong>lower</strong></a>(self, belowThis<font color="#909090">=None</font>)</dt><dd><tt>Lower this widget in the stacking order.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-mainloop"><strong>mainloop</strong></a>(self, n<font color="#909090">=0</font>)</dt><dd><tt>Call the mainloop of Tk.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-nametowidget"><strong>nametowidget</strong></a>(self, name)</dt><dd><tt>Return the Tkinter instance of a widget identified by<br>
its Tcl name NAME.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-option_add"><strong>option_add</strong></a>(self, pattern, value, priority<font color="#909090">=None</font>)</dt><dd><tt>Set a VALUE (second parameter) for an option<br>
PATTERN (first parameter).<br>
<br>
An optional third parameter gives the numeric priority<br>
(defaults to 80).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-option_clear"><strong>option_clear</strong></a>(self)</dt><dd><tt>Clear the option database.<br>
<br>
It will be reloaded if option_add is called.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-option_get"><strong>option_get</strong></a>(self, name, className)</dt><dd><tt>Return the value for an option NAME for this widget<br>
with CLASSNAME.<br>
<br>
Values with higher priority override lower values.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-option_readfile"><strong>option_readfile</strong></a>(self, fileName, priority<font color="#909090">=None</font>)</dt><dd><tt>Read file FILENAME into the option database.<br>
<br>
An optional second parameter gives the numeric<br>
priority.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-pack_propagate"><strong>pack_propagate</strong></a>(self, flag<font color="#909090">=['_noarg_']</font>)</dt><dd><tt>Set or get the status for propagation of geometry information.<br>
<br>
A boolean argument specifies whether the geometry information<br>
of the slaves will determine the size of this widget. If no argument<br>
is given the current setting will be returned.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-pack_slaves"><strong>pack_slaves</strong></a>(self)</dt><dd><tt>Return a list of all slaves of this widget<br>
in its packing order.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-place_slaves"><strong>place_slaves</strong></a>(self)</dt><dd><tt>Return a list of all slaves of this widget<br>
in its packing order.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-propagate"><strong>propagate</strong></a> = pack_propagate(self, flag<font color="#909090">=['_noarg_']</font>)</dt><dd><tt>Set or get the status for propagation of geometry information.<br>
<br>
A boolean argument specifies whether the geometry information<br>
of the slaves will determine the size of this widget. If no argument<br>
is given the current setting will be returned.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-quit"><strong>quit</strong></a>(self)</dt><dd><tt>Quit the Tcl interpreter. All widgets will be destroyed.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-register"><strong>register</strong></a> = _register(self, func, subst<font color="#909090">=None</font>, needcleanup<font color="#909090">=1</font>)</dt><dd><tt>Return a newly created Tcl function. If this<br>
function is called, the Python function FUNC will<br>
be executed. An optional function SUBST can<br>
be given which will be executed before FUNC.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-rowconfigure"><strong>rowconfigure</strong></a> = grid_rowconfigure(self, index, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Configure row INDEX of a grid.<br>
<br>
Valid resources are minsize (minimum size of the row),<br>
weight (how much does additional space propagate to this row)<br>
and pad (how much space to let additionally).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-selection_clear"><strong>selection_clear</strong></a>(self, **kw)</dt><dd><tt>Clear the current X selection.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-selection_get"><strong>selection_get</strong></a>(self, **kw)</dt><dd><tt>Return the contents of the current X selection.<br>
<br>
A keyword parameter selection specifies the name of<br>
the selection and defaults to PRIMARY. A keyword<br>
parameter displayof specifies a widget on the display<br>
to use.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-selection_handle"><strong>selection_handle</strong></a>(self, command, **kw)</dt><dd><tt>Specify a function COMMAND to call if the X<br>
selection owned by this widget is queried by another<br>
application.<br>
<br>
This function must return the contents of the<br>
selection. The function will be called with the<br>
arguments OFFSET and LENGTH which allows the chunking<br>
of very long selections. The following keyword<br>
parameters can be provided:<br>
selection - name of the selection (default PRIMARY),<br>
type - type of the selection (e.g. STRING, FILE_NAME).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-selection_own"><strong>selection_own</strong></a>(self, **kw)</dt><dd><tt>Become owner of X selection.<br>
<br>
A keyword parameter selection specifies the name of<br>
the selection (default PRIMARY).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-selection_own_get"><strong>selection_own_get</strong></a>(self, **kw)</dt><dd><tt>Return owner of X selection.<br>
<br>
The following keyword parameter can<br>
be provided:<br>
selection - name of the selection (default PRIMARY),<br>
type - type of the selection (e.g. STRING, FILE_NAME).</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-send"><strong>send</strong></a>(self, interp, cmd, *args)</dt><dd><tt>Send Tcl command CMD to different interpreter INTERP to be executed.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-setvar"><strong>setvar</strong></a>(self, name<font color="#909090">='PY_VAR'</font>, value<font color="#909090">='1'</font>)</dt><dd><tt>Set Tcl variable NAME to VALUE.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-size"><strong>size</strong></a> = grid_size(self)</dt><dd><tt>Return a tuple of the number of column and rows in the grid.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-slaves"><strong>slaves</strong></a> = pack_slaves(self)</dt><dd><tt>Return a list of all slaves of this widget<br>
in its packing order.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-tk_bisque"><strong>tk_bisque</strong></a>(self)</dt><dd><tt>Change the color scheme to light brown as used in Tk 3.6 and before.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-tk_focusFollowsMouse"><strong>tk_focusFollowsMouse</strong></a>(self)</dt><dd><tt>The widget under mouse will get automatically focus. Can not<br>
be disabled easily.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-tk_focusNext"><strong>tk_focusNext</strong></a>(self)</dt><dd><tt>Return the next widget in the focus order which follows<br>
widget which has currently the focus.<br>
<br>
The focus order first goes to the next child, then to<br>
the children of the child recursively and then to the<br>
next sibling which is higher in the stacking order. A<br>
widget is omitted if it has the takefocus resource set<br>
to 0.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-tk_focusPrev"><strong>tk_focusPrev</strong></a>(self)</dt><dd><tt>Return previous widget in the focus order. See tk_focusNext for details.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-tk_menuBar"><strong>tk_menuBar</strong></a>(self, *args)</dt><dd><tt>Do not use. Needed in Tk 3.6 and earlier.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-tk_setPalette"><strong>tk_setPalette</strong></a>(self, *args, **kw)</dt><dd><tt>Set a new color scheme for all widget elements.<br>
<br>
A single color as argument will cause that all colors of Tk<br>
widget elements are derived from this.<br>
Alternatively several keyword parameters and its associated<br>
colors can be given. The following keywords are valid:<br>
activeBackground, foreground, selectColor,<br>
activeForeground, highlightBackground, selectBackground,<br>
background, highlightColor, selectForeground,<br>
disabledForeground, insertBackground, troughColor.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-tk_strictMotif"><strong>tk_strictMotif</strong></a>(self, boolean<font color="#909090">=None</font>)</dt><dd><tt>Set Tcl internal variable, whether the look and feel<br>
should adhere to Motif.<br>
<br>
A parameter of 1 means adhere to Motif (e.g. no color<br>
change if mouse passes over slider).<br>
Returns the set value.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-tkraise"><strong>tkraise</strong></a>(self, aboveThis<font color="#909090">=None</font>)</dt><dd><tt>Raise this widget in the stacking order.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-unbind"><strong>unbind</strong></a>(self, sequence, funcid<font color="#909090">=None</font>)</dt><dd><tt>Unbind for this widget for event SEQUENCE the<br>
function identified with FUNCID.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-unbind_all"><strong>unbind_all</strong></a>(self, sequence)</dt><dd><tt>Unbind for all widgets for event SEQUENCE all functions.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-unbind_class"><strong>unbind_class</strong></a>(self, className, sequence)</dt><dd><tt>Unbind for a all widgets with bindtag CLASSNAME for event SEQUENCE<br>
all functions.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-update"><strong>update</strong></a>(self)</dt><dd><tt>Enter event loop until all pending events have been processed by Tcl.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-update_idletasks"><strong>update_idletasks</strong></a>(self)</dt><dd><tt>Enter event loop until all idle callbacks have been called. This<br>
will update the display of windows but not process events caused by<br>
the user.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-wait_variable"><strong>wait_variable</strong></a>(self, name<font color="#909090">='PY_VAR'</font>)</dt><dd><tt>Wait until the variable is modified.<br>
<br>
A parameter of type IntVar, StringVar, DoubleVar or<br>
BooleanVar must be given.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-wait_visibility"><strong>wait_visibility</strong></a>(self, window<font color="#909090">=None</font>)</dt><dd><tt>Wait until the visibility of a WIDGET changes<br>
(e.g. it appears).<br>
<br>
If no parameter is given self is used.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-wait_window"><strong>wait_window</strong></a>(self, window<font color="#909090">=None</font>)</dt><dd><tt>Wait until a WIDGET is destroyed.<br>
<br>
If no parameter is given self is used.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-waitvar"><strong>waitvar</strong></a> = wait_variable(self, name<font color="#909090">='PY_VAR'</font>)</dt><dd><tt>Wait until the variable is modified.<br>
<br>
A parameter of type IntVar, StringVar, DoubleVar or<br>
BooleanVar must be given.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_atom"><strong>winfo_atom</strong></a>(self, name, displayof<font color="#909090">=0</font>)</dt><dd><tt>Return integer which represents atom NAME.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_atomname"><strong>winfo_atomname</strong></a>(self, id, displayof<font color="#909090">=0</font>)</dt><dd><tt>Return name of atom with identifier ID.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_cells"><strong>winfo_cells</strong></a>(self)</dt><dd><tt>Return number of cells in the colormap for this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_children"><strong>winfo_children</strong></a>(self)</dt><dd><tt>Return a list of all widgets which are children of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_class"><strong>winfo_class</strong></a>(self)</dt><dd><tt>Return window class name of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_colormapfull"><strong>winfo_colormapfull</strong></a>(self)</dt><dd><tt>Return true if at the last color request the colormap was full.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_containing"><strong>winfo_containing</strong></a>(self, rootX, rootY, displayof<font color="#909090">=0</font>)</dt><dd><tt>Return the widget which is at the root coordinates ROOTX, ROOTY.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_depth"><strong>winfo_depth</strong></a>(self)</dt><dd><tt>Return the number of bits per pixel.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_exists"><strong>winfo_exists</strong></a>(self)</dt><dd><tt>Return true if this widget exists.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_fpixels"><strong>winfo_fpixels</strong></a>(self, number)</dt><dd><tt>Return the number of pixels for the given distance NUMBER<br>
(e.g. "3c") as float.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_geometry"><strong>winfo_geometry</strong></a>(self)</dt><dd><tt>Return geometry string for this widget in the form "widthxheight+X+Y".</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_height"><strong>winfo_height</strong></a>(self)</dt><dd><tt>Return height of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_id"><strong>winfo_id</strong></a>(self)</dt><dd><tt>Return identifier ID for this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_interps"><strong>winfo_interps</strong></a>(self, displayof<font color="#909090">=0</font>)</dt><dd><tt>Return the name of all Tcl interpreters for this display.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_ismapped"><strong>winfo_ismapped</strong></a>(self)</dt><dd><tt>Return true if this widget is mapped.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_manager"><strong>winfo_manager</strong></a>(self)</dt><dd><tt>Return the window mananger name for this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_name"><strong>winfo_name</strong></a>(self)</dt><dd><tt>Return the name of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_parent"><strong>winfo_parent</strong></a>(self)</dt><dd><tt>Return the name of the parent of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_pathname"><strong>winfo_pathname</strong></a>(self, id, displayof<font color="#909090">=0</font>)</dt><dd><tt>Return the pathname of the widget given by ID.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_pixels"><strong>winfo_pixels</strong></a>(self, number)</dt><dd><tt>Rounded integer value of winfo_fpixels.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_pointerx"><strong>winfo_pointerx</strong></a>(self)</dt><dd><tt>Return the x coordinate of the pointer on the root window.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_pointerxy"><strong>winfo_pointerxy</strong></a>(self)</dt><dd><tt>Return a tuple of x and y coordinates of the pointer on the root window.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_pointery"><strong>winfo_pointery</strong></a>(self)</dt><dd><tt>Return the y coordinate of the pointer on the root window.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_reqheight"><strong>winfo_reqheight</strong></a>(self)</dt><dd><tt>Return requested height of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_reqwidth"><strong>winfo_reqwidth</strong></a>(self)</dt><dd><tt>Return requested width of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_rgb"><strong>winfo_rgb</strong></a>(self, color)</dt><dd><tt>Return tuple of decimal values for red, green, blue for<br>
COLOR in this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_rootx"><strong>winfo_rootx</strong></a>(self)</dt><dd><tt>Return x coordinate of upper left corner of this widget on the<br>
root window.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_rooty"><strong>winfo_rooty</strong></a>(self)</dt><dd><tt>Return y coordinate of upper left corner of this widget on the<br>
root window.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_screen"><strong>winfo_screen</strong></a>(self)</dt><dd><tt>Return the screen name of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_screencells"><strong>winfo_screencells</strong></a>(self)</dt><dd><tt>Return the number of the cells in the colormap of the screen<br>
of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_screendepth"><strong>winfo_screendepth</strong></a>(self)</dt><dd><tt>Return the number of bits per pixel of the root window of the<br>
screen of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_screenheight"><strong>winfo_screenheight</strong></a>(self)</dt><dd><tt>Return the number of pixels of the height of the screen of this widget<br>
in pixel.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_screenmmheight"><strong>winfo_screenmmheight</strong></a>(self)</dt><dd><tt>Return the number of pixels of the height of the screen of<br>
this widget in mm.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_screenmmwidth"><strong>winfo_screenmmwidth</strong></a>(self)</dt><dd><tt>Return the number of pixels of the width of the screen of<br>
this widget in mm.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_screenvisual"><strong>winfo_screenvisual</strong></a>(self)</dt><dd><tt>Return one of the strings directcolor, grayscale, pseudocolor,<br>
staticcolor, staticgray, or truecolor for the default<br>
colormodel of this screen.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_screenwidth"><strong>winfo_screenwidth</strong></a>(self)</dt><dd><tt>Return the number of pixels of the width of the screen of<br>
this widget in pixel.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_server"><strong>winfo_server</strong></a>(self)</dt><dd><tt>Return information of the X-Server of the screen of this widget in<br>
the form "XmajorRminor vendor vendorVersion".</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_toplevel"><strong>winfo_toplevel</strong></a>(self)</dt><dd><tt>Return the toplevel widget of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_viewable"><strong>winfo_viewable</strong></a>(self)</dt><dd><tt>Return true if the widget and all its higher ancestors are mapped.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_visual"><strong>winfo_visual</strong></a>(self)</dt><dd><tt>Return one of the strings directcolor, grayscale, pseudocolor,<br>
staticcolor, staticgray, or truecolor for the<br>
colormodel of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_visualid"><strong>winfo_visualid</strong></a>(self)</dt><dd><tt>Return the X identifier for the visual for this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_visualsavailable"><strong>winfo_visualsavailable</strong></a>(self, includeids<font color="#909090">=0</font>)</dt><dd><tt>Return a list of all visuals available for the screen<br>
of this widget.<br>
<br>
Each item in the list consists of a visual name (see winfo_visual), a<br>
depth and if INCLUDEIDS=1 is given also the X identifier.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_vrootheight"><strong>winfo_vrootheight</strong></a>(self)</dt><dd><tt>Return the height of the virtual root window associated with this<br>
widget in pixels. If there is no virtual root window return the<br>
height of the screen.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_vrootwidth"><strong>winfo_vrootwidth</strong></a>(self)</dt><dd><tt>Return the width of the virtual root window associated with this<br>
widget in pixel. If there is no virtual root window return the<br>
width of the screen.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_vrootx"><strong>winfo_vrootx</strong></a>(self)</dt><dd><tt>Return the x offset of the virtual root relative to the root<br>
window of the screen of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_vrooty"><strong>winfo_vrooty</strong></a>(self)</dt><dd><tt>Return the y offset of the virtual root relative to the root<br>
window of the screen of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_width"><strong>winfo_width</strong></a>(self)</dt><dd><tt>Return the width of this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_x"><strong>winfo_x</strong></a>(self)</dt><dd><tt>Return the x coordinate of the upper left corner of this widget<br>
in the parent.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-winfo_y"><strong>winfo_y</strong></a>(self)</dt><dd><tt>Return the y coordinate of the upper left corner of this widget<br>
in the parent.</tt></dd></dl>
<hr>
Data and other attributes inherited from <a href="Tkinter.html#Misc">Tkinter.Misc</a>:<br>
<dl><dt><strong>getdouble</strong> = <type 'float'><dd><tt>float(x) -> floating point number<br>
<br>
Convert a string or number to a floating point number, if possible.</tt></dl>
<dl><dt><strong>getint</strong> = <type 'int'><dd><tt>int(x[, base]) -> integer<br>
<br>
Convert a string or number to an integer, if possible. A floating point<br>
argument will be truncated towards zero (this does not include a string<br>
representation of a floating point number!) When converting a string, use<br>
the optional base. It is an error to supply a base when converting a<br>
non-string. If the argument is outside the integer range a long object<br>
will be returned instead.</tt></dl>
<hr>
Methods inherited from <a href="Tkinter.html#Pack">Tkinter.Pack</a>:<br>
<dl><dt><a name="HiddenScrollbar-forget"><strong>forget</strong></a> = pack_forget(self)</dt><dd><tt>Unmap this widget and do not use it for the packing order.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-info"><strong>info</strong></a> = pack_info(self)</dt><dd><tt>Return information about the packing options<br>
for this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-pack"><strong>pack</strong></a> = pack_configure(self, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Pack a widget in the parent widget. Use as options:<br>
after=widget - pack it after you have packed widget<br>
anchor=NSEW (or subset) - position widget according to<br>
given direction<br>
before=widget - pack it before you will pack widget<br>
expand=bool - expand widget if parent size grows<br>
fill=NONE or X or Y or BOTH - fill widget if widget grows<br>
in=master - use master to contain this widget<br>
ipadx=amount - add internal padding in x direction<br>
ipady=amount - add internal padding in y direction<br>
padx=amount - add padding in x direction<br>
pady=amount - add padding in y direction<br>
side=TOP or BOTTOM or LEFT or RIGHT - where to add this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-pack_configure"><strong>pack_configure</strong></a>(self, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Pack a widget in the parent widget. Use as options:<br>
after=widget - pack it after you have packed widget<br>
anchor=NSEW (or subset) - position widget according to<br>
given direction<br>
before=widget - pack it before you will pack widget<br>
expand=bool - expand widget if parent size grows<br>
fill=NONE or X or Y or BOTH - fill widget if widget grows<br>
in=master - use master to contain this widget<br>
ipadx=amount - add internal padding in x direction<br>
ipady=amount - add internal padding in y direction<br>
padx=amount - add padding in x direction<br>
pady=amount - add padding in y direction<br>
side=TOP or BOTTOM or LEFT or RIGHT - where to add this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-pack_forget"><strong>pack_forget</strong></a>(self)</dt><dd><tt>Unmap this widget and do not use it for the packing order.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-pack_info"><strong>pack_info</strong></a>(self)</dt><dd><tt>Return information about the packing options<br>
for this widget.</tt></dd></dl>
<hr>
Methods inherited from <a href="Tkinter.html#Place">Tkinter.Place</a>:<br>
<dl><dt><a name="HiddenScrollbar-place"><strong>place</strong></a> = place_configure(self, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Place a widget in the parent widget. Use as options:<br>
in=master - master relative to which the widget is placed.<br>
x=amount - locate anchor of this widget at position x of master<br>
y=amount - locate anchor of this widget at position y of master<br>
relx=amount - locate anchor of this widget between 0.0 and 1.0<br>
relative to width of master (1.0 is right edge)<br>
rely=amount - locate anchor of this widget between 0.0 and 1.0<br>
relative to height of master (1.0 is bottom edge)<br>
anchor=NSEW (or subset) - position anchor according to given direction<br>
width=amount - width of this widget in pixel<br>
height=amount - height of this widget in pixel<br>
relwidth=amount - width of this widget between 0.0 and 1.0<br>
relative to width of master (1.0 is the same width<br>
as the master)<br>
relheight=amount - height of this widget between 0.0 and 1.0<br>
relative to height of master (1.0 is the same<br>
height as the master)<br>
bordermode="inside" or "outside" - whether to take border width of master widget<br>
into account</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-place_configure"><strong>place_configure</strong></a>(self, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Place a widget in the parent widget. Use as options:<br>
in=master - master relative to which the widget is placed.<br>
x=amount - locate anchor of this widget at position x of master<br>
y=amount - locate anchor of this widget at position y of master<br>
relx=amount - locate anchor of this widget between 0.0 and 1.0<br>
relative to width of master (1.0 is right edge)<br>
rely=amount - locate anchor of this widget between 0.0 and 1.0<br>
relative to height of master (1.0 is bottom edge)<br>
anchor=NSEW (or subset) - position anchor according to given direction<br>
width=amount - width of this widget in pixel<br>
height=amount - height of this widget in pixel<br>
relwidth=amount - width of this widget between 0.0 and 1.0<br>
relative to width of master (1.0 is the same width<br>
as the master)<br>
relheight=amount - height of this widget between 0.0 and 1.0<br>
relative to height of master (1.0 is the same<br>
height as the master)<br>
bordermode="inside" or "outside" - whether to take border width of master widget<br>
into account</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-place_forget"><strong>place_forget</strong></a>(self)</dt><dd><tt>Unmap this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-place_info"><strong>place_info</strong></a>(self)</dt><dd><tt>Return information about the placing options<br>
for this widget.</tt></dd></dl>
<hr>
Methods inherited from <a href="Tkinter.html#Grid">Tkinter.Grid</a>:<br>
<dl><dt><a name="HiddenScrollbar-grid"><strong>grid</strong></a> = grid_configure(self, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Position a widget in the parent widget in a grid. Use as options:<br>
column=number - use cell identified with given column (starting with 0)<br>
columnspan=number - this widget will span several columns<br>
in=master - use master to contain this widget<br>
ipadx=amount - add internal padding in x direction<br>
ipady=amount - add internal padding in y direction<br>
padx=amount - add padding in x direction<br>
pady=amount - add padding in y direction<br>
row=number - use cell identified with given row (starting with 0)<br>
rowspan=number - this widget will span several rows<br>
sticky=NSEW - if cell is larger on which sides will this<br>
widget stick to the cell boundary</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_configure"><strong>grid_configure</strong></a>(self, cnf<font color="#909090">={}</font>, **kw)</dt><dd><tt>Position a widget in the parent widget in a grid. Use as options:<br>
column=number - use cell identified with given column (starting with 0)<br>
columnspan=number - this widget will span several columns<br>
in=master - use master to contain this widget<br>
ipadx=amount - add internal padding in x direction<br>
ipady=amount - add internal padding in y direction<br>
padx=amount - add padding in x direction<br>
pady=amount - add padding in y direction<br>
row=number - use cell identified with given row (starting with 0)<br>
rowspan=number - this widget will span several rows<br>
sticky=NSEW - if cell is larger on which sides will this<br>
widget stick to the cell boundary</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_forget"><strong>grid_forget</strong></a>(self)</dt><dd><tt>Unmap this widget.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_info"><strong>grid_info</strong></a>(self)</dt><dd><tt>Return information about the options<br>
for positioning this widget in a grid.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-grid_remove"><strong>grid_remove</strong></a>(self)</dt><dd><tt>Unmap this widget but remember the grid options.</tt></dd></dl>
<dl><dt><a name="HiddenScrollbar-location"><strong>location</strong></a> = grid_location(self, x, y)</dt><dd><tt>Return a tuple of column and row which identify the cell<br>
at which the pixel at position X and Y inside the master<br>
widget is located.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="IntSetting">class <strong>IntSetting</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write an int.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSetting">IntSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="IntSetting-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the integer to the string.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="IntSetting-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="IntSetting-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="IntSetting-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="IntSetting-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="IntSetting-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="IntSetting-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="IntSetting-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="IntSetting-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSetting-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSetting-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSetting-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="IntSetting-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="IntSetting-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the entry field.</tt></dd></dl>
<dl><dt><a name="IntSetting-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="IntSetting-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="IntSetting-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="IntSpin">class <strong>IntSpin</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write an int in a spin box.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpin">IntSpin</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="IntSpin-getFromValue"><strong>getFromValue</strong></a>(self, from_, name, repository, to, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpin-getSingleIncrementFromValue"><strong>getSingleIncrementFromValue</strong></a>(self, from_, name, repository, to, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpin-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the integer to the string.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a>:<br>
<dl><dt><a name="IntSpin-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="IntSpin-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="IntSpin-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="IntSpin-decrease"><strong>decrease</strong></a>(self)</dt><dd><tt>Decrease the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="IntSpin-entryUpdated"><strong>entryUpdated</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="IntSpin-increase"><strong>increase</strong></a>(self)</dt><dd><tt>Increase the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="IntSpin-setColor"><strong>setColor</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="IntSpin-setColorToDisplay"><strong>setColorToDisplay</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="IntSpin-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="IntSpin-setStateUpdateColor"><strong>setStateUpdateColor</strong></a>(self)</dt><dd><tt>Set the state to the value, call the update function, then set the color.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="IntSpin-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="IntSpin-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="IntSpin-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="IntSpin-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="IntSpin-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpin-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpin-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="IntSpin-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the entry field.</tt></dd></dl>
<dl><dt><a name="IntSpin-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="IntSpin-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="IntSpin-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="IntSpinNotOnMenu">class <strong>IntSpinNotOnMenu</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpin">IntSpin</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write an integer in a spin box, which is not to be added to a menu.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpinNotOnMenu">IntSpinNotOnMenu</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpin">IntSpin</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="IntSpinNotOnMenu-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpin">IntSpin</a>:<br>
<dl><dt><a name="IntSpinNotOnMenu-getFromValue"><strong>getFromValue</strong></a>(self, from_, name, repository, to, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-getSingleIncrementFromValue"><strong>getSingleIncrementFromValue</strong></a>(self, from_, name, repository, to, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the integer to the string.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a>:<br>
<dl><dt><a name="IntSpinNotOnMenu-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-decrease"><strong>decrease</strong></a>(self)</dt><dd><tt>Decrease the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-entryUpdated"><strong>entryUpdated</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-increase"><strong>increase</strong></a>(self)</dt><dd><tt>Increase the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-setColor"><strong>setColor</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-setColorToDisplay"><strong>setColorToDisplay</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-setStateUpdateColor"><strong>setStateUpdateColor</strong></a>(self)</dt><dd><tt>Set the state to the value, call the update function, then set the color.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="IntSpinNotOnMenu-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the entry field.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="IntSpinNotOnMenu-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="IntSpinUpdate">class <strong>IntSpinUpdate</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpin">IntSpin</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read, update & write an int in a spin box.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpinUpdate">IntSpinUpdate</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpin">IntSpin</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSetting">FloatSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="IntSpinUpdate-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#IntSpin">IntSpin</a>:<br>
<dl><dt><a name="IntSpinUpdate-getFromValue"><strong>getFromValue</strong></a>(self, from_, name, repository, to, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-getSingleIncrementFromValue"><strong>getSingleIncrementFromValue</strong></a>(self, from_, name, repository, to, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the integer to the string.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#FloatSpin">FloatSpin</a>:<br>
<dl><dt><a name="IntSpinUpdate-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-decrease"><strong>decrease</strong></a>(self)</dt><dd><tt>Decrease the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-entryUpdated"><strong>entryUpdated</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-increase"><strong>increase</strong></a>(self)</dt><dd><tt>Increase the value then set the state and color to the value.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-setColor"><strong>setColor</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-setColorToDisplay"><strong>setColorToDisplay</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-setStateUpdateColor"><strong>setStateUpdateColor</strong></a>(self)</dt><dd><tt>Set the state to the value, call the update function, then set the color.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="IntSpinUpdate-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the entry field.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="IntSpinUpdate-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="LabelDisplay">class <strong>LabelDisplay</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to add a label.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="LabelDisplay-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="LabelDisplay-getFromName"><strong>getFromName</strong></a>(self, name, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="LabelHelp">class <strong>LabelHelp</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to add help to a widget.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="LabelHelp-__init__"><strong>__init__</strong></a>(self, fileNameHelp, master, name, widget)</dt><dd><tt>Add menu to the widget.</tt></dd></dl>
<dl><dt><a name="LabelHelp-displayPopupMenu"><strong>displayPopupMenu</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Display the popup menu when the button is right clicked.</tt></dd></dl>
<dl><dt><a name="LabelHelp-unpostPopupMenu"><strong>unpostPopupMenu</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Unpost the popup menu.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="LabelSeparator">class <strong>LabelSeparator</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to add a label and menu separator.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="LabelSeparator-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="LabelSeparator-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the repository menu.</tt></dd></dl>
<dl><dt><a name="LabelSeparator-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="LabelSeparator-getFromRepository"><strong>getFromRepository</strong></a>(self, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="LatentStringVar">class <strong>LatentStringVar</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to provide a StringVar when needed.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="LatentStringVar-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the string var.</tt></dd></dl>
<dl><dt><a name="LatentStringVar-getString"><strong>getString</strong></a>(self)</dt><dd><tt>Get the string.</tt></dd></dl>
<dl><dt><a name="LatentStringVar-getVar"><strong>getVar</strong></a>(self)</dt><dd><tt>Get the string var.</tt></dd></dl>
<dl><dt><a name="LatentStringVar-setString"><strong>setString</strong></a>(self, word)</dt><dd><tt>Set the string.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="MenuButtonDisplay">class <strong>MenuButtonDisplay</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to add a menu button.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="MenuButtonDisplay-addRadiosToDialog"><strong>addRadiosToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add the menu radios to the dialog.</tt></dd></dl>
<dl><dt><a name="MenuButtonDisplay-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the repository menu.</tt></dd></dl>
<dl><dt><a name="MenuButtonDisplay-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="MenuButtonDisplay-getFromName"><strong>getFromName</strong></a>(self, name, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="MenuButtonDisplay-removeMenus"><strong>removeMenus</strong></a>(self)</dt><dd><tt>Remove all menus.</tt></dd></dl>
<dl><dt><a name="MenuButtonDisplay-setRadioVarToName"><strong>setRadioVarToName</strong></a>(self, name)</dt><dd><tt>Get the menu button.</tt></dd></dl>
<dl><dt><a name="MenuButtonDisplay-setToNameAddToDialog"><strong>setToNameAddToDialog</strong></a>(self, name, gridPosition)</dt><dd><tt>Get the menu button.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="MenuRadio">class <strong>MenuRadio</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a boolean with associated menu radio button.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#MenuRadio">MenuRadio</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="MenuRadio-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="MenuRadio-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the submenu set by <a href="#MenuButtonDisplay">MenuButtonDisplay</a>, the repository menu is ignored</tt></dd></dl>
<dl><dt><a name="MenuRadio-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="MenuRadio-addToSubmenu"><strong>addToSubmenu</strong></a>(self)</dt><dd><tt>Add this to the submenu.</tt></dd></dl>
<dl><dt><a name="MenuRadio-clickRadio"><strong>clickRadio</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, invoke and set the value when clicked.</tt></dd></dl>
<dl><dt><a name="MenuRadio-getFromMenuButtonDisplay"><strong>getFromMenuButtonDisplay</strong></a>(self, menuButtonDisplay, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="MenuRadio-invoke"><strong>invoke</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, invoke to set the value when changed.</tt></dd></dl>
<dl><dt><a name="MenuRadio-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the checkbutton to the boolean.</tt></dd></dl>
<dl><dt><a name="MenuRadio-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the boolean to the checkbutton.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a>:<br>
<dl><dt><a name="MenuRadio-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the boolean to the string.</tt></dd></dl>
<dl><dt><a name="MenuRadio-toggleCheckbutton"><strong>toggleCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<dl><dt><a name="MenuRadio-toggleMenuCheckbutton"><strong>toggleMenuCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="MenuRadio-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="MenuRadio-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="MenuRadio-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="MenuRadio-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="MenuRadio-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="MenuRadio-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="MenuRadio-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="MenuRadio-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="MenuRadio-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="MenuRadio-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="MenuRadio-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="PluginFrame">class <strong>PluginFrame</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to list the profiles.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="PluginFrame-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the radio.</tt></dd></dl>
<dl><dt><a name="PluginFrame-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="PluginFrame-createFrame"><strong>createFrame</strong></a>(self, gridPosition)</dt><dd><tt>Create the frame.</tt></dd></dl>
<dl><dt><a name="PluginFrame-getFromPath"><strong>getFromPath</strong></a>(self, defaultRadioButton, directoryPath, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="PluginFrame-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the state of all the plugins to the value.</tt></dd></dl>
<dl><dt><a name="PluginFrame-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the plugins to the display.</tt></dd></dl>
<dl><dt><a name="PluginFrame-update"><strong>update</strong></a>(self)</dt><dd><tt>Update the frame.</tt></dd></dl>
<dl><dt><a name="PluginFrame-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="ProfileList">class <strong>ProfileList</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to list the profiles.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="ProfileList-getFromName"><strong>getFromName</strong></a>(self, name, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="ProfileList-setValueToFolders"><strong>setValueToFolders</strong></a>(self)</dt><dd><tt>Set the value to the folders in the profiles directories.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="ProfileListboxSetting">class <strong>ProfileListboxSetting</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to handle the profile listbox.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="ProfileListboxSetting-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-buttonReleaseOne"><strong>buttonReleaseOne</strong></a>(self, event)</dt><dd><tt>Button one released.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-focusIn"><strong>focusIn</strong></a>(self, event)</dt><dd><tt>The root has gained focus.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-getFromListSetting"><strong>getFromListSetting</strong></a>(self, listSetting, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-getSelectedFolder"><strong>getSelectedFolder</strong></a>(self)</dt><dd><tt>Get the selected folder.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the listbox items to the list setting.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the selection value to the listbox selection.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-setValueToIndex"><strong>setValueToIndex</strong></a>(self, index)</dt><dd><tt>Set the selection value to the index.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the value to the value string.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="ProfileListboxSetting-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="ProfileListboxSetting-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="Radio">class <strong>Radio</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a boolean with associated radio button.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#Radio">Radio</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="Radio-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="Radio-clickRadio"><strong>clickRadio</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, set the value.</tt></dd></dl>
<dl><dt><a name="Radio-createRadioButton"><strong>createRadioButton</strong></a>(self, gridPosition)</dt><dd><tt>Create the radio button.</tt></dd></dl>
<dl><dt><a name="Radio-getFromRadio"><strong>getFromRadio</strong></a>(self, latentStringVar, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="Radio-setSelect"><strong>setSelect</strong></a>(self)</dt><dd><tt>Set the int var and select the radio button.</tt></dd></dl>
<dl><dt><a name="Radio-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the checkbutton to the boolean.</tt></dd></dl>
<dl><dt><a name="Radio-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the boolean to the checkbutton.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a>:<br>
<dl><dt><a name="Radio-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the repository menu.</tt></dd></dl>
<dl><dt><a name="Radio-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="Radio-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the boolean to the string.</tt></dd></dl>
<dl><dt><a name="Radio-toggleCheckbutton"><strong>toggleCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<dl><dt><a name="Radio-toggleMenuCheckbutton"><strong>toggleMenuCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="Radio-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="Radio-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="Radio-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="Radio-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="Radio-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="Radio-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="Radio-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="Radio-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="Radio-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="Radio-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="Radio-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="RadioCapitalized">class <strong>RadioCapitalized</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#Radio">Radio</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a boolean with associated radio button.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#RadioCapitalized">RadioCapitalized</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#Radio">Radio</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="RadioCapitalized-createRadioButton"><strong>createRadioButton</strong></a>(self, gridPosition)</dt><dd><tt>Create the radio button.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#Radio">Radio</a>:<br>
<dl><dt><a name="RadioCapitalized-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-clickRadio"><strong>clickRadio</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, set the value.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-getFromRadio"><strong>getFromRadio</strong></a>(self, latentStringVar, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-setSelect"><strong>setSelect</strong></a>(self)</dt><dd><tt>Set the int var and select the radio button.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the checkbutton to the boolean.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the boolean to the checkbutton.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a>:<br>
<dl><dt><a name="RadioCapitalized-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the repository menu.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the boolean to the string.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-toggleCheckbutton"><strong>toggleCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-toggleMenuCheckbutton"><strong>toggleMenuCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="RadioCapitalized-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="RadioCapitalized-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="RadioCapitalizedButton">class <strong>RadioCapitalizedButton</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#Radio">Radio</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a boolean with associated radio button.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#RadioCapitalizedButton">RadioCapitalizedButton</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#Radio">Radio</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="RadioCapitalizedButton-createRadioButton"><strong>createRadioButton</strong></a>(self, gridPosition)</dt><dd><tt>Create the radio button.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-displayDialog"><strong>displayDialog</strong></a>(self)</dt><dd><tt>Display function.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-getFromPath"><strong>getFromPath</strong></a>(self, latentStringVar, name, path, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#Radio">Radio</a>:<br>
<dl><dt><a name="RadioCapitalizedButton-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-clickRadio"><strong>clickRadio</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, set the value.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-getFromRadio"><strong>getFromRadio</strong></a>(self, latentStringVar, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-setSelect"><strong>setSelect</strong></a>(self)</dt><dd><tt>Set the int var and select the radio button.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the checkbutton to the boolean.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the boolean to the checkbutton.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a>:<br>
<dl><dt><a name="RadioCapitalizedButton-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the repository menu.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the boolean to the string.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-toggleCheckbutton"><strong>toggleCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-toggleMenuCheckbutton"><strong>toggleMenuCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="RadioCapitalizedButton-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="RadioCapitalizedButton-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="RadioPlugin">class <strong>RadioPlugin</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#RadioCapitalized">RadioCapitalized</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a boolean with associated radio button.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#RadioPlugin">RadioPlugin</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#RadioCapitalized">RadioCapitalized</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#Radio">Radio</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a></dd>
<dd><a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a></dd>
</dl>
<hr>
Methods defined here:<br>
<dl><dt><a name="RadioPlugin-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-getFromRadio"><strong>getFromRadio</strong></a>(self, important, latentStringVar, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-incrementGridPosition"><strong>incrementGridPosition</strong></a>(self, gridPosition)</dt><dd><tt>Increment the grid position.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#RadioCapitalized">RadioCapitalized</a>:<br>
<dl><dt><a name="RadioPlugin-createRadioButton"><strong>createRadioButton</strong></a>(self, gridPosition)</dt><dd><tt>Create the radio button.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#Radio">Radio</a>:<br>
<dl><dt><a name="RadioPlugin-clickRadio"><strong>clickRadio</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, set the value.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-setSelect"><strong>setSelect</strong></a>(self)</dt><dd><tt>Set the int var and select the radio button.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the checkbutton to the boolean.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the boolean to the checkbutton.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#BooleanSetting">BooleanSetting</a>:<br>
<dl><dt><a name="RadioPlugin-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the repository menu.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the boolean to the string.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-toggleCheckbutton"><strong>toggleCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-toggleMenuCheckbutton"><strong>toggleMenuCheckbutton</strong></a>(self)</dt><dd><tt>Workaround for Tkinter bug, toggle the value.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="RadioPlugin-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="RadioPlugin-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="RepositoryDialog">class <strong>RepositoryDialog</strong></a></font></td></tr>
<tr><td bgcolor="#ffc8d8"><tt> </tt></td><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="RepositoryDialog-__init__"><strong>__init__</strong></a>(self, repository, root)</dt><dd><tt>Add entities to the dialog.</tt></dd></dl>
<dl><dt><a name="RepositoryDialog-__repr__"><strong>__repr__</strong></a>(self)</dt><dd><tt>Get the string representation of this <a href="#RepositoryDialog">RepositoryDialog</a>.</tt></dd></dl>
<dl><dt><a name="RepositoryDialog-addButtons"><strong>addButtons</strong></a>(self, repository, root)</dt><dd><tt>Add buttons to the dialog.</tt></dd></dl>
<dl><dt><a name="RepositoryDialog-cancel"><strong>cancel</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set all entities to their saved state.</tt></dd></dl>
<dl><dt><a name="RepositoryDialog-close"><strong>close</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>The dialog was closed.</tt></dd></dl>
<dl><dt><a name="RepositoryDialog-save"><strong>save</strong></a>(self, event<font color="#909090">=None</font>)</dt><dd><tt>Set the entities to the dialog then write them.</tt></dd></dl>
<dl><dt><a name="RepositoryDialog-saveAll"><strong>saveAll</strong></a>(self)</dt><dd><tt>Save all the dialogs.</tt></dd></dl>
<dl><dt><a name="RepositoryDialog-setWindowPositionDeiconify"><strong>setWindowPositionDeiconify</strong></a>(self)</dt><dd><tt>Set the window position if that setting exists.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="StringSetting">class <strong>StringSetting</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a string.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="StringSetting-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="StringSetting-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="StringSetting-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="StringSetting-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="StringSetting-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="StringSetting-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="StringSetting-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="StringSetting-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="StringSetting-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="StringSetting-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="StringSetting-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="StringSetting-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="StringSetting-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the entry field.</tt></dd></dl>
<dl><dt><a name="StringSetting-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="StringSetting-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="StringSetting-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the value to the value string.</tt></dd></dl>
<dl><dt><a name="StringSetting-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="TextSetting">class <strong>TextSetting</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a text.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="TextSetting-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="TextSetting-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="TextSetting-getFromValue"><strong>getFromValue</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="TextSetting-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="TextSetting-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the entry field.</tt></dd></dl>
<dl><dt><a name="TextSetting-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="TextSetting-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="TextSetting-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="TextSetting-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="TextSetting-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="TextSetting-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="TextSetting-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="TextSetting-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="TextSetting-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="TextSetting-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="TextSetting-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="TextSetting-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the value to the value string.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="TokenConversion">class <strong>TokenConversion</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to convert tokens in a string.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="TokenConversion-__init__"><strong>__init__</strong></a>(self, name<font color="#909090">='replaceToken'</font>, token<font color="#909090">='___replaced___'</font>)</dt><dd><tt>Set the name and token.</tt></dd></dl>
<dl><dt><a name="TokenConversion-getNamedString"><strong>getNamedString</strong></a>(self, text)</dt><dd><tt>Get a string with the tokens changed to names.</tt></dd></dl>
<dl><dt><a name="TokenConversion-getTokenizedString"><strong>getTokenizedString</strong></a>(self, text)</dt><dd><tt>Get a string with the names changed to tokens.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="ToolDialog">class <strong>ToolDialog</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display the tool repository dialog.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="ToolDialog-addPluginToMenu"><strong>addPluginToMenu</strong></a>(self, menu, path)</dt><dd><tt>Add the display command to the menu.</tt></dd></dl>
<dl><dt><a name="ToolDialog-display"><strong>display</strong></a>(self)</dt><dd><tt>Display the tool repository dialog.</tt></dd></dl>
<dl><dt><a name="ToolDialog-getFromPath"><strong>getFromPath</strong></a>(self, path)</dt><dd><tt>Initialize and return display function.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="WindowPosition">class <strong>WindowPosition</strong></a>(<a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>)</font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to display, read & write a window position.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="WindowPosition-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Set the root to later get the geometry.</tt></dd></dl>
<dl><dt><a name="WindowPosition-getFromValue"><strong>getFromValue</strong></a>(self, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="WindowPosition-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the window position.</tt></dd></dl>
<dl><dt><a name="WindowPosition-setWindowPosition"><strong>setWindowPosition</strong></a>(self)</dt><dd><tt>Set the window position.</tt></dd></dl>
<hr>
Methods inherited from <a href="skeinforge_tools.skeinforge_utilities.settings.html#StringSetting">StringSetting</a>:<br>
<dl><dt><a name="WindowPosition-__init__"><strong>__init__</strong></a>(self)</dt><dd><tt>Set the update function to none.</tt></dd></dl>
<dl><dt><a name="WindowPosition-addToMenu"><strong>addToMenu</strong></a>(self, repositoryMenu)</dt><dd><tt>Do nothing because this should only be added to a frameable repository menu.</tt></dd></dl>
<dl><dt><a name="WindowPosition-addToMenuFrameable"><strong>addToMenuFrameable</strong></a>(self, repositoryMenu)</dt><dd><tt>Add this to the frameable repository menu.</tt></dd></dl>
<dl><dt><a name="WindowPosition-addToWindow"><strong>addToWindow</strong></a>(self)</dt><dd><tt>Add this to the repository frame list.</tt></dd></dl>
<dl><dt><a name="WindowPosition-bindEntry"><strong>bindEntry</strong></a>(self)</dt><dd><tt>Bind the entry to the update function.</tt></dd></dl>
<dl><dt><a name="WindowPosition-createEntry"><strong>createEntry</strong></a>(self, root)</dt><dd><tt>Create the entry.</tt></dd></dl>
<dl><dt><a name="WindowPosition-getFromValueOnly"><strong>getFromValueOnly</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="WindowPosition-getFromValueOnlyAddToRepository"><strong>getFromValueOnlyAddToRepository</strong></a>(self, name, repository, value)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="WindowPosition-removeFromWindow"><strong>removeFromWindow</strong></a>(self)</dt><dd><tt>Remove this from the repository frame list.</tt></dd></dl>
<dl><dt><a name="WindowPosition-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Set the entry to the value.</tt></dd></dl>
<dl><dt><a name="WindowPosition-setUpdateFunction"><strong>setUpdateFunction</strong></a>(self, updateFunction)</dt><dd><tt>Set the update function.</tt></dd></dl>
<dl><dt><a name="WindowPosition-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second word of a split line.</tt></dd></dl>
<dl><dt><a name="WindowPosition-setValueToString"><strong>setValueToString</strong></a>(self, valueString)</dt><dd><tt>Set the value to the value string.</tt></dd></dl>
<dl><dt><a name="WindowPosition-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and value to the archive writer.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="WindowVisibilities">class <strong>WindowVisibilities</strong></a></font></td></tr>
<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td>
<td colspan=2><tt>A class to read & write window visibilities and display them.<br> </tt></td></tr>
<tr><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="WindowVisibilities-addToDialog"><strong>addToDialog</strong></a>(self, gridPosition)</dt><dd><tt>Add this to the dialog.</tt></dd></dl>
<dl><dt><a name="WindowVisibilities-getFromRepository"><strong>getFromRepository</strong></a>(self, repository)</dt><dd><tt>Initialize.</tt></dd></dl>
<dl><dt><a name="WindowVisibilities-openDialog"><strong>openDialog</strong></a>(self)</dt><dd><tt>Create the display button.</tt></dd></dl>
<dl><dt><a name="WindowVisibilities-setStateToValue"><strong>setStateToValue</strong></a>(self)</dt><dd><tt>Do nothing because the window visibility is not to be cancelled.</tt></dd></dl>
<dl><dt><a name="WindowVisibilities-setToDisplay"><strong>setToDisplay</strong></a>(self)</dt><dd><tt>Set the string to the window position.</tt></dd></dl>
<dl><dt><a name="WindowVisibilities-setValueToSplitLine"><strong>setValueToSplitLine</strong></a>(self, lineIndex, lines, splitLine)</dt><dd><tt>Set the value to the second and later words of a split line.</tt></dd></dl>
<dl><dt><a name="WindowVisibilities-writeToArchiveWriter"><strong>writeToArchiveWriter</strong></a>(self, archiveWriter)</dt><dd><tt>Write tab separated name and list to the archive writer.</tt></dd></dl>
</td></tr></table></td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#eeaa77">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Functions</strong></big></font></td></tr>
<tr><td bgcolor="#eeaa77"><tt> </tt></td><td> </td>
<td width="100%"><dl><dt><a name="-addAcceleratorCommand"><strong>addAcceleratorCommand</strong></a>(acceleratorBinding, commandFunction, master, menu, text)</dt><dd><tt>Add accelerator command.</tt></dd></dl>
<dl><dt><a name="-addElementToListTableIfNotThere"><strong>addElementToListTableIfNotThere</strong></a>(element, key, listTable)</dt><dd><tt>Add the value to the lists.</tt></dd></dl>
<dl><dt><a name="-addEmptyRow"><strong>addEmptyRow</strong></a>(gridPosition)</dt><dd><tt>Add an empty row.</tt></dd></dl>
<dl><dt><a name="-addListsSetCraftProfileArchive"><strong>addListsSetCraftProfileArchive</strong></a>(craftSequence, defaultProfile, repository, fileNameHelp)</dt><dd><tt>Set the craft profile archive.</tt></dd></dl>
<dl><dt><a name="-addListsToRepository"><strong>addListsToRepository</strong></a>(fileNameHelp, profileDirectory, repository)</dt><dd><tt>Add the value to the lists.</tt></dd></dl>
<dl><dt><a name="-addMenuEntitiesToMenu"><strong>addMenuEntitiesToMenu</strong></a>(menu, menuEntities)</dt><dd><tt>Add the menu entities to the menu.</tt></dd></dl>
<dl><dt><a name="-addMenuEntitiesToMenuFrameable"><strong>addMenuEntitiesToMenuFrameable</strong></a>(menu, menuEntities)</dt><dd><tt>Add the menu entities to the menu.</tt></dd></dl>
<dl><dt><a name="-addPluginsParentToMenu"><strong>addPluginsParentToMenu</strong></a>(directoryPath, menu, parentPath, pluginFileNames)</dt><dd><tt>Add plugins and the parent to the menu.</tt></dd></dl>
<dl><dt><a name="-addPluginsToMenu"><strong>addPluginsToMenu</strong></a>(directoryPath, menu, pluginFileNames)</dt><dd><tt>Add plugins to the menu.</tt></dd></dl>
<dl><dt><a name="-cancelRepository"><strong>cancelRepository</strong></a>(repository)</dt><dd><tt>Read the repository then set all the entities to the read archive values.</tt></dd></dl>
<dl><dt><a name="-deleteDirectory"><strong>deleteDirectory</strong></a>(directory, subfolderName)</dt><dd><tt>Delete the directory if it exists.</tt></dd></dl>
<dl><dt><a name="-deleteMenuItems"><strong>deleteMenuItems</strong></a>(menu)</dt><dd><tt>Delete the menu items.</tt></dd></dl>
<dl><dt><a name="-getAlongWayHexadecimalColor"><strong>getAlongWayHexadecimalColor</strong></a>(beginBrightness, colorWidth, difference, endColorTuple, wayLength)</dt><dd><tt>Get a color along the way from begin brightness to the end color.</tt></dd></dl>
<dl><dt><a name="-getAlongWayHexadecimalPrimary"><strong>getAlongWayHexadecimalPrimary</strong></a>(beginBrightness, beginRatio, colorWidth, endBrightness, endRatio)</dt><dd><tt>Get a primary color along the way from grey to the end color.</tt></dd></dl>
<dl><dt><a name="-getArchiveText"><strong>getArchiveText</strong></a>(repository)</dt><dd><tt>Get the text representation of the archive.</tt></dd></dl>
<dl><dt><a name="-getDirectoryInAboveDirectory"><strong>getDirectoryInAboveDirectory</strong></a>(directory)</dt><dd><tt>Get the directory in the above directory.</tt></dd></dl>
<dl><dt><a name="-getDisplayToolButtonsRepository"><strong>getDisplayToolButtonsRepository</strong></a>(directoryPath, importantFileNames, names, repository)</dt><dd><tt>Get the display tool buttons.</tt></dd></dl>
<dl><dt><a name="-getDisplayedDialogFromConstructor"><strong>getDisplayedDialogFromConstructor</strong></a>(repository)</dt><dd><tt>Display the repository dialog.</tt></dd></dl>
<dl><dt><a name="-getDisplayedDialogFromPath"><strong>getDisplayedDialogFromPath</strong></a>(path)</dt><dd><tt>Display the repository dialog.</tt></dd></dl>
<dl><dt><a name="-getDocumentationPath"><strong>getDocumentationPath</strong></a>(subName<font color="#909090">=''</font>)</dt><dd><tt>Get the documentation file path.</tt></dd></dl>
<dl><dt><a name="-getEachWordCapitalized"><strong>getEachWordCapitalized</strong></a>(name)</dt><dd><tt>Get the capitalized name.</tt></dd></dl>
<dl><dt><a name="-getFileInAlterationsOrGivenDirectory"><strong>getFileInAlterationsOrGivenDirectory</strong></a>(directory, fileName)</dt><dd><tt>Get the file from the fileName or the lowercase fileName in the alterations directories, if there is no file look in the given directory.</tt></dd></dl>
<dl><dt><a name="-getFileInGivenDirectory"><strong>getFileInGivenDirectory</strong></a>(directory, fileName)</dt><dd><tt>Get the file from the fileName or the lowercase fileName in the given directory.</tt></dd></dl>
<dl><dt><a name="-getFileTextGivenDirectoryFileName"><strong>getFileTextGivenDirectoryFileName</strong></a>(directory, fileName)</dt><dd><tt>Get the entire text of a file with the given file name in the given directory.</tt></dd></dl>
<dl><dt><a name="-getFolders"><strong>getFolders</strong></a>(directory)</dt><dd><tt>Get the folder list in a directory.</tt></dd></dl>
<dl><dt><a name="-getPathFromFileNameHelp"><strong>getPathFromFileNameHelp</strong></a>(fileNameHelp)</dt><dd><tt>Get the directory path from file name help.</tt></dd></dl>
<dl><dt><a name="-getProfilesDirectoryInAboveDirectory"><strong>getProfilesDirectoryInAboveDirectory</strong></a>(subName<font color="#909090">=''</font>)</dt><dd><tt>Get the profiles directory path in the above directory.</tt></dd></dl>
<dl><dt><a name="-getProfilesDirectoryPath"><strong>getProfilesDirectoryPath</strong></a>(subfolder<font color="#909090">=''</font>)</dt><dd><tt>Get the profiles directory path, which is the settings directory joined with profiles.</tt></dd></dl>
<dl><dt><a name="-getRadioPluginsAddPluginFrame"><strong>getRadioPluginsAddPluginFrame</strong></a>(directoryPath, importantFileNames, names, repository)</dt><dd><tt>Get the radio plugins and add the plugin frame.</tt></dd></dl>
<dl><dt><a name="-getReadRepository"><strong>getReadRepository</strong></a>(repository)</dt><dd><tt>Read and return settings from a file.</tt></dd></dl>
<dl><dt><a name="-getSelectedPluginModuleFromPath"><strong>getSelectedPluginModuleFromPath</strong></a>(filePath, plugins)</dt><dd><tt>Get the selected plugin module.</tt></dd></dl>
<dl><dt><a name="-getSelectedPluginName"><strong>getSelectedPluginName</strong></a>(plugins)</dt><dd><tt>Get the selected plugin name.</tt></dd></dl>
<dl><dt><a name="-getSelectedRadioPlugin"><strong>getSelectedRadioPlugin</strong></a>(names, radioPlugins)</dt><dd><tt>Get the selected radio button if it exists, None otherwise.</tt></dd></dl>
<dl><dt><a name="-getSettingsDirectoryPath"><strong>getSettingsDirectoryPath</strong></a>(subfolder<font color="#909090">=''</font>)</dt><dd><tt>Get the settings directory path, which is the home directory joined with .skeinforge.</tt></dd></dl>
<dl><dt><a name="-getSkeinforgeDirectoryPath"><strong>getSkeinforgeDirectoryPath</strong></a>()</dt><dd><tt>Get the skeinforge directory path.</tt></dd></dl>
<dl><dt><a name="-getSkeinforgeToolsDirectoryPath"><strong>getSkeinforgeToolsDirectoryPath</strong></a>()</dt><dd><tt>Get the skeinforge tools directory path.</tt></dd></dl>
<dl><dt><a name="-getSubfolderWithBasename"><strong>getSubfolderWithBasename</strong></a>(basename, directory)</dt><dd><tt>Get the subfolder in the directory with the basename.</tt></dd></dl>
<dl><dt><a name="-getTitleFromName"><strong>getTitleFromName</strong></a>(title)</dt><dd><tt>Get the title of this setting.</tt></dd></dl>
<dl><dt><a name="-getWidthHex"><strong>getWidthHex</strong></a>(number, width)</dt><dd><tt>Get the first width hexadecimal digits.</tt></dd></dl>
<dl><dt><a name="-liftRepositoryDialogs"><strong>liftRepositoryDialogs</strong></a>(repositoryDialogs)</dt><dd><tt>Lift the repository dialogs.</tt></dd></dl>
<dl><dt><a name="-makeDirectory"><strong>makeDirectory</strong></a>(directory)</dt><dd><tt>Make a directory if it does not already exist.</tt></dd></dl>
<dl><dt><a name="-openWebPage"><strong>openWebPage</strong></a>(webPagePath)</dt><dd><tt>Open a web page in a browser.</tt></dd></dl>
<dl><dt><a name="-quitWindow"><strong>quitWindow</strong></a>(root)</dt><dd><tt>Quit a window.</tt></dd></dl>
<dl><dt><a name="-quitWindows"><strong>quitWindows</strong></a>(event<font color="#909090">=None</font>)</dt><dd><tt>Quit all windows.</tt></dd></dl>
<dl><dt><a name="-readSettingsFromText"><strong>readSettingsFromText</strong></a>(repository, text)</dt><dd><tt>Read settings from a text.</tt></dd></dl>
<dl><dt><a name="-saveRepository"><strong>saveRepository</strong></a>(repository)</dt><dd><tt>Set the entities to the dialog then write them.</tt></dd></dl>
<dl><dt><a name="-setArchiveToLine"><strong>setArchiveToLine</strong></a>(lineIndex, lines, settingTable)</dt><dd><tt>Set an archive to a setting line.</tt></dd></dl>
<dl><dt><a name="-setButtonFontWeightString"><strong>setButtonFontWeightString</strong></a>(button, isBold)</dt><dd><tt>Set button font weight given isBold.</tt></dd></dl>
<dl><dt><a name="-setEntryText"><strong>setEntryText</strong></a>(entry, value)</dt><dd><tt>Set the entry text.</tt></dd></dl>
<dl><dt><a name="-setIntegerValueToString"><strong>setIntegerValueToString</strong></a>(integerSetting, valueString)</dt><dd><tt>Set the integer to the string.</tt></dd></dl>
<dl><dt><a name="-setSpinColor"><strong>setSpinColor</strong></a>(setting)</dt><dd><tt>Set the spin box color to the value, yellow if it is lower than the default and blue if it is higher.</tt></dd></dl>
<dl><dt><a name="-startMainLoopFromConstructor"><strong>startMainLoopFromConstructor</strong></a>(repository)</dt><dd><tt>Display the repository dialog and start the main loop.</tt></dd></dl>
<dl><dt><a name="-updateProfileSaveListeners"><strong>updateProfileSaveListeners</strong></a>()</dt><dd><tt>Call the save function of all the update profile save listeners.</tt></dd></dl>
<dl><dt><a name="-writeSettings"><strong>writeSettings</strong></a>(repository)</dt><dd><tt>Write the settings to a file.</tt></dd></dl>
<dl><dt><a name="-writeSettingsPrintMessage"><strong>writeSettingsPrintMessage</strong></a>(repository)</dt><dd><tt>Set the settings to the dialog then write them.</tt></dd></dl>
<dl><dt><a name="-writeValueListToArchiveWriter"><strong>writeValueListToArchiveWriter</strong></a>(archiveWriter, setting)</dt><dd><tt>Write tab separated name and list to the archive writer.</tt></dd></dl>
</td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#55aa55">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
<td width="100%"><strong>__author__</strong> = 'Enrique Perez (perez_enrique@yahoo.com)'<br>
<strong>__date__</strong> = '$Date: 2008/23/04 $'<br>
<strong>__license__</strong> = 'GPL 3.0'<br>
<strong>absolute_import</strong> = _Feature((2, 5, 0, 'alpha', 1), (2, 7, 0, 'alpha', 0), 16384)<br>
<strong>globalCloseListTables</strong> = [{}, {}]<br>
<strong>globalProfileSaveListenerListTable</strong> = {}<br>
<strong>globalRepositoryDialogListTable</strong> = {}<br>
<strong>globalSpreadsheetSeparator</strong> = '<font color="#c040c0">\t</font>'</td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#7799ee">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Author</strong></big></font></td></tr>
<tr><td bgcolor="#7799ee"><tt> </tt></td><td> </td>
<td width="100%">Enrique Perez (perez_enrique@yahoo.com)</td></tr></table>
</body></html>
|