summaryrefslogtreecommitdiff
path: root/cad/src/ne1_ui/prefs/PreferencesDialog.py
blob: 98a02b2ea3a9fb662bd90fa2b29995b40aec02e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'PreferencesDialog.ui'
#
# Created: Fri Dec 12 03:50:46 2008
#      by: PyQt4 UI code generator 4.3.3
#
# WARNING! All changes made in this file will be lost!

from PyQt4 import QtCore, QtGui

class Ui_PreferencesDialog(object):
    def setupUi(self, PreferencesDialog):
        PreferencesDialog.setObjectName("PreferencesDialog")
        PreferencesDialog.resize(QtCore.QSize(QtCore.QRect(0,0,620,600).size()).expandedTo(PreferencesDialog.minimumSizeHint()))
        PreferencesDialog.setMinimumSize(QtCore.QSize(620,600))

        self.gridlayout = QtGui.QGridLayout(PreferencesDialog)
        self.gridlayout.setMargin(9)
        self.gridlayout.setSpacing(6)
        self.gridlayout.setObjectName("gridlayout")

        self.prefsTabWidget = QtGui.QTabWidget(PreferencesDialog)
        self.prefsTabWidget.setObjectName("prefsTabWidget")

        self.systemOptionsTab = QtGui.QWidget()
        self.systemOptionsTab.setObjectName("systemOptionsTab")

        self.hboxlayout = QtGui.QHBoxLayout(self.systemOptionsTab)
        self.hboxlayout.setMargin(9)
        self.hboxlayout.setSpacing(6)
        self.hboxlayout.setObjectName("hboxlayout")

        self.categoryTreeWidget = QtGui.QTreeWidget(self.systemOptionsTab)
        self.categoryTreeWidget.setWindowModality(QtCore.Qt.NonModal)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(7))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.categoryTreeWidget.sizePolicy().hasHeightForWidth())
        self.categoryTreeWidget.setSizePolicy(sizePolicy)
        self.categoryTreeWidget.setMinimumSize(QtCore.QSize(170,0))
        self.categoryTreeWidget.setObjectName("categoryTreeWidget")
        self.hboxlayout.addWidget(self.categoryTreeWidget)

        self.prefsStackedWidget = QtGui.QStackedWidget(self.systemOptionsTab)
        self.prefsStackedWidget.setObjectName("prefsStackedWidget")

        self.General = QtGui.QWidget()
        self.General.setObjectName("General")

        self.gridlayout1 = QtGui.QGridLayout(self.General)
        self.gridlayout1.setMargin(9)
        self.gridlayout1.setSpacing(6)
        self.gridlayout1.setObjectName("gridlayout1")

        self.vboxlayout = QtGui.QVBoxLayout()
        self.vboxlayout.setMargin(0)
        self.vboxlayout.setSpacing(4)
        self.vboxlayout.setObjectName("vboxlayout")

        self.sponsorLogosGroupBox = QtGui.QGroupBox(self.General)
        self.sponsorLogosGroupBox.setObjectName("sponsorLogosGroupBox")

        self.vboxlayout1 = QtGui.QVBoxLayout(self.sponsorLogosGroupBox)
        self.vboxlayout1.setMargin(9)
        self.vboxlayout1.setSpacing(0)
        self.vboxlayout1.setObjectName("vboxlayout1")

        self.logoAlwaysAskRadioBtn = QtGui.QRadioButton(self.sponsorLogosGroupBox)
        self.logoAlwaysAskRadioBtn.setObjectName("logoAlwaysAskRadioBtn")
        self.vboxlayout1.addWidget(self.logoAlwaysAskRadioBtn)

        self.logoNeverAskRadioBtn = QtGui.QRadioButton(self.sponsorLogosGroupBox)
        self.logoNeverAskRadioBtn.setObjectName("logoNeverAskRadioBtn")
        self.vboxlayout1.addWidget(self.logoNeverAskRadioBtn)

        self.logoNeverDownLoadRadioBtn = QtGui.QRadioButton(self.sponsorLogosGroupBox)
        self.logoNeverDownLoadRadioBtn.setObjectName("logoNeverDownLoadRadioBtn")
        self.vboxlayout1.addWidget(self.logoNeverDownLoadRadioBtn)
        self.vboxlayout.addWidget(self.sponsorLogosGroupBox)

        self.buildmode_groupbox = QtGui.QGroupBox(self.General)
        self.buildmode_groupbox.setObjectName("buildmode_groupbox")

        self.vboxlayout2 = QtGui.QVBoxLayout(self.buildmode_groupbox)
        self.vboxlayout2.setMargin(9)
        self.vboxlayout2.setSpacing(0)
        self.vboxlayout2.setObjectName("vboxlayout2")

        self.autobond_checkbox = QtGui.QCheckBox(self.buildmode_groupbox)
        self.autobond_checkbox.setObjectName("autobond_checkbox")
        self.vboxlayout2.addWidget(self.autobond_checkbox)

        self.buildmode_highlighting_checkbox = QtGui.QCheckBox(self.buildmode_groupbox)
        self.buildmode_highlighting_checkbox.setObjectName("buildmode_highlighting_checkbox")
        self.vboxlayout2.addWidget(self.buildmode_highlighting_checkbox)

        self.water_checkbox = QtGui.QCheckBox(self.buildmode_groupbox)
        self.water_checkbox.setObjectName("water_checkbox")
        self.vboxlayout2.addWidget(self.water_checkbox)

        self.buildmode_select_atoms_checkbox = QtGui.QCheckBox(self.buildmode_groupbox)
        self.buildmode_select_atoms_checkbox.setObjectName("buildmode_select_atoms_checkbox")
        self.vboxlayout2.addWidget(self.buildmode_select_atoms_checkbox)
        self.vboxlayout.addWidget(self.buildmode_groupbox)

        self.groupBox_2 = QtGui.QGroupBox(self.General)
        self.groupBox_2.setObjectName("groupBox_2")

        self.gridlayout2 = QtGui.QGridLayout(self.groupBox_2)
        self.gridlayout2.setMargin(9)
        self.gridlayout2.setSpacing(6)
        self.gridlayout2.setObjectName("gridlayout2")

        self.hboxlayout1 = QtGui.QHBoxLayout()
        self.hboxlayout1.setMargin(0)
        self.hboxlayout1.setSpacing(4)
        self.hboxlayout1.setObjectName("hboxlayout1")

        self.pasteOffsetForDna_lable = QtGui.QLabel(self.groupBox_2)
        self.pasteOffsetForDna_lable.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.pasteOffsetForDna_lable.setObjectName("pasteOffsetForDna_lable")
        self.hboxlayout1.addWidget(self.pasteOffsetForDna_lable)

        self.pasteOffsetScaleFactorForDnaObjects_doubleSpinBox = QtGui.QDoubleSpinBox(self.groupBox_2)
        self.pasteOffsetScaleFactorForDnaObjects_doubleSpinBox.setObjectName("pasteOffsetScaleFactorForDnaObjects_doubleSpinBox")
        self.hboxlayout1.addWidget(self.pasteOffsetScaleFactorForDnaObjects_doubleSpinBox)
        self.gridlayout2.addLayout(self.hboxlayout1,1,0,1,1)

        self.hboxlayout2 = QtGui.QHBoxLayout()
        self.hboxlayout2.setMargin(0)
        self.hboxlayout2.setSpacing(4)
        self.hboxlayout2.setObjectName("hboxlayout2")

        self.pasteOffsetForChunks_lable = QtGui.QLabel(self.groupBox_2)
        self.pasteOffsetForChunks_lable.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.pasteOffsetForChunks_lable.setObjectName("pasteOffsetForChunks_lable")
        self.hboxlayout2.addWidget(self.pasteOffsetForChunks_lable)

        self.pasteOffsetScaleFactorForChunks_doubleSpinBox = QtGui.QDoubleSpinBox(self.groupBox_2)
        self.pasteOffsetScaleFactorForChunks_doubleSpinBox.setObjectName("pasteOffsetScaleFactorForChunks_doubleSpinBox")
        self.hboxlayout2.addWidget(self.pasteOffsetScaleFactorForChunks_doubleSpinBox)
        self.gridlayout2.addLayout(self.hboxlayout2,0,0,1,1)
        self.vboxlayout.addWidget(self.groupBox_2)

        spacerItem = QtGui.QSpacerItem(20,1,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout.addItem(spacerItem)
        self.gridlayout1.addLayout(self.vboxlayout,0,0,1,1)

        spacerItem1 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout1.addItem(spacerItem1,0,1,1,1)
        self.prefsStackedWidget.addWidget(self.General)

        self.Color = QtGui.QWidget()
        self.Color.setObjectName("Color")

        self.gridlayout3 = QtGui.QGridLayout(self.Color)
        self.gridlayout3.setMargin(9)
        self.gridlayout3.setSpacing(6)
        self.gridlayout3.setObjectName("gridlayout3")

        spacerItem2 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout3.addItem(spacerItem2,0,1,1,1)

        self.vboxlayout3 = QtGui.QVBoxLayout()
        self.vboxlayout3.setMargin(0)
        self.vboxlayout3.setSpacing(4)
        self.vboxlayout3.setObjectName("vboxlayout3")

        self.backgroundGroupBox = QtGui.QGroupBox(self.Color)
        self.backgroundGroupBox.setObjectName("backgroundGroupBox")

        self.gridlayout4 = QtGui.QGridLayout(self.backgroundGroupBox)
        self.gridlayout4.setMargin(9)
        self.gridlayout4.setSpacing(6)
        self.gridlayout4.setObjectName("gridlayout4")

        self.enableFogCheckBox = QtGui.QCheckBox(self.backgroundGroupBox)
        self.enableFogCheckBox.setObjectName("enableFogCheckBox")
        self.gridlayout4.addWidget(self.enableFogCheckBox,1,0,1,1)

        self.hboxlayout3 = QtGui.QHBoxLayout()
        self.hboxlayout3.setMargin(0)
        self.hboxlayout3.setSpacing(4)
        self.hboxlayout3.setObjectName("hboxlayout3")

        self.label_8 = QtGui.QLabel(self.backgroundGroupBox)
        self.label_8.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_8.setObjectName("label_8")
        self.hboxlayout3.addWidget(self.label_8)

        self.backgroundColorComboBox = QtGui.QComboBox(self.backgroundGroupBox)
        self.backgroundColorComboBox.setObjectName("backgroundColorComboBox")
        self.hboxlayout3.addWidget(self.backgroundColorComboBox)
        self.gridlayout4.addLayout(self.hboxlayout3,0,0,1,1)
        self.vboxlayout3.addWidget(self.backgroundGroupBox)

        self.hoverHighlightingStyleGroupBox = QtGui.QGroupBox(self.Color)
        self.hoverHighlightingStyleGroupBox.setObjectName("hoverHighlightingStyleGroupBox")

        self.gridlayout5 = QtGui.QGridLayout(self.hoverHighlightingStyleGroupBox)
        self.gridlayout5.setMargin(9)
        self.gridlayout5.setSpacing(6)
        self.gridlayout5.setObjectName("gridlayout5")

        self.label_21 = QtGui.QLabel(self.hoverHighlightingStyleGroupBox)
        self.label_21.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_21.setObjectName("label_21")
        self.gridlayout5.addWidget(self.label_21,1,0,1,1)

        self.hboxlayout4 = QtGui.QHBoxLayout()
        self.hboxlayout4.setMargin(0)
        self.hboxlayout4.setSpacing(2)
        self.hboxlayout4.setObjectName("hboxlayout4")

        self.hoverHighlightingColorFrame = QtGui.QFrame(self.hoverHighlightingStyleGroupBox)
        self.hoverHighlightingColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.hoverHighlightingColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.hoverHighlightingColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.hoverHighlightingColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.hoverHighlightingColorFrame.setObjectName("hoverHighlightingColorFrame")
        self.hboxlayout4.addWidget(self.hoverHighlightingColorFrame)

        self.hoverHighlightingColorButton = QtGui.QPushButton(self.hoverHighlightingStyleGroupBox)
        self.hoverHighlightingColorButton.setAutoDefault(False)
        self.hoverHighlightingColorButton.setObjectName("hoverHighlightingColorButton")
        self.hboxlayout4.addWidget(self.hoverHighlightingColorButton)
        self.gridlayout5.addLayout(self.hboxlayout4,1,1,1,1)

        self.hoverHighlightingStyleComboBox = QtGui.QComboBox(self.hoverHighlightingStyleGroupBox)
        self.hoverHighlightingStyleComboBox.setObjectName("hoverHighlightingStyleComboBox")
        self.gridlayout5.addWidget(self.hoverHighlightingStyleComboBox,0,0,1,2)
        self.vboxlayout3.addWidget(self.hoverHighlightingStyleGroupBox)

        self.selectionColorStyleGroupBox = QtGui.QGroupBox(self.Color)
        self.selectionColorStyleGroupBox.setObjectName("selectionColorStyleGroupBox")

        self.gridlayout6 = QtGui.QGridLayout(self.selectionColorStyleGroupBox)
        self.gridlayout6.setMargin(9)
        self.gridlayout6.setSpacing(6)
        self.gridlayout6.setObjectName("gridlayout6")

        self.label_22 = QtGui.QLabel(self.selectionColorStyleGroupBox)
        self.label_22.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_22.setObjectName("label_22")
        self.gridlayout6.addWidget(self.label_22,1,0,1,1)

        self.hboxlayout5 = QtGui.QHBoxLayout()
        self.hboxlayout5.setMargin(0)
        self.hboxlayout5.setSpacing(2)
        self.hboxlayout5.setObjectName("hboxlayout5")

        self.selectionColorFrame = QtGui.QFrame(self.selectionColorStyleGroupBox)
        self.selectionColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.selectionColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.selectionColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.selectionColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.selectionColorFrame.setObjectName("selectionColorFrame")
        self.hboxlayout5.addWidget(self.selectionColorFrame)

        self.selectionColorButton = QtGui.QPushButton(self.selectionColorStyleGroupBox)
        self.selectionColorButton.setAutoDefault(False)
        self.selectionColorButton.setObjectName("selectionColorButton")
        self.hboxlayout5.addWidget(self.selectionColorButton)
        self.gridlayout6.addLayout(self.hboxlayout5,1,1,1,1)

        self.selectionStyleComboBox = QtGui.QComboBox(self.selectionColorStyleGroupBox)
        self.selectionStyleComboBox.setObjectName("selectionStyleComboBox")
        self.gridlayout6.addWidget(self.selectionStyleComboBox,0,0,1,2)
        self.vboxlayout3.addWidget(self.selectionColorStyleGroupBox)

        self.hboxlayout6 = QtGui.QHBoxLayout()
        self.hboxlayout6.setMargin(0)
        self.hboxlayout6.setSpacing(2)
        self.hboxlayout6.setObjectName("hboxlayout6")

        self.label_25 = QtGui.QLabel(self.Color)
        self.label_25.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_25.setObjectName("label_25")
        self.hboxlayout6.addWidget(self.label_25)

        self.haloWidthSpinBox = QtGui.QSpinBox(self.Color)
        self.haloWidthSpinBox.setMaximum(10)
        self.haloWidthSpinBox.setMinimum(1)
        self.haloWidthSpinBox.setProperty("value",QtCore.QVariant(5))
        self.haloWidthSpinBox.setObjectName("haloWidthSpinBox")
        self.hboxlayout6.addWidget(self.haloWidthSpinBox)

        self.haloWidthResetButton = QtGui.QToolButton(self.Color)
        self.haloWidthResetButton.setIcon(QtGui.QIcon("../../../../../:icons/UserPrefsDialog_image0"))
        self.haloWidthResetButton.setObjectName("haloWidthResetButton")
        self.hboxlayout6.addWidget(self.haloWidthResetButton)

        spacerItem3 = QtGui.QSpacerItem(20,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout6.addItem(spacerItem3)
        self.vboxlayout3.addLayout(self.hboxlayout6)

        spacerItem4 = QtGui.QSpacerItem(20,16,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout3.addItem(spacerItem4)
        self.gridlayout3.addLayout(self.vboxlayout3,0,0,1,1)
        self.prefsStackedWidget.addWidget(self.Color)

        self.GraphicsArea = QtGui.QWidget()
        self.GraphicsArea.setObjectName("GraphicsArea")

        self.gridlayout7 = QtGui.QGridLayout(self.GraphicsArea)
        self.gridlayout7.setMargin(9)
        self.gridlayout7.setSpacing(6)
        self.gridlayout7.setObjectName("gridlayout7")

        self.vboxlayout4 = QtGui.QVBoxLayout()
        self.vboxlayout4.setMargin(0)
        self.vboxlayout4.setSpacing(4)
        self.vboxlayout4.setObjectName("vboxlayout4")

        self.hboxlayout7 = QtGui.QHBoxLayout()
        self.hboxlayout7.setMargin(0)
        self.hboxlayout7.setSpacing(2)
        self.hboxlayout7.setObjectName("hboxlayout7")

        self.label_9 = QtGui.QLabel(self.GraphicsArea)
        self.label_9.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_9.setObjectName("label_9")
        self.hboxlayout7.addWidget(self.label_9)

        self.globalDisplayStyleStartupComboBox = QtGui.QComboBox(self.GraphicsArea)
        self.globalDisplayStyleStartupComboBox.setObjectName("globalDisplayStyleStartupComboBox")
        self.hboxlayout7.addWidget(self.globalDisplayStyleStartupComboBox)
        self.vboxlayout4.addLayout(self.hboxlayout7)

        self.compassGroupBox = QtGui.QGroupBox(self.GraphicsArea)
        self.compassGroupBox.setCheckable(True)
        self.compassGroupBox.setChecked(True)
        self.compassGroupBox.setObjectName("compassGroupBox")

        self.gridlayout8 = QtGui.QGridLayout(self.compassGroupBox)
        self.gridlayout8.setMargin(9)
        self.gridlayout8.setSpacing(6)
        self.gridlayout8.setObjectName("gridlayout8")

        spacerItem5 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout8.addItem(spacerItem5,0,1,1,1)

        self.vboxlayout5 = QtGui.QVBoxLayout()
        self.vboxlayout5.setMargin(0)
        self.vboxlayout5.setSpacing(0)
        self.vboxlayout5.setObjectName("vboxlayout5")

        self.hboxlayout8 = QtGui.QHBoxLayout()
        self.hboxlayout8.setMargin(0)
        self.hboxlayout8.setSpacing(4)
        self.hboxlayout8.setObjectName("hboxlayout8")

        self.textLabel1_4 = QtGui.QLabel(self.compassGroupBox)
        self.textLabel1_4.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel1_4.setObjectName("textLabel1_4")
        self.hboxlayout8.addWidget(self.textLabel1_4)

        self.compass_position_combox = QtGui.QComboBox(self.compassGroupBox)
        self.compass_position_combox.setObjectName("compass_position_combox")
        self.hboxlayout8.addWidget(self.compass_position_combox)
        self.vboxlayout5.addLayout(self.hboxlayout8)

        self.display_compass_labels_checkbox = QtGui.QCheckBox(self.compassGroupBox)
        self.display_compass_labels_checkbox.setChecked(True)
        self.display_compass_labels_checkbox.setObjectName("display_compass_labels_checkbox")
        self.vboxlayout5.addWidget(self.display_compass_labels_checkbox)
        self.gridlayout8.addLayout(self.vboxlayout5,0,0,1,1)
        self.vboxlayout4.addWidget(self.compassGroupBox)

        self.groupBox7_2 = QtGui.QGroupBox(self.GraphicsArea)
        self.groupBox7_2.setObjectName("groupBox7_2")

        self.gridlayout9 = QtGui.QGridLayout(self.groupBox7_2)
        self.gridlayout9.setMargin(9)
        self.gridlayout9.setSpacing(6)
        self.gridlayout9.setObjectName("gridlayout9")

        self.display_pov_axis_checkbox = QtGui.QCheckBox(self.groupBox7_2)
        self.display_pov_axis_checkbox.setChecked(False)
        self.display_pov_axis_checkbox.setObjectName("display_pov_axis_checkbox")
        self.gridlayout9.addWidget(self.display_pov_axis_checkbox,1,0,1,1)

        self.display_origin_axis_checkbox = QtGui.QCheckBox(self.groupBox7_2)
        self.display_origin_axis_checkbox.setChecked(True)
        self.display_origin_axis_checkbox.setObjectName("display_origin_axis_checkbox")
        self.gridlayout9.addWidget(self.display_origin_axis_checkbox,0,0,1,1)
        self.vboxlayout4.addWidget(self.groupBox7_2)

        self.cursorTextGroupBox = QtGui.QGroupBox(self.GraphicsArea)
        self.cursorTextGroupBox.setCheckable(True)
        self.cursorTextGroupBox.setObjectName("cursorTextGroupBox")

        self.hboxlayout9 = QtGui.QHBoxLayout(self.cursorTextGroupBox)
        self.hboxlayout9.setMargin(9)
        self.hboxlayout9.setSpacing(4)
        self.hboxlayout9.setObjectName("hboxlayout9")

        self.gridlayout10 = QtGui.QGridLayout()
        self.gridlayout10.setMargin(0)
        self.gridlayout10.setSpacing(6)
        self.gridlayout10.setObjectName("gridlayout10")

        self.label_2 = QtGui.QLabel(self.cursorTextGroupBox)
        self.label_2.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_2.setObjectName("label_2")
        self.gridlayout10.addWidget(self.label_2,0,0,1,1)

        self.hboxlayout10 = QtGui.QHBoxLayout()
        self.hboxlayout10.setMargin(0)
        self.hboxlayout10.setSpacing(2)
        self.hboxlayout10.setObjectName("hboxlayout10")

        self.cursorTextFontSizeSpinBox = QtGui.QSpinBox(self.cursorTextGroupBox)
        self.cursorTextFontSizeSpinBox.setMaximum(16)
        self.cursorTextFontSizeSpinBox.setMinimum(8)
        self.cursorTextFontSizeSpinBox.setProperty("value",QtCore.QVariant(11))
        self.cursorTextFontSizeSpinBox.setObjectName("cursorTextFontSizeSpinBox")
        self.hboxlayout10.addWidget(self.cursorTextFontSizeSpinBox)

        self.cursorTextFontSizeResetButton = QtGui.QToolButton(self.cursorTextGroupBox)
        self.cursorTextFontSizeResetButton.setIcon(QtGui.QIcon("../../../../../:icons/UserPrefsDialog_image0"))
        self.cursorTextFontSizeResetButton.setObjectName("cursorTextFontSizeResetButton")
        self.hboxlayout10.addWidget(self.cursorTextFontSizeResetButton)
        self.gridlayout10.addLayout(self.hboxlayout10,0,1,1,1)

        self.label_26 = QtGui.QLabel(self.cursorTextGroupBox)
        self.label_26.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_26.setObjectName("label_26")
        self.gridlayout10.addWidget(self.label_26,1,0,1,1)

        self.hboxlayout11 = QtGui.QHBoxLayout()
        self.hboxlayout11.setMargin(0)
        self.hboxlayout11.setSpacing(2)
        self.hboxlayout11.setObjectName("hboxlayout11")

        self.cursorTextColorFrame = QtGui.QFrame(self.cursorTextGroupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.cursorTextColorFrame.sizePolicy().hasHeightForWidth())
        self.cursorTextColorFrame.setSizePolicy(sizePolicy)
        self.cursorTextColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.cursorTextColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.cursorTextColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.cursorTextColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.cursorTextColorFrame.setObjectName("cursorTextColorFrame")
        self.hboxlayout11.addWidget(self.cursorTextColorFrame)

        self.cursorTextColorButton = QtGui.QPushButton(self.cursorTextGroupBox)
        self.cursorTextColorButton.setAutoDefault(False)
        self.cursorTextColorButton.setObjectName("cursorTextColorButton")
        self.hboxlayout11.addWidget(self.cursorTextColorButton)
        self.gridlayout10.addLayout(self.hboxlayout11,1,1,1,1)
        self.hboxlayout9.addLayout(self.gridlayout10)

        spacerItem6 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout9.addItem(spacerItem6)
        self.vboxlayout4.addWidget(self.cursorTextGroupBox)

        self.vboxlayout6 = QtGui.QVBoxLayout()
        self.vboxlayout6.setMargin(0)
        self.vboxlayout6.setSpacing(0)
        self.vboxlayout6.setObjectName("vboxlayout6")

        self.display_confirmation_corner_checkbox = QtGui.QCheckBox(self.GraphicsArea)
        self.display_confirmation_corner_checkbox.setChecked(False)
        self.display_confirmation_corner_checkbox.setObjectName("display_confirmation_corner_checkbox")
        self.vboxlayout6.addWidget(self.display_confirmation_corner_checkbox)

        self.enable_antialiasing_checkbox = QtGui.QCheckBox(self.GraphicsArea)
        self.enable_antialiasing_checkbox.setObjectName("enable_antialiasing_checkbox")
        self.vboxlayout6.addWidget(self.enable_antialiasing_checkbox)
        self.vboxlayout4.addLayout(self.vboxlayout6)

        spacerItem7 = QtGui.QSpacerItem(223,111,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout4.addItem(spacerItem7)
        self.gridlayout7.addLayout(self.vboxlayout4,0,0,1,1)

        spacerItem8 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout7.addItem(spacerItem8,0,1,1,1)
        self.prefsStackedWidget.addWidget(self.GraphicsArea)

        self.ZoomPanandRotate = QtGui.QWidget()
        self.ZoomPanandRotate.setObjectName("ZoomPanandRotate")

        self.gridlayout11 = QtGui.QGridLayout(self.ZoomPanandRotate)
        self.gridlayout11.setMargin(9)
        self.gridlayout11.setSpacing(6)
        self.gridlayout11.setObjectName("gridlayout11")

        spacerItem9 = QtGui.QSpacerItem(231,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout11.addItem(spacerItem9,0,1,1,1)

        self.vboxlayout7 = QtGui.QVBoxLayout()
        self.vboxlayout7.setMargin(0)
        self.vboxlayout7.setSpacing(4)
        self.vboxlayout7.setObjectName("vboxlayout7")

        self.groupBox8 = QtGui.QGroupBox(self.ZoomPanandRotate)
        self.groupBox8.setObjectName("groupBox8")

        self.gridlayout12 = QtGui.QGridLayout(self.groupBox8)
        self.gridlayout12.setMargin(9)
        self.gridlayout12.setSpacing(6)
        self.gridlayout12.setObjectName("gridlayout12")

        self.hboxlayout12 = QtGui.QHBoxLayout()
        self.hboxlayout12.setMargin(0)
        self.hboxlayout12.setSpacing(4)
        self.hboxlayout12.setObjectName("hboxlayout12")

        self.vboxlayout8 = QtGui.QVBoxLayout()
        self.vboxlayout8.setMargin(0)
        self.vboxlayout8.setSpacing(0)
        self.vboxlayout8.setObjectName("vboxlayout8")

        spacerItem10 = QtGui.QSpacerItem(101,20,QtGui.QSizePolicy.Fixed,QtGui.QSizePolicy.Minimum)
        self.vboxlayout8.addItem(spacerItem10)

        self.textLabel1_5 = QtGui.QLabel(self.groupBox8)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.textLabel1_5.sizePolicy().hasHeightForWidth())
        self.textLabel1_5.setSizePolicy(sizePolicy)
        self.textLabel1_5.setScaledContents(False)
        self.textLabel1_5.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel1_5.setObjectName("textLabel1_5")
        self.vboxlayout8.addWidget(self.textLabel1_5)

        spacerItem11 = QtGui.QSpacerItem(101,20,QtGui.QSizePolicy.Fixed,QtGui.QSizePolicy.Minimum)
        self.vboxlayout8.addItem(spacerItem11)

        self.rotationSensitivity_txtlbl = QtGui.QLabel(self.groupBox8)
        self.rotationSensitivity_txtlbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.rotationSensitivity_txtlbl.setObjectName("rotationSensitivity_txtlbl")
        self.vboxlayout8.addWidget(self.rotationSensitivity_txtlbl)
        self.hboxlayout12.addLayout(self.vboxlayout8)

        self.gridlayout13 = QtGui.QGridLayout()
        self.gridlayout13.setMargin(0)
        self.gridlayout13.setSpacing(6)
        self.gridlayout13.setObjectName("gridlayout13")

        spacerItem12 = QtGui.QSpacerItem(87,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout13.addItem(spacerItem12,2,1,1,1)

        self.resetAnimationSpeed_btn = QtGui.QToolButton(self.groupBox8)
        self.resetAnimationSpeed_btn.setEnabled(False)
        self.resetAnimationSpeed_btn.setIcon(QtGui.QIcon("../../../../../:icons/UserPrefsDialog_image0"))
        self.resetAnimationSpeed_btn.setObjectName("resetAnimationSpeed_btn")
        self.gridlayout13.addWidget(self.resetAnimationSpeed_btn,1,3,1,1)

        spacerItem13 = QtGui.QSpacerItem(23,16,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout13.addItem(spacerItem13,2,3,1,1)

        spacerItem14 = QtGui.QSpacerItem(23,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout13.addItem(spacerItem14,0,3,1,1)

        self.textLabel3_4 = QtGui.QLabel(self.groupBox8)
        self.textLabel3_4.setObjectName("textLabel3_4")
        self.gridlayout13.addWidget(self.textLabel3_4,0,2,1,1)

        self.mouseSpeedDuringRotation_slider = QtGui.QSlider(self.groupBox8)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.mouseSpeedDuringRotation_slider.sizePolicy().hasHeightForWidth())
        self.mouseSpeedDuringRotation_slider.setSizePolicy(sizePolicy)
        self.mouseSpeedDuringRotation_slider.setMinimumSize(QtCore.QSize(125,0))
        self.mouseSpeedDuringRotation_slider.setMinimum(30)
        self.mouseSpeedDuringRotation_slider.setMaximum(100)
        self.mouseSpeedDuringRotation_slider.setProperty("value",QtCore.QVariant(50))
        self.mouseSpeedDuringRotation_slider.setOrientation(QtCore.Qt.Horizontal)
        self.mouseSpeedDuringRotation_slider.setObjectName("mouseSpeedDuringRotation_slider")
        self.gridlayout13.addWidget(self.mouseSpeedDuringRotation_slider,3,0,1,3)

        self.textLabel3_4_2 = QtGui.QLabel(self.groupBox8)
        self.textLabel3_4_2.setObjectName("textLabel3_4_2")
        self.gridlayout13.addWidget(self.textLabel3_4_2,2,2,1,1)

        spacerItem15 = QtGui.QSpacerItem(88,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout13.addItem(spacerItem15,0,1,1,1)

        self.textLabel2_3_2 = QtGui.QLabel(self.groupBox8)
        self.textLabel2_3_2.setObjectName("textLabel2_3_2")
        self.gridlayout13.addWidget(self.textLabel2_3_2,2,0,1,1)

        self.animation_speed_slider = QtGui.QSlider(self.groupBox8)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.animation_speed_slider.sizePolicy().hasHeightForWidth())
        self.animation_speed_slider.setSizePolicy(sizePolicy)
        self.animation_speed_slider.setMinimumSize(QtCore.QSize(125,0))
        self.animation_speed_slider.setMinimum(-300)
        self.animation_speed_slider.setMaximum(-25)
        self.animation_speed_slider.setOrientation(QtCore.Qt.Horizontal)
        self.animation_speed_slider.setObjectName("animation_speed_slider")
        self.gridlayout13.addWidget(self.animation_speed_slider,1,0,1,3)

        self.resetMouseSpeedDuringRotation_btn = QtGui.QToolButton(self.groupBox8)
        self.resetMouseSpeedDuringRotation_btn.setEnabled(False)
        self.resetMouseSpeedDuringRotation_btn.setIcon(QtGui.QIcon("../../../../../:icons/UserPrefsDialog_image0"))
        self.resetMouseSpeedDuringRotation_btn.setObjectName("resetMouseSpeedDuringRotation_btn")
        self.gridlayout13.addWidget(self.resetMouseSpeedDuringRotation_btn,3,3,1,1)

        self.textLabel2_3 = QtGui.QLabel(self.groupBox8)
        self.textLabel2_3.setObjectName("textLabel2_3")
        self.gridlayout13.addWidget(self.textLabel2_3,0,0,1,1)
        self.hboxlayout12.addLayout(self.gridlayout13)
        self.gridlayout12.addLayout(self.hboxlayout12,1,0,1,1)

        self.hboxlayout13 = QtGui.QHBoxLayout()
        self.hboxlayout13.setMargin(0)
        self.hboxlayout13.setSpacing(0)
        self.hboxlayout13.setObjectName("hboxlayout13")

        self.animate_views_checkbox = QtGui.QCheckBox(self.groupBox8)
        self.animate_views_checkbox.setChecked(True)
        self.animate_views_checkbox.setObjectName("animate_views_checkbox")
        self.hboxlayout13.addWidget(self.animate_views_checkbox)

        spacerItem16 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout13.addItem(spacerItem16)
        self.gridlayout12.addLayout(self.hboxlayout13,0,0,1,1)
        self.vboxlayout7.addWidget(self.groupBox8)

        self.groupBox_4 = QtGui.QGroupBox(self.ZoomPanandRotate)
        self.groupBox_4.setObjectName("groupBox_4")

        self.gridlayout14 = QtGui.QGridLayout(self.groupBox_4)
        self.gridlayout14.setMargin(9)
        self.gridlayout14.setSpacing(6)
        self.gridlayout14.setObjectName("gridlayout14")

        self.hboxlayout14 = QtGui.QHBoxLayout()
        self.hboxlayout14.setMargin(0)
        self.hboxlayout14.setSpacing(4)
        self.hboxlayout14.setObjectName("hboxlayout14")

        self.vboxlayout9 = QtGui.QVBoxLayout()
        self.vboxlayout9.setMargin(0)
        self.vboxlayout9.setSpacing(4)
        self.vboxlayout9.setObjectName("vboxlayout9")

        self.label_19 = QtGui.QLabel(self.groupBox_4)
        self.label_19.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_19.setObjectName("label_19")
        self.vboxlayout9.addWidget(self.label_19)

        self.label_17 = QtGui.QLabel(self.groupBox_4)
        self.label_17.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_17.setObjectName("label_17")
        self.vboxlayout9.addWidget(self.label_17)

        self.label_18 = QtGui.QLabel(self.groupBox_4)
        self.label_18.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_18.setObjectName("label_18")
        self.vboxlayout9.addWidget(self.label_18)
        self.hboxlayout14.addLayout(self.vboxlayout9)

        self.vboxlayout10 = QtGui.QVBoxLayout()
        self.vboxlayout10.setMargin(0)
        self.vboxlayout10.setSpacing(4)
        self.vboxlayout10.setObjectName("vboxlayout10")

        self.mouseWheelDirectionComboBox = QtGui.QComboBox(self.groupBox_4)
        self.mouseWheelDirectionComboBox.setObjectName("mouseWheelDirectionComboBox")
        self.vboxlayout10.addWidget(self.mouseWheelDirectionComboBox)

        self.mouseWheelZoomInPointComboBox = QtGui.QComboBox(self.groupBox_4)
        self.mouseWheelZoomInPointComboBox.setObjectName("mouseWheelZoomInPointComboBox")
        self.vboxlayout10.addWidget(self.mouseWheelZoomInPointComboBox)

        self.mouseWheelZoomOutPointComboBox = QtGui.QComboBox(self.groupBox_4)
        self.mouseWheelZoomOutPointComboBox.setObjectName("mouseWheelZoomOutPointComboBox")
        self.vboxlayout10.addWidget(self.mouseWheelZoomOutPointComboBox)
        self.hboxlayout14.addLayout(self.vboxlayout10)
        self.gridlayout14.addLayout(self.hboxlayout14,0,0,1,1)

        self.hboxlayout15 = QtGui.QHBoxLayout()
        self.hboxlayout15.setMargin(0)
        self.hboxlayout15.setSpacing(4)
        self.hboxlayout15.setObjectName("hboxlayout15")

        self.label_20 = QtGui.QLabel(self.groupBox_4)
        self.label_20.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_20.setObjectName("label_20")
        self.hboxlayout15.addWidget(self.label_20)

        self.hhTimeoutIntervalDoubleSpinBox = QtGui.QDoubleSpinBox(self.groupBox_4)
        self.hhTimeoutIntervalDoubleSpinBox.setDecimals(1)
        self.hhTimeoutIntervalDoubleSpinBox.setMaximum(1.0)
        self.hhTimeoutIntervalDoubleSpinBox.setSingleStep(0.1)
        self.hhTimeoutIntervalDoubleSpinBox.setProperty("value",QtCore.QVariant(0.5))
        self.hhTimeoutIntervalDoubleSpinBox.setObjectName("hhTimeoutIntervalDoubleSpinBox")
        self.hboxlayout15.addWidget(self.hhTimeoutIntervalDoubleSpinBox)
        self.gridlayout14.addLayout(self.hboxlayout15,1,0,1,1)
        self.vboxlayout7.addWidget(self.groupBox_4)

        self.panSettingsGroupBox = QtGui.QGroupBox(self.ZoomPanandRotate)
        self.panSettingsGroupBox.setObjectName("panSettingsGroupBox")

        self.gridlayout15 = QtGui.QGridLayout(self.panSettingsGroupBox)
        self.gridlayout15.setMargin(9)
        self.gridlayout15.setSpacing(6)
        self.gridlayout15.setObjectName("gridlayout15")

        self.panArrowKeysDirectionComboBox = QtGui.QComboBox(self.panSettingsGroupBox)
        self.panArrowKeysDirectionComboBox.setObjectName("panArrowKeysDirectionComboBox")
        self.gridlayout15.addWidget(self.panArrowKeysDirectionComboBox,0,1,1,1)

        self.label_28 = QtGui.QLabel(self.panSettingsGroupBox)
        self.label_28.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_28.setObjectName("label_28")
        self.gridlayout15.addWidget(self.label_28,0,0,1,1)
        self.vboxlayout7.addWidget(self.panSettingsGroupBox)

        spacerItem17 = QtGui.QSpacerItem(20,161,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout7.addItem(spacerItem17)
        self.gridlayout11.addLayout(self.vboxlayout7,0,0,1,1)
        self.prefsStackedWidget.addWidget(self.ZoomPanandRotate)

        self.Rulers = QtGui.QWidget()
        self.Rulers.setObjectName("Rulers")

        self.gridlayout16 = QtGui.QGridLayout(self.Rulers)
        self.gridlayout16.setMargin(9)
        self.gridlayout16.setSpacing(6)
        self.gridlayout16.setObjectName("gridlayout16")

        spacerItem18 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout16.addItem(spacerItem18,0,1,1,1)

        self.vboxlayout11 = QtGui.QVBoxLayout()
        self.vboxlayout11.setMargin(0)
        self.vboxlayout11.setSpacing(6)
        self.vboxlayout11.setObjectName("vboxlayout11")

        self.rulersGroupBox = QtGui.QGroupBox(self.Rulers)
        self.rulersGroupBox.setObjectName("rulersGroupBox")

        self.gridlayout17 = QtGui.QGridLayout(self.rulersGroupBox)
        self.gridlayout17.setMargin(9)
        self.gridlayout17.setSpacing(6)
        self.gridlayout17.setObjectName("gridlayout17")

        self.label_5 = QtGui.QLabel(self.rulersGroupBox)
        self.label_5.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_5.setObjectName("label_5")
        self.gridlayout17.addWidget(self.label_5,3,0,1,1)

        self.textLabel3_2_4 = QtGui.QLabel(self.rulersGroupBox)
        self.textLabel3_2_4.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel3_2_4.setObjectName("textLabel3_2_4")
        self.gridlayout17.addWidget(self.textLabel3_2_4,2,0,1,1)

        self.label_10 = QtGui.QLabel(self.rulersGroupBox)
        self.label_10.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_10.setObjectName("label_10")
        self.gridlayout17.addWidget(self.label_10,1,0,1,1)

        self.rulerPositionComboBox = QtGui.QComboBox(self.rulersGroupBox)
        self.rulerPositionComboBox.setObjectName("rulerPositionComboBox")
        self.gridlayout17.addWidget(self.rulerPositionComboBox,1,1,1,1)

        self.hboxlayout16 = QtGui.QHBoxLayout()
        self.hboxlayout16.setMargin(0)
        self.hboxlayout16.setSpacing(4)
        self.hboxlayout16.setObjectName("hboxlayout16")

        self.ruler_color_frame = QtGui.QFrame(self.rulersGroupBox)
        self.ruler_color_frame.setMinimumSize(QtCore.QSize(23,23))
        self.ruler_color_frame.setMaximumSize(QtCore.QSize(23,23))
        self.ruler_color_frame.setFrameShape(QtGui.QFrame.Box)
        self.ruler_color_frame.setFrameShadow(QtGui.QFrame.Plain)
        self.ruler_color_frame.setObjectName("ruler_color_frame")
        self.hboxlayout16.addWidget(self.ruler_color_frame)

        self.ruler_color_btn = QtGui.QPushButton(self.rulersGroupBox)
        self.ruler_color_btn.setAutoDefault(False)
        self.ruler_color_btn.setObjectName("ruler_color_btn")
        self.hboxlayout16.addWidget(self.ruler_color_btn)
        self.gridlayout17.addLayout(self.hboxlayout16,2,1,1,1)

        self.rulerOpacitySpinBox = QtGui.QSpinBox(self.rulersGroupBox)
        self.rulerOpacitySpinBox.setMaximum(100)
        self.rulerOpacitySpinBox.setProperty("value",QtCore.QVariant(70))
        self.rulerOpacitySpinBox.setObjectName("rulerOpacitySpinBox")
        self.gridlayout17.addWidget(self.rulerOpacitySpinBox,3,1,1,1)

        self.rulerDisplayComboBox = QtGui.QComboBox(self.rulersGroupBox)
        self.rulerDisplayComboBox.setObjectName("rulerDisplayComboBox")
        self.gridlayout17.addWidget(self.rulerDisplayComboBox,0,1,1,1)

        self.label_12 = QtGui.QLabel(self.rulersGroupBox)
        self.label_12.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_12.setObjectName("label_12")
        self.gridlayout17.addWidget(self.label_12,0,0,1,1)

        self.showRulersInPerspectiveViewCheckBox = QtGui.QCheckBox(self.rulersGroupBox)
        self.showRulersInPerspectiveViewCheckBox.setObjectName("showRulersInPerspectiveViewCheckBox")
        self.gridlayout17.addWidget(self.showRulersInPerspectiveViewCheckBox,4,0,1,2)
        self.vboxlayout11.addWidget(self.rulersGroupBox)

        spacerItem19 = QtGui.QSpacerItem(20,40,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout11.addItem(spacerItem19)
        self.gridlayout16.addLayout(self.vboxlayout11,0,0,1,1)
        self.prefsStackedWidget.addWidget(self.Rulers)

        self.Atoms = QtGui.QWidget()
        self.Atoms.setObjectName("Atoms")

        self.gridlayout18 = QtGui.QGridLayout(self.Atoms)
        self.gridlayout18.setMargin(9)
        self.gridlayout18.setSpacing(6)
        self.gridlayout18.setObjectName("gridlayout18")

        spacerItem20 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout18.addItem(spacerItem20,0,1,1,1)

        self.vboxlayout12 = QtGui.QVBoxLayout()
        self.vboxlayout12.setMargin(0)
        self.vboxlayout12.setSpacing(6)
        self.vboxlayout12.setObjectName("vboxlayout12")

        self.atom_colors_grpbox = QtGui.QGroupBox(self.Atoms)
        self.atom_colors_grpbox.setObjectName("atom_colors_grpbox")

        self.vboxlayout13 = QtGui.QVBoxLayout(self.atom_colors_grpbox)
        self.vboxlayout13.setMargin(9)
        self.vboxlayout13.setSpacing(2)
        self.vboxlayout13.setObjectName("vboxlayout13")

        self.hboxlayout17 = QtGui.QHBoxLayout()
        self.hboxlayout17.setMargin(0)
        self.hboxlayout17.setSpacing(6)
        self.hboxlayout17.setObjectName("hboxlayout17")

        spacerItem21 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout17.addItem(spacerItem21)

        self.change_element_colors_btn = QtGui.QPushButton(self.atom_colors_grpbox)
        self.change_element_colors_btn.setAutoDefault(False)
        self.change_element_colors_btn.setObjectName("change_element_colors_btn")
        self.hboxlayout17.addWidget(self.change_element_colors_btn)
        self.vboxlayout13.addLayout(self.hboxlayout17)

        self.groupBox13 = QtGui.QGroupBox(self.atom_colors_grpbox)
        self.groupBox13.setObjectName("groupBox13")

        self.vboxlayout14 = QtGui.QVBoxLayout(self.groupBox13)
        self.vboxlayout14.setMargin(9)
        self.vboxlayout14.setSpacing(2)
        self.vboxlayout14.setObjectName("vboxlayout14")

        self.gridlayout19 = QtGui.QGridLayout()
        self.gridlayout19.setMargin(0)
        self.gridlayout19.setSpacing(6)
        self.gridlayout19.setObjectName("gridlayout19")

        self.hboxlayout18 = QtGui.QHBoxLayout()
        self.hboxlayout18.setMargin(0)
        self.hboxlayout18.setSpacing(4)
        self.hboxlayout18.setObjectName("hboxlayout18")

        self.atom_hilite_color_frame = QtGui.QFrame(self.groupBox13)
        self.atom_hilite_color_frame.setMinimumSize(QtCore.QSize(23,23))
        self.atom_hilite_color_frame.setMaximumSize(QtCore.QSize(23,23))
        self.atom_hilite_color_frame.setFrameShape(QtGui.QFrame.Box)
        self.atom_hilite_color_frame.setFrameShadow(QtGui.QFrame.Plain)
        self.atom_hilite_color_frame.setObjectName("atom_hilite_color_frame")
        self.hboxlayout18.addWidget(self.atom_hilite_color_frame)

        self.atom_hilite_color_btn = QtGui.QPushButton(self.groupBox13)
        self.atom_hilite_color_btn.setAutoDefault(False)
        self.atom_hilite_color_btn.setObjectName("atom_hilite_color_btn")
        self.hboxlayout18.addWidget(self.atom_hilite_color_btn)
        self.gridlayout19.addLayout(self.hboxlayout18,0,1,1,1)

        self.hotspot_lbl_2 = QtGui.QLabel(self.groupBox13)
        self.hotspot_lbl_2.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.hotspot_lbl_2.setObjectName("hotspot_lbl_2")
        self.gridlayout19.addWidget(self.hotspot_lbl_2,1,0,1,1)

        self.hboxlayout19 = QtGui.QHBoxLayout()
        self.hboxlayout19.setMargin(0)
        self.hboxlayout19.setSpacing(4)
        self.hboxlayout19.setObjectName("hboxlayout19")

        self.hotspot_color_frame = QtGui.QFrame(self.groupBox13)
        self.hotspot_color_frame.setMinimumSize(QtCore.QSize(23,23))
        self.hotspot_color_frame.setMaximumSize(QtCore.QSize(23,23))
        self.hotspot_color_frame.setFrameShape(QtGui.QFrame.Box)
        self.hotspot_color_frame.setFrameShadow(QtGui.QFrame.Plain)
        self.hotspot_color_frame.setObjectName("hotspot_color_frame")
        self.hboxlayout19.addWidget(self.hotspot_color_frame)

        self.hotspot_color_btn = QtGui.QPushButton(self.groupBox13)
        self.hotspot_color_btn.setAutoDefault(False)
        self.hotspot_color_btn.setObjectName("hotspot_color_btn")
        self.hboxlayout19.addWidget(self.hotspot_color_btn)
        self.gridlayout19.addLayout(self.hboxlayout19,2,1,1,1)

        self.textLabel3_2_3 = QtGui.QLabel(self.groupBox13)
        self.textLabel3_2_3.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel3_2_3.setObjectName("textLabel3_2_3")
        self.gridlayout19.addWidget(self.textLabel3_2_3,0,0,1,1)

        self.hboxlayout20 = QtGui.QHBoxLayout()
        self.hboxlayout20.setMargin(0)
        self.hboxlayout20.setSpacing(4)
        self.hboxlayout20.setObjectName("hboxlayout20")

        self.bondpoint_hilite_color_frame = QtGui.QFrame(self.groupBox13)
        self.bondpoint_hilite_color_frame.setMinimumSize(QtCore.QSize(23,23))
        self.bondpoint_hilite_color_frame.setMaximumSize(QtCore.QSize(23,23))
        self.bondpoint_hilite_color_frame.setFrameShape(QtGui.QFrame.Box)
        self.bondpoint_hilite_color_frame.setFrameShadow(QtGui.QFrame.Plain)
        self.bondpoint_hilite_color_frame.setObjectName("bondpoint_hilite_color_frame")
        self.hboxlayout20.addWidget(self.bondpoint_hilite_color_frame)

        self.bondpoint_hilite_color_btn = QtGui.QPushButton(self.groupBox13)
        self.bondpoint_hilite_color_btn.setAutoDefault(False)
        self.bondpoint_hilite_color_btn.setDefault(False)
        self.bondpoint_hilite_color_btn.setObjectName("bondpoint_hilite_color_btn")
        self.hboxlayout20.addWidget(self.bondpoint_hilite_color_btn)
        self.gridlayout19.addLayout(self.hboxlayout20,1,1,1,1)

        self.hotspot_lbl = QtGui.QLabel(self.groupBox13)
        self.hotspot_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.hotspot_lbl.setObjectName("hotspot_lbl")
        self.gridlayout19.addWidget(self.hotspot_lbl,2,0,1,1)
        self.vboxlayout14.addLayout(self.gridlayout19)

        self.hboxlayout21 = QtGui.QHBoxLayout()
        self.hboxlayout21.setMargin(0)
        self.hboxlayout21.setSpacing(6)
        self.hboxlayout21.setObjectName("hboxlayout21")

        spacerItem22 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout21.addItem(spacerItem22)

        self.reset_atom_colors_btn = QtGui.QPushButton(self.groupBox13)
        self.reset_atom_colors_btn.setAutoDefault(False)
        self.reset_atom_colors_btn.setObjectName("reset_atom_colors_btn")
        self.hboxlayout21.addWidget(self.reset_atom_colors_btn)
        self.vboxlayout14.addLayout(self.hboxlayout21)
        self.vboxlayout13.addWidget(self.groupBox13)
        self.vboxlayout12.addWidget(self.atom_colors_grpbox)

        self.hboxlayout22 = QtGui.QHBoxLayout()
        self.hboxlayout22.setMargin(0)
        self.hboxlayout22.setSpacing(6)
        self.hboxlayout22.setObjectName("hboxlayout22")

        self.gridlayout20 = QtGui.QGridLayout()
        self.gridlayout20.setMargin(0)
        self.gridlayout20.setSpacing(6)
        self.gridlayout20.setObjectName("gridlayout20")

        self.vboxlayout15 = QtGui.QVBoxLayout()
        self.vboxlayout15.setMargin(0)
        self.vboxlayout15.setSpacing(2)
        self.vboxlayout15.setObjectName("vboxlayout15")

        self.textLabel1_3_2 = QtGui.QLabel(self.Atoms)
        self.textLabel1_3_2.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel1_3_2.setObjectName("textLabel1_3_2")
        self.vboxlayout15.addWidget(self.textLabel1_3_2)

        self.textLabel1_3_2_2 = QtGui.QLabel(self.Atoms)
        self.textLabel1_3_2_2.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel1_3_2_2.setObjectName("textLabel1_3_2_2")
        self.vboxlayout15.addWidget(self.textLabel1_3_2_2)
        self.gridlayout20.addLayout(self.vboxlayout15,1,0,1,1)

        self.level_of_detail_combox = QtGui.QComboBox(self.Atoms)
        self.level_of_detail_combox.setObjectName("level_of_detail_combox")
        self.gridlayout20.addWidget(self.level_of_detail_combox,0,1,1,1)

        self.textLabel1_7 = QtGui.QLabel(self.Atoms)
        self.textLabel1_7.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel1_7.setObjectName("textLabel1_7")
        self.gridlayout20.addWidget(self.textLabel1_7,0,0,1,1)

        self.gridlayout21 = QtGui.QGridLayout()
        self.gridlayout21.setMargin(0)
        self.gridlayout21.setSpacing(6)
        self.gridlayout21.setObjectName("gridlayout21")

        self.reset_cpk_scale_factor_btn = QtGui.QToolButton(self.Atoms)
        self.reset_cpk_scale_factor_btn.setIcon(QtGui.QIcon("../../../../../:icons/UserPrefsDialog_image0"))
        self.reset_cpk_scale_factor_btn.setObjectName("reset_cpk_scale_factor_btn")
        self.gridlayout21.addWidget(self.reset_cpk_scale_factor_btn,1,1,1,1)

        self.reset_ballstick_scale_factor_btn = QtGui.QToolButton(self.Atoms)
        self.reset_ballstick_scale_factor_btn.setIcon(QtGui.QIcon("../../../../../:icons/UserPrefsDialog_image0"))
        self.reset_ballstick_scale_factor_btn.setObjectName("reset_ballstick_scale_factor_btn")
        self.gridlayout21.addWidget(self.reset_ballstick_scale_factor_btn,0,1,1,1)

        self.ballStickAtomScaleFactorSpinBox = QtGui.QSpinBox(self.Atoms)
        self.ballStickAtomScaleFactorSpinBox.setMaximum(125)
        self.ballStickAtomScaleFactorSpinBox.setMinimum(50)
        self.ballStickAtomScaleFactorSpinBox.setProperty("value",QtCore.QVariant(100))
        self.ballStickAtomScaleFactorSpinBox.setObjectName("ballStickAtomScaleFactorSpinBox")
        self.gridlayout21.addWidget(self.ballStickAtomScaleFactorSpinBox,0,0,1,1)

        self.cpkAtomScaleFactorDoubleSpinBox = QtGui.QDoubleSpinBox(self.Atoms)
        self.cpkAtomScaleFactorDoubleSpinBox.setDecimals(3)
        self.cpkAtomScaleFactorDoubleSpinBox.setMaximum(1.0)
        self.cpkAtomScaleFactorDoubleSpinBox.setMinimum(0.5)
        self.cpkAtomScaleFactorDoubleSpinBox.setSingleStep(0.005)
        self.cpkAtomScaleFactorDoubleSpinBox.setProperty("value",QtCore.QVariant(0.775))
        self.cpkAtomScaleFactorDoubleSpinBox.setObjectName("cpkAtomScaleFactorDoubleSpinBox")
        self.gridlayout21.addWidget(self.cpkAtomScaleFactorDoubleSpinBox,1,0,1,1)
        self.gridlayout20.addLayout(self.gridlayout21,1,1,1,1)
        self.hboxlayout22.addLayout(self.gridlayout20)

        spacerItem23 = QtGui.QSpacerItem(16,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout22.addItem(spacerItem23)
        self.vboxlayout12.addLayout(self.hboxlayout22)

        self.overlappingAtomIndicatorsCheckBox = QtGui.QCheckBox(self.Atoms)
        self.overlappingAtomIndicatorsCheckBox.setObjectName("overlappingAtomIndicatorsCheckBox")
        self.vboxlayout12.addWidget(self.overlappingAtomIndicatorsCheckBox)

        self.keepBondsTransmuteCheckBox = QtGui.QCheckBox(self.Atoms)
        self.keepBondsTransmuteCheckBox.setObjectName("keepBondsTransmuteCheckBox")
        self.vboxlayout12.addWidget(self.keepBondsTransmuteCheckBox)

        spacerItem24 = QtGui.QSpacerItem(20,30,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout12.addItem(spacerItem24)
        self.gridlayout18.addLayout(self.vboxlayout12,0,0,1,1)
        self.prefsStackedWidget.addWidget(self.Atoms)

        self.Bonds = QtGui.QWidget()
        self.Bonds.setObjectName("Bonds")

        self.gridlayout22 = QtGui.QGridLayout(self.Bonds)
        self.gridlayout22.setMargin(9)
        self.gridlayout22.setSpacing(6)
        self.gridlayout22.setObjectName("gridlayout22")

        spacerItem25 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout22.addItem(spacerItem25,0,1,1,1)

        self.vboxlayout16 = QtGui.QVBoxLayout()
        self.vboxlayout16.setMargin(0)
        self.vboxlayout16.setSpacing(6)
        self.vboxlayout16.setObjectName("vboxlayout16")

        self.groupBox4 = QtGui.QGroupBox(self.Bonds)
        self.groupBox4.setObjectName("groupBox4")

        self.vboxlayout17 = QtGui.QVBoxLayout(self.groupBox4)
        self.vboxlayout17.setMargin(9)
        self.vboxlayout17.setSpacing(4)
        self.vboxlayout17.setObjectName("vboxlayout17")

        self.gridlayout23 = QtGui.QGridLayout()
        self.gridlayout23.setMargin(0)
        self.gridlayout23.setSpacing(6)
        self.gridlayout23.setObjectName("gridlayout23")

        self.textLabel3_2 = QtGui.QLabel(self.groupBox4)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.textLabel3_2.sizePolicy().hasHeightForWidth())
        self.textLabel3_2.setSizePolicy(sizePolicy)
        self.textLabel3_2.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel3_2.setObjectName("textLabel3_2")
        self.gridlayout23.addWidget(self.textLabel3_2,0,0,1,1)

        self.hboxlayout23 = QtGui.QHBoxLayout()
        self.hboxlayout23.setMargin(0)
        self.hboxlayout23.setSpacing(4)
        self.hboxlayout23.setObjectName("hboxlayout23")

        self.bond_stretch_color_frame = QtGui.QFrame(self.groupBox4)
        self.bond_stretch_color_frame.setMinimumSize(QtCore.QSize(23,23))
        self.bond_stretch_color_frame.setMaximumSize(QtCore.QSize(23,23))
        self.bond_stretch_color_frame.setFrameShape(QtGui.QFrame.Box)
        self.bond_stretch_color_frame.setFrameShadow(QtGui.QFrame.Plain)
        self.bond_stretch_color_frame.setObjectName("bond_stretch_color_frame")
        self.hboxlayout23.addWidget(self.bond_stretch_color_frame)

        self.bond_stretch_color_btn = QtGui.QPushButton(self.groupBox4)
        self.bond_stretch_color_btn.setAutoDefault(False)
        self.bond_stretch_color_btn.setDefault(False)
        self.bond_stretch_color_btn.setObjectName("bond_stretch_color_btn")
        self.hboxlayout23.addWidget(self.bond_stretch_color_btn)
        self.gridlayout23.addLayout(self.hboxlayout23,2,1,1,1)

        self.hboxlayout24 = QtGui.QHBoxLayout()
        self.hboxlayout24.setMargin(0)
        self.hboxlayout24.setSpacing(4)
        self.hboxlayout24.setObjectName("hboxlayout24")

        self.bond_hilite_color_frame = QtGui.QFrame(self.groupBox4)
        self.bond_hilite_color_frame.setMinimumSize(QtCore.QSize(23,23))
        self.bond_hilite_color_frame.setMaximumSize(QtCore.QSize(23,23))
        self.bond_hilite_color_frame.setFrameShape(QtGui.QFrame.Box)
        self.bond_hilite_color_frame.setFrameShadow(QtGui.QFrame.Plain)
        self.bond_hilite_color_frame.setObjectName("bond_hilite_color_frame")
        self.hboxlayout24.addWidget(self.bond_hilite_color_frame)

        self.bond_hilite_color_btn = QtGui.QPushButton(self.groupBox4)
        self.bond_hilite_color_btn.setAutoDefault(False)
        self.bond_hilite_color_btn.setObjectName("bond_hilite_color_btn")
        self.hboxlayout24.addWidget(self.bond_hilite_color_btn)
        self.gridlayout23.addLayout(self.hboxlayout24,0,1,1,1)

        self.textLabel3_3 = QtGui.QLabel(self.groupBox4)
        self.textLabel3_3.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel3_3.setObjectName("textLabel3_3")
        self.gridlayout23.addWidget(self.textLabel3_3,3,0,1,1)

        self.hboxlayout25 = QtGui.QHBoxLayout()
        self.hboxlayout25.setMargin(0)
        self.hboxlayout25.setSpacing(4)
        self.hboxlayout25.setObjectName("hboxlayout25")

        self.ballstick_bondcolor_frame = QtGui.QFrame(self.groupBox4)
        self.ballstick_bondcolor_frame.setMinimumSize(QtCore.QSize(23,23))
        self.ballstick_bondcolor_frame.setMaximumSize(QtCore.QSize(23,23))
        self.ballstick_bondcolor_frame.setFrameShape(QtGui.QFrame.Box)
        self.ballstick_bondcolor_frame.setFrameShadow(QtGui.QFrame.Plain)
        self.ballstick_bondcolor_frame.setObjectName("ballstick_bondcolor_frame")
        self.hboxlayout25.addWidget(self.ballstick_bondcolor_frame)

        self.ballstick_bondcolor_btn = QtGui.QPushButton(self.groupBox4)
        self.ballstick_bondcolor_btn.setAutoDefault(False)
        self.ballstick_bondcolor_btn.setObjectName("ballstick_bondcolor_btn")
        self.hboxlayout25.addWidget(self.ballstick_bondcolor_btn)
        self.gridlayout23.addLayout(self.hboxlayout25,1,1,1,1)

        self.textLabel3 = QtGui.QLabel(self.groupBox4)
        self.textLabel3.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel3.setObjectName("textLabel3")
        self.gridlayout23.addWidget(self.textLabel3,1,0,1,1)

        self.textLabel3_2_2 = QtGui.QLabel(self.groupBox4)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.textLabel3_2_2.sizePolicy().hasHeightForWidth())
        self.textLabel3_2_2.setSizePolicy(sizePolicy)
        self.textLabel3_2_2.setMinimumSize(QtCore.QSize(0,0))
        self.textLabel3_2_2.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel3_2_2.setObjectName("textLabel3_2_2")
        self.gridlayout23.addWidget(self.textLabel3_2_2,2,0,1,1)

        self.hboxlayout26 = QtGui.QHBoxLayout()
        self.hboxlayout26.setMargin(0)
        self.hboxlayout26.setSpacing(4)
        self.hboxlayout26.setObjectName("hboxlayout26")

        self.bond_vane_color_frame = QtGui.QFrame(self.groupBox4)
        self.bond_vane_color_frame.setMinimumSize(QtCore.QSize(23,23))
        self.bond_vane_color_frame.setMaximumSize(QtCore.QSize(23,23))
        self.bond_vane_color_frame.setFrameShape(QtGui.QFrame.Box)
        self.bond_vane_color_frame.setFrameShadow(QtGui.QFrame.Plain)
        self.bond_vane_color_frame.setObjectName("bond_vane_color_frame")
        self.hboxlayout26.addWidget(self.bond_vane_color_frame)

        self.bond_vane_color_btn = QtGui.QPushButton(self.groupBox4)
        self.bond_vane_color_btn.setAutoDefault(False)
        self.bond_vane_color_btn.setObjectName("bond_vane_color_btn")
        self.hboxlayout26.addWidget(self.bond_vane_color_btn)
        self.gridlayout23.addLayout(self.hboxlayout26,3,1,1,1)
        self.vboxlayout17.addLayout(self.gridlayout23)

        self.hboxlayout27 = QtGui.QHBoxLayout()
        self.hboxlayout27.setMargin(0)
        self.hboxlayout27.setSpacing(6)
        self.hboxlayout27.setObjectName("hboxlayout27")

        spacerItem26 = QtGui.QSpacerItem(20,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout27.addItem(spacerItem26)

        self.reset_bond_colors_btn = QtGui.QPushButton(self.groupBox4)
        self.reset_bond_colors_btn.setAutoDefault(False)
        self.reset_bond_colors_btn.setObjectName("reset_bond_colors_btn")
        self.hboxlayout27.addWidget(self.reset_bond_colors_btn)
        self.vboxlayout17.addLayout(self.hboxlayout27)
        self.vboxlayout16.addWidget(self.groupBox4)

        self.hboxlayout28 = QtGui.QHBoxLayout()
        self.hboxlayout28.setMargin(0)
        self.hboxlayout28.setSpacing(4)
        self.hboxlayout28.setObjectName("hboxlayout28")

        self.vboxlayout18 = QtGui.QVBoxLayout()
        self.vboxlayout18.setMargin(0)
        self.vboxlayout18.setSpacing(2)
        self.vboxlayout18.setObjectName("vboxlayout18")

        self.textLabel1_3 = QtGui.QLabel(self.Bonds)
        self.textLabel1_3.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel1_3.setObjectName("textLabel1_3")
        self.vboxlayout18.addWidget(self.textLabel1_3)

        self.textLabel1 = QtGui.QLabel(self.Bonds)
        self.textLabel1.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel1.setObjectName("textLabel1")
        self.vboxlayout18.addWidget(self.textLabel1)
        self.hboxlayout28.addLayout(self.vboxlayout18)

        self.vboxlayout19 = QtGui.QVBoxLayout()
        self.vboxlayout19.setMargin(0)
        self.vboxlayout19.setSpacing(2)
        self.vboxlayout19.setObjectName("vboxlayout19")

        self.cpk_cylinder_rad_spinbox = QtGui.QSpinBox(self.Bonds)
        self.cpk_cylinder_rad_spinbox.setMaximum(400)
        self.cpk_cylinder_rad_spinbox.setMinimum(50)
        self.cpk_cylinder_rad_spinbox.setProperty("value",QtCore.QVariant(100))
        self.cpk_cylinder_rad_spinbox.setObjectName("cpk_cylinder_rad_spinbox")
        self.vboxlayout19.addWidget(self.cpk_cylinder_rad_spinbox)

        self.bond_line_thickness_spinbox = QtGui.QSpinBox(self.Bonds)
        self.bond_line_thickness_spinbox.setMaximum(4)
        self.bond_line_thickness_spinbox.setMinimum(1)
        self.bond_line_thickness_spinbox.setObjectName("bond_line_thickness_spinbox")
        self.vboxlayout19.addWidget(self.bond_line_thickness_spinbox)
        self.hboxlayout28.addLayout(self.vboxlayout19)

        spacerItem27 = QtGui.QSpacerItem(16,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout28.addItem(spacerItem27)
        self.vboxlayout16.addLayout(self.hboxlayout28)

        self.high_order_bond_display_groupbox = QtGui.QGroupBox(self.Bonds)
        self.high_order_bond_display_groupbox.setObjectName("high_order_bond_display_groupbox")

        self.vboxlayout20 = QtGui.QVBoxLayout(self.high_order_bond_display_groupbox)
        self.vboxlayout20.setMargin(9)
        self.vboxlayout20.setSpacing(0)
        self.vboxlayout20.setObjectName("vboxlayout20")

        self.multCyl_radioButton = QtGui.QRadioButton(self.high_order_bond_display_groupbox)
        self.multCyl_radioButton.setChecked(True)
        self.multCyl_radioButton.setObjectName("multCyl_radioButton")
        self.vboxlayout20.addWidget(self.multCyl_radioButton)

        self.vanes_radioButton = QtGui.QRadioButton(self.high_order_bond_display_groupbox)
        self.vanes_radioButton.setObjectName("vanes_radioButton")
        self.vboxlayout20.addWidget(self.vanes_radioButton)

        self.ribbons_radioButton = QtGui.QRadioButton(self.high_order_bond_display_groupbox)
        self.ribbons_radioButton.setObjectName("ribbons_radioButton")
        self.vboxlayout20.addWidget(self.ribbons_radioButton)
        self.vboxlayout16.addWidget(self.high_order_bond_display_groupbox)

        self.vboxlayout21 = QtGui.QVBoxLayout()
        self.vboxlayout21.setMargin(0)
        self.vboxlayout21.setSpacing(0)
        self.vboxlayout21.setObjectName("vboxlayout21")

        self.show_bond_labels_checkbox = QtGui.QCheckBox(self.Bonds)
        self.show_bond_labels_checkbox.setObjectName("show_bond_labels_checkbox")
        self.vboxlayout21.addWidget(self.show_bond_labels_checkbox)

        self.show_valence_errors_checkbox = QtGui.QCheckBox(self.Bonds)
        self.show_valence_errors_checkbox.setObjectName("show_valence_errors_checkbox")
        self.vboxlayout21.addWidget(self.show_valence_errors_checkbox)

        self.showBondStretchIndicators_checkBox = QtGui.QCheckBox(self.Bonds)
        self.showBondStretchIndicators_checkBox.setObjectName("showBondStretchIndicators_checkBox")
        self.vboxlayout21.addWidget(self.showBondStretchIndicators_checkBox)
        self.vboxlayout16.addLayout(self.vboxlayout21)

        spacerItem28 = QtGui.QSpacerItem(20,144,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout16.addItem(spacerItem28)
        self.gridlayout22.addLayout(self.vboxlayout16,0,0,1,1)
        self.prefsStackedWidget.addWidget(self.Bonds)

        self.DNA = QtGui.QWidget()
        self.DNA.setObjectName("DNA")

        self.gridlayout24 = QtGui.QGridLayout(self.DNA)
        self.gridlayout24.setMargin(9)
        self.gridlayout24.setSpacing(6)
        self.gridlayout24.setObjectName("gridlayout24")

        self.vboxlayout22 = QtGui.QVBoxLayout()
        self.vboxlayout22.setMargin(0)
        self.vboxlayout22.setSpacing(6)
        self.vboxlayout22.setObjectName("vboxlayout22")

        self.groupBox = QtGui.QGroupBox(self.DNA)
        self.groupBox.setObjectName("groupBox")

        self.vboxlayout23 = QtGui.QVBoxLayout(self.groupBox)
        self.vboxlayout23.setMargin(9)
        self.vboxlayout23.setSpacing(2)
        self.vboxlayout23.setObjectName("vboxlayout23")

        self.gridlayout25 = QtGui.QGridLayout()
        self.gridlayout25.setMargin(0)
        self.gridlayout25.setSpacing(6)
        self.gridlayout25.setObjectName("gridlayout25")

        self.label_24 = QtGui.QLabel(self.groupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.label_24.sizePolicy().hasHeightForWidth())
        self.label_24.setSizePolicy(sizePolicy)
        self.label_24.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_24.setObjectName("label_24")
        self.gridlayout25.addWidget(self.label_24,4,0,1,1)

        self.label_23 = QtGui.QLabel(self.groupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.label_23.sizePolicy().hasHeightForWidth())
        self.label_23.setSizePolicy(sizePolicy)
        self.label_23.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_23.setObjectName("label_23")
        self.gridlayout25.addWidget(self.label_23,3,0,1,1)

        self.hboxlayout29 = QtGui.QHBoxLayout()
        self.hboxlayout29.setMargin(0)
        self.hboxlayout29.setSpacing(4)
        self.hboxlayout29.setObjectName("hboxlayout29")

        self.dnaDefaultStrand1ColorFrame = QtGui.QFrame(self.groupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.dnaDefaultStrand1ColorFrame.sizePolicy().hasHeightForWidth())
        self.dnaDefaultStrand1ColorFrame.setSizePolicy(sizePolicy)
        self.dnaDefaultStrand1ColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.dnaDefaultStrand1ColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.dnaDefaultStrand1ColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.dnaDefaultStrand1ColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.dnaDefaultStrand1ColorFrame.setObjectName("dnaDefaultStrand1ColorFrame")
        self.hboxlayout29.addWidget(self.dnaDefaultStrand1ColorFrame)

        self.dnaDefaultStrand1ColorPushButton = QtGui.QPushButton(self.groupBox)
        self.dnaDefaultStrand1ColorPushButton.setAutoDefault(False)
        self.dnaDefaultStrand1ColorPushButton.setObjectName("dnaDefaultStrand1ColorPushButton")
        self.hboxlayout29.addWidget(self.dnaDefaultStrand1ColorPushButton)
        self.gridlayout25.addLayout(self.hboxlayout29,3,1,1,1)

        self.dnaConformationComboBox = QtGui.QComboBox(self.groupBox)
        self.dnaConformationComboBox.setObjectName("dnaConformationComboBox")
        self.gridlayout25.addWidget(self.dnaConformationComboBox,0,1,1,1)

        self.hboxlayout30 = QtGui.QHBoxLayout()
        self.hboxlayout30.setMargin(0)
        self.hboxlayout30.setSpacing(4)
        self.hboxlayout30.setObjectName("hboxlayout30")

        self.dnaDefaultSegmentColorFrame = QtGui.QFrame(self.groupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.dnaDefaultSegmentColorFrame.sizePolicy().hasHeightForWidth())
        self.dnaDefaultSegmentColorFrame.setSizePolicy(sizePolicy)
        self.dnaDefaultSegmentColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.dnaDefaultSegmentColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.dnaDefaultSegmentColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.dnaDefaultSegmentColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.dnaDefaultSegmentColorFrame.setObjectName("dnaDefaultSegmentColorFrame")
        self.hboxlayout30.addWidget(self.dnaDefaultSegmentColorFrame)

        self.dnaDefaultSegmentColorPushButton = QtGui.QPushButton(self.groupBox)
        self.dnaDefaultSegmentColorPushButton.setAutoDefault(False)
        self.dnaDefaultSegmentColorPushButton.setObjectName("dnaDefaultSegmentColorPushButton")
        self.hboxlayout30.addWidget(self.dnaDefaultSegmentColorPushButton)
        self.gridlayout25.addLayout(self.hboxlayout30,5,1,1,1)

        self.label_6 = QtGui.QLabel(self.groupBox)
        self.label_6.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_6.setObjectName("label_6")
        self.gridlayout25.addWidget(self.label_6,2,0,1,1)

        self.dnaBasesPerTurnDoubleSpinBox = QtGui.QDoubleSpinBox(self.groupBox)
        self.dnaBasesPerTurnDoubleSpinBox.setDecimals(2)
        self.dnaBasesPerTurnDoubleSpinBox.setSingleStep(0.1)
        self.dnaBasesPerTurnDoubleSpinBox.setObjectName("dnaBasesPerTurnDoubleSpinBox")
        self.gridlayout25.addWidget(self.dnaBasesPerTurnDoubleSpinBox,1,1,1,1)

        self.label_11 = QtGui.QLabel(self.groupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.label_11.sizePolicy().hasHeightForWidth())
        self.label_11.setSizePolicy(sizePolicy)
        self.label_11.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_11.setObjectName("label_11")
        self.gridlayout25.addWidget(self.label_11,0,0,1,1)

        self.hboxlayout31 = QtGui.QHBoxLayout()
        self.hboxlayout31.setMargin(0)
        self.hboxlayout31.setSpacing(4)
        self.hboxlayout31.setObjectName("hboxlayout31")

        self.dnaDefaultStrand2ColorFrame = QtGui.QFrame(self.groupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.dnaDefaultStrand2ColorFrame.sizePolicy().hasHeightForWidth())
        self.dnaDefaultStrand2ColorFrame.setSizePolicy(sizePolicy)
        self.dnaDefaultStrand2ColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.dnaDefaultStrand2ColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.dnaDefaultStrand2ColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.dnaDefaultStrand2ColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.dnaDefaultStrand2ColorFrame.setObjectName("dnaDefaultStrand2ColorFrame")
        self.hboxlayout31.addWidget(self.dnaDefaultStrand2ColorFrame)

        self.dnaDefaultStrand2ColorPushButton = QtGui.QPushButton(self.groupBox)
        self.dnaDefaultStrand2ColorPushButton.setAutoDefault(False)
        self.dnaDefaultStrand2ColorPushButton.setObjectName("dnaDefaultStrand2ColorPushButton")
        self.hboxlayout31.addWidget(self.dnaDefaultStrand2ColorPushButton)
        self.gridlayout25.addLayout(self.hboxlayout31,4,1,1,1)

        self.label_4 = QtGui.QLabel(self.groupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.label_4.sizePolicy().hasHeightForWidth())
        self.label_4.setSizePolicy(sizePolicy)
        self.label_4.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_4.setObjectName("label_4")
        self.gridlayout25.addWidget(self.label_4,1,0,1,1)

        self.label_7 = QtGui.QLabel(self.groupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.label_7.sizePolicy().hasHeightForWidth())
        self.label_7.setSizePolicy(sizePolicy)
        self.label_7.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_7.setObjectName("label_7")
        self.gridlayout25.addWidget(self.label_7,5,0,1,1)

        self.dnaRiseDoubleSpinBox = QtGui.QDoubleSpinBox(self.groupBox)
        self.dnaRiseDoubleSpinBox.setDecimals(3)
        self.dnaRiseDoubleSpinBox.setSingleStep(0.01)
        self.dnaRiseDoubleSpinBox.setObjectName("dnaRiseDoubleSpinBox")
        self.gridlayout25.addWidget(self.dnaRiseDoubleSpinBox,2,1,1,1)
        self.vboxlayout23.addLayout(self.gridlayout25)

        self.hboxlayout32 = QtGui.QHBoxLayout()
        self.hboxlayout32.setMargin(0)
        self.hboxlayout32.setSpacing(4)
        self.hboxlayout32.setObjectName("hboxlayout32")

        spacerItem29 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout32.addItem(spacerItem29)

        self.dnaRestoreFactoryDefaultsPushButton = QtGui.QPushButton(self.groupBox)
        self.dnaRestoreFactoryDefaultsPushButton.setAutoDefault(False)
        self.dnaRestoreFactoryDefaultsPushButton.setObjectName("dnaRestoreFactoryDefaultsPushButton")
        self.hboxlayout32.addWidget(self.dnaRestoreFactoryDefaultsPushButton)
        self.vboxlayout23.addLayout(self.hboxlayout32)
        self.vboxlayout22.addWidget(self.groupBox)

        self.dna_reduced_model_options_grpbox = QtGui.QGroupBox(self.DNA)
        self.dna_reduced_model_options_grpbox.setObjectName("dna_reduced_model_options_grpbox")

        self.gridlayout26 = QtGui.QGridLayout(self.dna_reduced_model_options_grpbox)
        self.gridlayout26.setMargin(9)
        self.gridlayout26.setSpacing(6)
        self.gridlayout26.setObjectName("gridlayout26")

        self.hboxlayout33 = QtGui.QHBoxLayout()
        self.hboxlayout33.setMargin(0)
        self.hboxlayout33.setSpacing(2)
        self.hboxlayout33.setObjectName("hboxlayout33")

        self.strandFivePrimeArrowheadsCustomColorCheckBox = QtGui.QCheckBox(self.dna_reduced_model_options_grpbox)
        self.strandFivePrimeArrowheadsCustomColorCheckBox.setObjectName("strandFivePrimeArrowheadsCustomColorCheckBox")
        self.hboxlayout33.addWidget(self.strandFivePrimeArrowheadsCustomColorCheckBox)

        self.hboxlayout34 = QtGui.QHBoxLayout()
        self.hboxlayout34.setMargin(0)
        self.hboxlayout34.setSpacing(4)
        self.hboxlayout34.setObjectName("hboxlayout34")

        self.strandFivePrimeArrowheadsCustomColorFrame = QtGui.QFrame(self.dna_reduced_model_options_grpbox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.strandFivePrimeArrowheadsCustomColorFrame.sizePolicy().hasHeightForWidth())
        self.strandFivePrimeArrowheadsCustomColorFrame.setSizePolicy(sizePolicy)
        self.strandFivePrimeArrowheadsCustomColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.strandFivePrimeArrowheadsCustomColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.strandFivePrimeArrowheadsCustomColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.strandFivePrimeArrowheadsCustomColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.strandFivePrimeArrowheadsCustomColorFrame.setObjectName("strandFivePrimeArrowheadsCustomColorFrame")
        self.hboxlayout34.addWidget(self.strandFivePrimeArrowheadsCustomColorFrame)

        self.strandFivePrimeArrowheadsCustomColorPushButton = QtGui.QPushButton(self.dna_reduced_model_options_grpbox)
        self.strandFivePrimeArrowheadsCustomColorPushButton.setAutoDefault(False)
        self.strandFivePrimeArrowheadsCustomColorPushButton.setObjectName("strandFivePrimeArrowheadsCustomColorPushButton")
        self.hboxlayout34.addWidget(self.strandFivePrimeArrowheadsCustomColorPushButton)
        self.hboxlayout33.addLayout(self.hboxlayout34)
        self.gridlayout26.addLayout(self.hboxlayout33,4,0,1,1)

        self.hboxlayout35 = QtGui.QHBoxLayout()
        self.hboxlayout35.setMargin(0)
        self.hboxlayout35.setSpacing(2)
        self.hboxlayout35.setObjectName("hboxlayout35")

        self.strandThreePrimeArrowheadsCustomColorCheckBox = QtGui.QCheckBox(self.dna_reduced_model_options_grpbox)
        self.strandThreePrimeArrowheadsCustomColorCheckBox.setObjectName("strandThreePrimeArrowheadsCustomColorCheckBox")
        self.hboxlayout35.addWidget(self.strandThreePrimeArrowheadsCustomColorCheckBox)

        self.hboxlayout36 = QtGui.QHBoxLayout()
        self.hboxlayout36.setMargin(0)
        self.hboxlayout36.setSpacing(4)
        self.hboxlayout36.setObjectName("hboxlayout36")

        self.strandThreePrimeArrowheadsCustomColorFrame = QtGui.QFrame(self.dna_reduced_model_options_grpbox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.strandThreePrimeArrowheadsCustomColorFrame.sizePolicy().hasHeightForWidth())
        self.strandThreePrimeArrowheadsCustomColorFrame.setSizePolicy(sizePolicy)
        self.strandThreePrimeArrowheadsCustomColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.strandThreePrimeArrowheadsCustomColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.strandThreePrimeArrowheadsCustomColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.strandThreePrimeArrowheadsCustomColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.strandThreePrimeArrowheadsCustomColorFrame.setObjectName("strandThreePrimeArrowheadsCustomColorFrame")
        self.hboxlayout36.addWidget(self.strandThreePrimeArrowheadsCustomColorFrame)

        self.strandThreePrimeArrowheadsCustomColorPushButton = QtGui.QPushButton(self.dna_reduced_model_options_grpbox)
        self.strandThreePrimeArrowheadsCustomColorPushButton.setAutoDefault(False)
        self.strandThreePrimeArrowheadsCustomColorPushButton.setObjectName("strandThreePrimeArrowheadsCustomColorPushButton")
        self.hboxlayout36.addWidget(self.strandThreePrimeArrowheadsCustomColorPushButton)
        self.hboxlayout35.addLayout(self.hboxlayout36)
        self.gridlayout26.addLayout(self.hboxlayout35,3,0,1,1)

        self.arrowsOnFivePrimeEnds_checkBox = QtGui.QCheckBox(self.dna_reduced_model_options_grpbox)
        self.arrowsOnFivePrimeEnds_checkBox.setChecked(True)
        self.arrowsOnFivePrimeEnds_checkBox.setObjectName("arrowsOnFivePrimeEnds_checkBox")
        self.gridlayout26.addWidget(self.arrowsOnFivePrimeEnds_checkBox,2,0,1,1)

        self.arrowsOnThreePrimeEnds_checkBox = QtGui.QCheckBox(self.dna_reduced_model_options_grpbox)
        self.arrowsOnThreePrimeEnds_checkBox.setChecked(True)
        self.arrowsOnThreePrimeEnds_checkBox.setObjectName("arrowsOnThreePrimeEnds_checkBox")
        self.gridlayout26.addWidget(self.arrowsOnThreePrimeEnds_checkBox,1,0,1,1)

        self.arrowsOnBackBones_checkBox = QtGui.QCheckBox(self.dna_reduced_model_options_grpbox)
        self.arrowsOnBackBones_checkBox.setObjectName("arrowsOnBackBones_checkBox")
        self.gridlayout26.addWidget(self.arrowsOnBackBones_checkBox,0,0,1,1)
        self.vboxlayout22.addWidget(self.dna_reduced_model_options_grpbox)

        spacerItem30 = QtGui.QSpacerItem(20,421,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout22.addItem(spacerItem30)
        self.gridlayout24.addLayout(self.vboxlayout22,0,0,1,1)

        spacerItem31 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout24.addItem(spacerItem31,0,1,1,1)
        self.prefsStackedWidget.addWidget(self.DNA)

        self.MinorGrooveErrorIndicators = QtGui.QWidget()
        self.MinorGrooveErrorIndicators.setObjectName("MinorGrooveErrorIndicators")

        self.gridlayout27 = QtGui.QGridLayout(self.MinorGrooveErrorIndicators)
        self.gridlayout27.setMargin(9)
        self.gridlayout27.setSpacing(6)
        self.gridlayout27.setObjectName("gridlayout27")

        spacerItem32 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout27.addItem(spacerItem32,0,1,1,1)

        self.vboxlayout24 = QtGui.QVBoxLayout()
        self.vboxlayout24.setMargin(0)
        self.vboxlayout24.setSpacing(6)
        self.vboxlayout24.setObjectName("vboxlayout24")

        self.dnaDisplayMinorGrooveErrorGroupBox = QtGui.QGroupBox(self.MinorGrooveErrorIndicators)
        self.dnaDisplayMinorGrooveErrorGroupBox.setCheckable(True)
        self.dnaDisplayMinorGrooveErrorGroupBox.setChecked(False)
        self.dnaDisplayMinorGrooveErrorGroupBox.setObjectName("dnaDisplayMinorGrooveErrorGroupBox")

        self.gridlayout28 = QtGui.QGridLayout(self.dnaDisplayMinorGrooveErrorGroupBox)
        self.gridlayout28.setMargin(9)
        self.gridlayout28.setSpacing(6)
        self.gridlayout28.setObjectName("gridlayout28")

        self.vboxlayout25 = QtGui.QVBoxLayout()
        self.vboxlayout25.setMargin(0)
        self.vboxlayout25.setSpacing(2)
        self.vboxlayout25.setObjectName("vboxlayout25")

        self.label_15 = QtGui.QLabel(self.dnaDisplayMinorGrooveErrorGroupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.label_15.sizePolicy().hasHeightForWidth())
        self.label_15.setSizePolicy(sizePolicy)
        self.label_15.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_15.setObjectName("label_15")
        self.vboxlayout25.addWidget(self.label_15)

        self.label_16 = QtGui.QLabel(self.dnaDisplayMinorGrooveErrorGroupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.label_16.sizePolicy().hasHeightForWidth())
        self.label_16.setSizePolicy(sizePolicy)
        self.label_16.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_16.setObjectName("label_16")
        self.vboxlayout25.addWidget(self.label_16)

        self.bg1_color_lbl_3 = QtGui.QLabel(self.dnaDisplayMinorGrooveErrorGroupBox)
        self.bg1_color_lbl_3.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.bg1_color_lbl_3.setObjectName("bg1_color_lbl_3")
        self.vboxlayout25.addWidget(self.bg1_color_lbl_3)
        self.gridlayout28.addLayout(self.vboxlayout25,0,0,1,1)

        self.vboxlayout26 = QtGui.QVBoxLayout()
        self.vboxlayout26.setMargin(0)
        self.vboxlayout26.setSpacing(2)
        self.vboxlayout26.setObjectName("vboxlayout26")

        self.dnaMinGrooveAngleSpinBox = QtGui.QSpinBox(self.dnaDisplayMinorGrooveErrorGroupBox)
        self.dnaMinGrooveAngleSpinBox.setMaximum(179)
        self.dnaMinGrooveAngleSpinBox.setProperty("value",QtCore.QVariant(0))
        self.dnaMinGrooveAngleSpinBox.setObjectName("dnaMinGrooveAngleSpinBox")
        self.vboxlayout26.addWidget(self.dnaMinGrooveAngleSpinBox)

        self.dnaMaxGrooveAngleSpinBox = QtGui.QSpinBox(self.dnaDisplayMinorGrooveErrorGroupBox)
        self.dnaMaxGrooveAngleSpinBox.setMaximum(179)
        self.dnaMaxGrooveAngleSpinBox.setProperty("value",QtCore.QVariant(0))
        self.dnaMaxGrooveAngleSpinBox.setObjectName("dnaMaxGrooveAngleSpinBox")
        self.vboxlayout26.addWidget(self.dnaMaxGrooveAngleSpinBox)

        self.hboxlayout37 = QtGui.QHBoxLayout()
        self.hboxlayout37.setMargin(0)
        self.hboxlayout37.setSpacing(4)
        self.hboxlayout37.setObjectName("hboxlayout37")

        self.dnaGrooveIndicatorColorFrame = QtGui.QFrame(self.dnaDisplayMinorGrooveErrorGroupBox)
        self.dnaGrooveIndicatorColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.dnaGrooveIndicatorColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.dnaGrooveIndicatorColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.dnaGrooveIndicatorColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.dnaGrooveIndicatorColorFrame.setObjectName("dnaGrooveIndicatorColorFrame")
        self.hboxlayout37.addWidget(self.dnaGrooveIndicatorColorFrame)

        self.dnaGrooveIndicatorColorButton = QtGui.QPushButton(self.dnaDisplayMinorGrooveErrorGroupBox)
        self.dnaGrooveIndicatorColorButton.setAutoDefault(False)
        self.dnaGrooveIndicatorColorButton.setObjectName("dnaGrooveIndicatorColorButton")
        self.hboxlayout37.addWidget(self.dnaGrooveIndicatorColorButton)
        self.vboxlayout26.addLayout(self.hboxlayout37)
        self.gridlayout28.addLayout(self.vboxlayout26,0,1,1,1)

        self.hboxlayout38 = QtGui.QHBoxLayout()
        self.hboxlayout38.setMargin(0)
        self.hboxlayout38.setSpacing(4)
        self.hboxlayout38.setObjectName("hboxlayout38")

        spacerItem33 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout38.addItem(spacerItem33)

        self.dnaMinorGrooveRestoreFactoryDefaultsPushButton = QtGui.QPushButton(self.dnaDisplayMinorGrooveErrorGroupBox)
        self.dnaMinorGrooveRestoreFactoryDefaultsPushButton.setAutoDefault(False)
        self.dnaMinorGrooveRestoreFactoryDefaultsPushButton.setObjectName("dnaMinorGrooveRestoreFactoryDefaultsPushButton")
        self.hboxlayout38.addWidget(self.dnaMinorGrooveRestoreFactoryDefaultsPushButton)
        self.gridlayout28.addLayout(self.hboxlayout38,1,0,1,2)
        self.vboxlayout24.addWidget(self.dnaDisplayMinorGrooveErrorGroupBox)

        spacerItem34 = QtGui.QSpacerItem(20,40,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout24.addItem(spacerItem34)
        self.gridlayout27.addLayout(self.vboxlayout24,0,0,1,1)
        self.prefsStackedWidget.addWidget(self.MinorGrooveErrorIndicators)

        self.BaseOrientationIndicators = QtGui.QWidget()
        self.BaseOrientationIndicators.setObjectName("BaseOrientationIndicators")

        self.gridlayout29 = QtGui.QGridLayout(self.BaseOrientationIndicators)
        self.gridlayout29.setMargin(9)
        self.gridlayout29.setSpacing(6)
        self.gridlayout29.setObjectName("gridlayout29")

        spacerItem35 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout29.addItem(spacerItem35,0,1,1,1)

        self.vboxlayout27 = QtGui.QVBoxLayout()
        self.vboxlayout27.setMargin(0)
        self.vboxlayout27.setSpacing(4)
        self.vboxlayout27.setObjectName("vboxlayout27")

        self.dnaDisplayBaseOrientationIndicatorsGroupBox = QtGui.QGroupBox(self.BaseOrientationIndicators)
        self.dnaDisplayBaseOrientationIndicatorsGroupBox.setCheckable(True)
        self.dnaDisplayBaseOrientationIndicatorsGroupBox.setChecked(False)
        self.dnaDisplayBaseOrientationIndicatorsGroupBox.setObjectName("dnaDisplayBaseOrientationIndicatorsGroupBox")

        self.gridlayout30 = QtGui.QGridLayout(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.gridlayout30.setMargin(9)
        self.gridlayout30.setSpacing(6)
        self.gridlayout30.setObjectName("gridlayout30")

        self.dnaBaseIndicatorsPlaneNormalComboBox = QtGui.QComboBox(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.dnaBaseIndicatorsPlaneNormalComboBox.setObjectName("dnaBaseIndicatorsPlaneNormalComboBox")
        self.gridlayout30.addWidget(self.dnaBaseIndicatorsPlaneNormalComboBox,0,1,1,1)

        self.bg1_color_lbl_6 = QtGui.QLabel(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.bg1_color_lbl_6.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.bg1_color_lbl_6.setObjectName("bg1_color_lbl_6")
        self.gridlayout30.addWidget(self.bg1_color_lbl_6,2,0,1,1)

        self.hboxlayout39 = QtGui.QHBoxLayout()
        self.hboxlayout39.setMargin(0)
        self.hboxlayout39.setSpacing(4)
        self.hboxlayout39.setObjectName("hboxlayout39")

        self.dnaBaseOrientationIndicatorsInvColorFrame = QtGui.QFrame(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.dnaBaseOrientationIndicatorsInvColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.dnaBaseOrientationIndicatorsInvColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.dnaBaseOrientationIndicatorsInvColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.dnaBaseOrientationIndicatorsInvColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.dnaBaseOrientationIndicatorsInvColorFrame.setObjectName("dnaBaseOrientationIndicatorsInvColorFrame")
        self.hboxlayout39.addWidget(self.dnaBaseOrientationIndicatorsInvColorFrame)

        self.dnaChooseBaseOrientationIndicatorsInvColorButton = QtGui.QPushButton(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.dnaChooseBaseOrientationIndicatorsInvColorButton.setAutoDefault(False)
        self.dnaChooseBaseOrientationIndicatorsInvColorButton.setObjectName("dnaChooseBaseOrientationIndicatorsInvColorButton")
        self.hboxlayout39.addWidget(self.dnaChooseBaseOrientationIndicatorsInvColorButton)
        self.gridlayout30.addLayout(self.hboxlayout39,2,1,1,1)

        self.dnaBaseOrientationIndicatorsInverseCheckBox = QtGui.QCheckBox(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.dnaBaseOrientationIndicatorsInverseCheckBox.setObjectName("dnaBaseOrientationIndicatorsInverseCheckBox")
        self.gridlayout30.addWidget(self.dnaBaseOrientationIndicatorsInverseCheckBox,3,0,1,2)

        self.label_35 = QtGui.QLabel(self.dnaDisplayBaseOrientationIndicatorsGroupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.label_35.sizePolicy().hasHeightForWidth())
        self.label_35.setSizePolicy(sizePolicy)
        self.label_35.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_35.setObjectName("label_35")
        self.gridlayout30.addWidget(self.label_35,0,0,1,1)

        self.label_13 = QtGui.QLabel(self.dnaDisplayBaseOrientationIndicatorsGroupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.label_13.sizePolicy().hasHeightForWidth())
        self.label_13.setSizePolicy(sizePolicy)
        self.label_13.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_13.setObjectName("label_13")
        self.gridlayout30.addWidget(self.label_13,4,0,1,1)

        self.dnaBaseOrientationIndicatorsTerminalDistanceSpinBox = QtGui.QDoubleSpinBox(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.dnaBaseOrientationIndicatorsTerminalDistanceSpinBox.setDecimals(0)
        self.dnaBaseOrientationIndicatorsTerminalDistanceSpinBox.setMaximum(1000000.0)
        self.dnaBaseOrientationIndicatorsTerminalDistanceSpinBox.setSingleStep(1.0)
        self.dnaBaseOrientationIndicatorsTerminalDistanceSpinBox.setObjectName("dnaBaseOrientationIndicatorsTerminalDistanceSpinBox")
        self.gridlayout30.addWidget(self.dnaBaseOrientationIndicatorsTerminalDistanceSpinBox,5,1,1,1)

        self.dnaBaseOrientationIndicatorsThresholdSpinBox = QtGui.QDoubleSpinBox(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.dnaBaseOrientationIndicatorsThresholdSpinBox.setDecimals(1)
        self.dnaBaseOrientationIndicatorsThresholdSpinBox.setMaximum(180.0)
        self.dnaBaseOrientationIndicatorsThresholdSpinBox.setSingleStep(0.1)
        self.dnaBaseOrientationIndicatorsThresholdSpinBox.setProperty("value",QtCore.QVariant(30.0))
        self.dnaBaseOrientationIndicatorsThresholdSpinBox.setObjectName("dnaBaseOrientationIndicatorsThresholdSpinBox")
        self.gridlayout30.addWidget(self.dnaBaseOrientationIndicatorsThresholdSpinBox,4,1,1,1)

        self.hboxlayout40 = QtGui.QHBoxLayout()
        self.hboxlayout40.setMargin(0)
        self.hboxlayout40.setSpacing(4)
        self.hboxlayout40.setObjectName("hboxlayout40")

        self.dnaBaseOrientationIndicatorsColorFrame = QtGui.QFrame(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.dnaBaseOrientationIndicatorsColorFrame.setMinimumSize(QtCore.QSize(23,23))
        self.dnaBaseOrientationIndicatorsColorFrame.setMaximumSize(QtCore.QSize(23,23))
        self.dnaBaseOrientationIndicatorsColorFrame.setFrameShape(QtGui.QFrame.Box)
        self.dnaBaseOrientationIndicatorsColorFrame.setFrameShadow(QtGui.QFrame.Plain)
        self.dnaBaseOrientationIndicatorsColorFrame.setObjectName("dnaBaseOrientationIndicatorsColorFrame")
        self.hboxlayout40.addWidget(self.dnaBaseOrientationIndicatorsColorFrame)

        self.dnaChooseBaseOrientationIndicatorsColorButton = QtGui.QPushButton(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.dnaChooseBaseOrientationIndicatorsColorButton.setAutoDefault(False)
        self.dnaChooseBaseOrientationIndicatorsColorButton.setObjectName("dnaChooseBaseOrientationIndicatorsColorButton")
        self.hboxlayout40.addWidget(self.dnaChooseBaseOrientationIndicatorsColorButton)
        self.gridlayout30.addLayout(self.hboxlayout40,1,1,1,1)

        self.label_14 = QtGui.QLabel(self.dnaDisplayBaseOrientationIndicatorsGroupBox)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.label_14.sizePolicy().hasHeightForWidth())
        self.label_14.setSizePolicy(sizePolicy)
        self.label_14.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_14.setObjectName("label_14")
        self.gridlayout30.addWidget(self.label_14,5,0,1,1)

        self.bg1_color_lbl_5 = QtGui.QLabel(self.dnaDisplayBaseOrientationIndicatorsGroupBox)
        self.bg1_color_lbl_5.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.bg1_color_lbl_5.setObjectName("bg1_color_lbl_5")
        self.gridlayout30.addWidget(self.bg1_color_lbl_5,1,0,1,1)
        self.vboxlayout27.addWidget(self.dnaDisplayBaseOrientationIndicatorsGroupBox)

        spacerItem36 = QtGui.QSpacerItem(20,111,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout27.addItem(spacerItem36)
        self.gridlayout29.addLayout(self.vboxlayout27,0,0,1,1)
        self.prefsStackedWidget.addWidget(self.BaseOrientationIndicators)

        self.Adjust = QtGui.QWidget()
        self.Adjust.setObjectName("Adjust")

        self.gridlayout31 = QtGui.QGridLayout(self.Adjust)
        self.gridlayout31.setMargin(9)
        self.gridlayout31.setSpacing(6)
        self.gridlayout31.setObjectName("gridlayout31")

        self.vboxlayout28 = QtGui.QVBoxLayout()
        self.vboxlayout28.setMargin(0)
        self.vboxlayout28.setSpacing(6)
        self.vboxlayout28.setObjectName("vboxlayout28")

        self.adjustPhysicsEngineGroupBox = QtGui.QGroupBox(self.Adjust)
        self.adjustPhysicsEngineGroupBox.setObjectName("adjustPhysicsEngineGroupBox")

        self.vboxlayout29 = QtGui.QVBoxLayout(self.adjustPhysicsEngineGroupBox)
        self.vboxlayout29.setMargin(9)
        self.vboxlayout29.setSpacing(4)
        self.vboxlayout29.setObjectName("vboxlayout29")

        self.adjustEngineCombobox = QtGui.QComboBox(self.adjustPhysicsEngineGroupBox)
        self.adjustEngineCombobox.setObjectName("adjustEngineCombobox")
        self.vboxlayout29.addWidget(self.adjustEngineCombobox)

        self.electrostaticsForDnaDuringAdjust_checkBox = QtGui.QCheckBox(self.adjustPhysicsEngineGroupBox)
        self.electrostaticsForDnaDuringAdjust_checkBox.setObjectName("electrostaticsForDnaDuringAdjust_checkBox")
        self.vboxlayout29.addWidget(self.electrostaticsForDnaDuringAdjust_checkBox)
        self.vboxlayout28.addWidget(self.adjustPhysicsEngineGroupBox)

        self.watch_motion_groupbox = QtGui.QGroupBox(self.Adjust)
        self.watch_motion_groupbox.setCheckable(True)
        self.watch_motion_groupbox.setObjectName("watch_motion_groupbox")

        self.vboxlayout30 = QtGui.QVBoxLayout(self.watch_motion_groupbox)
        self.vboxlayout30.setMargin(9)
        self.vboxlayout30.setSpacing(0)
        self.vboxlayout30.setObjectName("vboxlayout30")

        self.update_asap_rbtn = QtGui.QRadioButton(self.watch_motion_groupbox)
        self.update_asap_rbtn.setChecked(True)
        self.update_asap_rbtn.setObjectName("update_asap_rbtn")
        self.vboxlayout30.addWidget(self.update_asap_rbtn)

        self.hboxlayout41 = QtGui.QHBoxLayout()
        self.hboxlayout41.setMargin(0)
        self.hboxlayout41.setSpacing(6)
        self.hboxlayout41.setObjectName("hboxlayout41")

        self.update_every_rbtn = QtGui.QRadioButton(self.watch_motion_groupbox)
        self.update_every_rbtn.setObjectName("update_every_rbtn")
        self.hboxlayout41.addWidget(self.update_every_rbtn)

        self.update_number_spinbox = QtGui.QSpinBox(self.watch_motion_groupbox)
        self.update_number_spinbox.setMaximum(9999)
        self.update_number_spinbox.setMinimum(1)
        self.update_number_spinbox.setProperty("value",QtCore.QVariant(1))
        self.update_number_spinbox.setObjectName("update_number_spinbox")
        self.hboxlayout41.addWidget(self.update_number_spinbox)

        self.update_units_combobox = QtGui.QComboBox(self.watch_motion_groupbox)
        self.update_units_combobox.setObjectName("update_units_combobox")
        self.hboxlayout41.addWidget(self.update_units_combobox)
        self.vboxlayout30.addLayout(self.hboxlayout41)
        self.vboxlayout28.addWidget(self.watch_motion_groupbox)

        self.groupBox20 = QtGui.QGroupBox(self.Adjust)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.groupBox20.sizePolicy().hasHeightForWidth())
        self.groupBox20.setSizePolicy(sizePolicy)
        self.groupBox20.setObjectName("groupBox20")

        self.hboxlayout42 = QtGui.QHBoxLayout(self.groupBox20)
        self.hboxlayout42.setMargin(9)
        self.hboxlayout42.setSpacing(4)
        self.hboxlayout42.setObjectName("hboxlayout42")

        self.vboxlayout31 = QtGui.QVBoxLayout()
        self.vboxlayout31.setMargin(0)
        self.vboxlayout31.setSpacing(2)
        self.vboxlayout31.setObjectName("vboxlayout31")

        self.endrms_lbl = QtGui.QLabel(self.groupBox20)
        self.endrms_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.endrms_lbl.setObjectName("endrms_lbl")
        self.vboxlayout31.addWidget(self.endrms_lbl)

        self.endmax_lbl = QtGui.QLabel(self.groupBox20)
        self.endmax_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.endmax_lbl.setObjectName("endmax_lbl")
        self.vboxlayout31.addWidget(self.endmax_lbl)

        self.cutoverrms_lbl = QtGui.QLabel(self.groupBox20)
        self.cutoverrms_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.cutoverrms_lbl.setObjectName("cutoverrms_lbl")
        self.vboxlayout31.addWidget(self.cutoverrms_lbl)

        self.cutovermax_lbl = QtGui.QLabel(self.groupBox20)
        self.cutovermax_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.cutovermax_lbl.setObjectName("cutovermax_lbl")
        self.vboxlayout31.addWidget(self.cutovermax_lbl)
        self.hboxlayout42.addLayout(self.vboxlayout31)

        self.vboxlayout32 = QtGui.QVBoxLayout()
        self.vboxlayout32.setMargin(0)
        self.vboxlayout32.setSpacing(2)
        self.vboxlayout32.setObjectName("vboxlayout32")

        self.endRmsDoubleSpinBox = QtGui.QDoubleSpinBox(self.groupBox20)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.endRmsDoubleSpinBox.sizePolicy().hasHeightForWidth())
        self.endRmsDoubleSpinBox.setSizePolicy(sizePolicy)
        self.endRmsDoubleSpinBox.setDecimals(2)
        self.endRmsDoubleSpinBox.setMaximum(101.0)
        self.endRmsDoubleSpinBox.setProperty("value",QtCore.QVariant(1.0))
        self.endRmsDoubleSpinBox.setObjectName("endRmsDoubleSpinBox")
        self.vboxlayout32.addWidget(self.endRmsDoubleSpinBox)

        self.endMaxDoubleSpinBox = QtGui.QDoubleSpinBox(self.groupBox20)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.endMaxDoubleSpinBox.sizePolicy().hasHeightForWidth())
        self.endMaxDoubleSpinBox.setSizePolicy(sizePolicy)
        self.endMaxDoubleSpinBox.setDecimals(2)
        self.endMaxDoubleSpinBox.setMaximum(101.0)
        self.endMaxDoubleSpinBox.setProperty("value",QtCore.QVariant(0.0))
        self.endMaxDoubleSpinBox.setObjectName("endMaxDoubleSpinBox")
        self.vboxlayout32.addWidget(self.endMaxDoubleSpinBox)

        self.cutoverRmsDoubleSpinBox = QtGui.QDoubleSpinBox(self.groupBox20)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.cutoverRmsDoubleSpinBox.sizePolicy().hasHeightForWidth())
        self.cutoverRmsDoubleSpinBox.setSizePolicy(sizePolicy)
        self.cutoverRmsDoubleSpinBox.setDecimals(2)
        self.cutoverRmsDoubleSpinBox.setMaximum(101.0)
        self.cutoverRmsDoubleSpinBox.setProperty("value",QtCore.QVariant(0.0))
        self.cutoverRmsDoubleSpinBox.setObjectName("cutoverRmsDoubleSpinBox")
        self.vboxlayout32.addWidget(self.cutoverRmsDoubleSpinBox)

        self.cutoverMaxDoubleSpinBox = QtGui.QDoubleSpinBox(self.groupBox20)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.cutoverMaxDoubleSpinBox.sizePolicy().hasHeightForWidth())
        self.cutoverMaxDoubleSpinBox.setSizePolicy(sizePolicy)
        self.cutoverMaxDoubleSpinBox.setDecimals(2)
        self.cutoverMaxDoubleSpinBox.setMaximum(101.0)
        self.cutoverMaxDoubleSpinBox.setProperty("value",QtCore.QVariant(0.0))
        self.cutoverMaxDoubleSpinBox.setObjectName("cutoverMaxDoubleSpinBox")
        self.vboxlayout32.addWidget(self.cutoverMaxDoubleSpinBox)
        self.hboxlayout42.addLayout(self.vboxlayout32)

        spacerItem37 = QtGui.QSpacerItem(80,20,QtGui.QSizePolicy.MinimumExpanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout42.addItem(spacerItem37)
        self.vboxlayout28.addWidget(self.groupBox20)

        spacerItem38 = QtGui.QSpacerItem(20,40,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout28.addItem(spacerItem38)
        self.gridlayout31.addLayout(self.vboxlayout28,0,0,2,1)

        self.grpbtn_4 = QtGui.QPushButton(self.Adjust)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.grpbtn_4.sizePolicy().hasHeightForWidth())
        self.grpbtn_4.setSizePolicy(sizePolicy)
        self.grpbtn_4.setMaximumSize(QtCore.QSize(16,16))
        self.grpbtn_4.setIcon(QtGui.QIcon("../../../../../../../:icons/MinimizeEnergyPropDialog_image6"))
        self.grpbtn_4.setAutoDefault(False)
        self.grpbtn_4.setDefault(False)
        self.grpbtn_4.setFlat(True)
        self.grpbtn_4.setObjectName("grpbtn_4")
        self.gridlayout31.addWidget(self.grpbtn_4,0,1,1,1)

        spacerItem39 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout31.addItem(spacerItem39,1,1,1,1)
        self.prefsStackedWidget.addWidget(self.Adjust)

        self.Lighting = QtGui.QWidget()
        self.Lighting.setObjectName("Lighting")

        self.gridlayout32 = QtGui.QGridLayout(self.Lighting)
        self.gridlayout32.setMargin(9)
        self.gridlayout32.setSpacing(6)
        self.gridlayout32.setObjectName("gridlayout32")

        self.vboxlayout33 = QtGui.QVBoxLayout()
        self.vboxlayout33.setMargin(0)
        self.vboxlayout33.setSpacing(4)
        self.vboxlayout33.setObjectName("vboxlayout33")

        self.groupBox8_2 = QtGui.QGroupBox(self.Lighting)
        self.groupBox8_2.setEnabled(True)
        self.groupBox8_2.setObjectName("groupBox8_2")

        self.gridlayout33 = QtGui.QGridLayout(self.groupBox8_2)
        self.gridlayout33.setMargin(9)
        self.gridlayout33.setSpacing(6)
        self.gridlayout33.setObjectName("gridlayout33")

        self.vboxlayout34 = QtGui.QVBoxLayout()
        self.vboxlayout34.setMargin(0)
        self.vboxlayout34.setSpacing(2)
        self.vboxlayout34.setObjectName("vboxlayout34")

        self.hboxlayout43 = QtGui.QHBoxLayout()
        self.hboxlayout43.setMargin(0)
        self.hboxlayout43.setSpacing(6)
        self.hboxlayout43.setObjectName("hboxlayout43")

        self.light_combobox = QtGui.QComboBox(self.groupBox8_2)
        self.light_combobox.setObjectName("light_combobox")
        self.hboxlayout43.addWidget(self.light_combobox)

        spacerItem40 = QtGui.QSpacerItem(60,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout43.addItem(spacerItem40)
        self.vboxlayout34.addLayout(self.hboxlayout43)

        self.hboxlayout44 = QtGui.QHBoxLayout()
        self.hboxlayout44.setMargin(0)
        self.hboxlayout44.setSpacing(6)
        self.hboxlayout44.setObjectName("hboxlayout44")

        self.light_checkbox = QtGui.QCheckBox(self.groupBox8_2)
        self.light_checkbox.setObjectName("light_checkbox")
        self.hboxlayout44.addWidget(self.light_checkbox)

        spacerItem41 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout44.addItem(spacerItem41)
        self.vboxlayout34.addLayout(self.hboxlayout44)

        self.hboxlayout45 = QtGui.QHBoxLayout()
        self.hboxlayout45.setMargin(0)
        self.hboxlayout45.setSpacing(6)
        self.hboxlayout45.setObjectName("hboxlayout45")

        self.hboxlayout46 = QtGui.QHBoxLayout()
        self.hboxlayout46.setMargin(0)
        self.hboxlayout46.setSpacing(6)
        self.hboxlayout46.setObjectName("hboxlayout46")

        self.light_color_frame = QtGui.QFrame(self.groupBox8_2)
        self.light_color_frame.setMinimumSize(QtCore.QSize(25,0))
        self.light_color_frame.setFrameShape(QtGui.QFrame.Box)
        self.light_color_frame.setFrameShadow(QtGui.QFrame.Plain)
        self.light_color_frame.setObjectName("light_color_frame")
        self.hboxlayout46.addWidget(self.light_color_frame)

        self.light_color_btn = QtGui.QPushButton(self.groupBox8_2)
        self.light_color_btn.setAutoDefault(False)
        self.light_color_btn.setObjectName("light_color_btn")
        self.hboxlayout46.addWidget(self.light_color_btn)
        self.hboxlayout45.addLayout(self.hboxlayout46)

        spacerItem42 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout45.addItem(spacerItem42)
        self.vboxlayout34.addLayout(self.hboxlayout45)

        self.hboxlayout47 = QtGui.QHBoxLayout()
        self.hboxlayout47.setMargin(0)
        self.hboxlayout47.setSpacing(6)
        self.hboxlayout47.setObjectName("hboxlayout47")

        self.light_ambient_linedit = QtGui.QLineEdit(self.groupBox8_2)
        self.light_ambient_linedit.setMaximumSize(QtCore.QSize(40,32767))
        self.light_ambient_linedit.setReadOnly(True)
        self.light_ambient_linedit.setObjectName("light_ambient_linedit")
        self.hboxlayout47.addWidget(self.light_ambient_linedit)

        self.light_ambient_slider = QtGui.QSlider(self.groupBox8_2)
        self.light_ambient_slider.setMaximum(100)
        self.light_ambient_slider.setOrientation(QtCore.Qt.Horizontal)
        self.light_ambient_slider.setTickInterval(10)
        self.light_ambient_slider.setObjectName("light_ambient_slider")
        self.hboxlayout47.addWidget(self.light_ambient_slider)
        self.vboxlayout34.addLayout(self.hboxlayout47)

        self.hboxlayout48 = QtGui.QHBoxLayout()
        self.hboxlayout48.setMargin(0)
        self.hboxlayout48.setSpacing(6)
        self.hboxlayout48.setObjectName("hboxlayout48")

        self.light_diffuse_linedit = QtGui.QLineEdit(self.groupBox8_2)
        self.light_diffuse_linedit.setMaximumSize(QtCore.QSize(40,32767))
        self.light_diffuse_linedit.setReadOnly(True)
        self.light_diffuse_linedit.setObjectName("light_diffuse_linedit")
        self.hboxlayout48.addWidget(self.light_diffuse_linedit)

        self.light_diffuse_slider = QtGui.QSlider(self.groupBox8_2)
        self.light_diffuse_slider.setMaximum(100)
        self.light_diffuse_slider.setOrientation(QtCore.Qt.Horizontal)
        self.light_diffuse_slider.setTickInterval(10)
        self.light_diffuse_slider.setObjectName("light_diffuse_slider")
        self.hboxlayout48.addWidget(self.light_diffuse_slider)
        self.vboxlayout34.addLayout(self.hboxlayout48)

        self.hboxlayout49 = QtGui.QHBoxLayout()
        self.hboxlayout49.setMargin(0)
        self.hboxlayout49.setSpacing(6)
        self.hboxlayout49.setObjectName("hboxlayout49")

        self.light_specularity_linedit = QtGui.QLineEdit(self.groupBox8_2)
        self.light_specularity_linedit.setMaximumSize(QtCore.QSize(40,32767))
        self.light_specularity_linedit.setReadOnly(True)
        self.light_specularity_linedit.setObjectName("light_specularity_linedit")
        self.hboxlayout49.addWidget(self.light_specularity_linedit)

        self.light_specularity_slider = QtGui.QSlider(self.groupBox8_2)
        self.light_specularity_slider.setMaximum(100)
        self.light_specularity_slider.setOrientation(QtCore.Qt.Horizontal)
        self.light_specularity_slider.setTickInterval(10)
        self.light_specularity_slider.setObjectName("light_specularity_slider")
        self.hboxlayout49.addWidget(self.light_specularity_slider)
        self.vboxlayout34.addLayout(self.hboxlayout49)

        self.hboxlayout50 = QtGui.QHBoxLayout()
        self.hboxlayout50.setMargin(0)
        self.hboxlayout50.setSpacing(6)
        self.hboxlayout50.setObjectName("hboxlayout50")

        self.light_x_linedit = QtGui.QLineEdit(self.groupBox8_2)
        self.light_x_linedit.setObjectName("light_x_linedit")
        self.hboxlayout50.addWidget(self.light_x_linedit)

        spacerItem43 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout50.addItem(spacerItem43)
        self.vboxlayout34.addLayout(self.hboxlayout50)

        self.hboxlayout51 = QtGui.QHBoxLayout()
        self.hboxlayout51.setMargin(0)
        self.hboxlayout51.setSpacing(6)
        self.hboxlayout51.setObjectName("hboxlayout51")

        self.light_y_linedit = QtGui.QLineEdit(self.groupBox8_2)
        self.light_y_linedit.setObjectName("light_y_linedit")
        self.hboxlayout51.addWidget(self.light_y_linedit)

        spacerItem44 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout51.addItem(spacerItem44)
        self.vboxlayout34.addLayout(self.hboxlayout51)

        self.hboxlayout52 = QtGui.QHBoxLayout()
        self.hboxlayout52.setMargin(0)
        self.hboxlayout52.setSpacing(6)
        self.hboxlayout52.setObjectName("hboxlayout52")

        self.light_z_linedit = QtGui.QLineEdit(self.groupBox8_2)
        self.light_z_linedit.setMaxLength(32767)
        self.light_z_linedit.setObjectName("light_z_linedit")
        self.hboxlayout52.addWidget(self.light_z_linedit)

        spacerItem45 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout52.addItem(spacerItem45)
        self.vboxlayout34.addLayout(self.hboxlayout52)
        self.gridlayout33.addLayout(self.vboxlayout34,0,1,1,1)

        self.vboxlayout35 = QtGui.QVBoxLayout()
        self.vboxlayout35.setMargin(0)
        self.vboxlayout35.setSpacing(2)
        self.vboxlayout35.setObjectName("vboxlayout35")

        self.light_label = QtGui.QLabel(self.groupBox8_2)
        self.light_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.light_label.setObjectName("light_label")
        self.vboxlayout35.addWidget(self.light_label)

        self.on_label = QtGui.QLabel(self.groupBox8_2)
        self.on_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.on_label.setObjectName("on_label")
        self.vboxlayout35.addWidget(self.on_label)

        self.color_label = QtGui.QLabel(self.groupBox8_2)
        self.color_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.color_label.setObjectName("color_label")
        self.vboxlayout35.addWidget(self.color_label)

        self.ambient_label = QtGui.QLabel(self.groupBox8_2)
        self.ambient_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.ambient_label.setObjectName("ambient_label")
        self.vboxlayout35.addWidget(self.ambient_label)

        self.diffuse_label = QtGui.QLabel(self.groupBox8_2)
        self.diffuse_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.diffuse_label.setObjectName("diffuse_label")
        self.vboxlayout35.addWidget(self.diffuse_label)

        self.specularity_label = QtGui.QLabel(self.groupBox8_2)
        self.specularity_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.specularity_label.setObjectName("specularity_label")
        self.vboxlayout35.addWidget(self.specularity_label)

        self.x_label = QtGui.QLabel(self.groupBox8_2)
        self.x_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.x_label.setObjectName("x_label")
        self.vboxlayout35.addWidget(self.x_label)

        self.y_label = QtGui.QLabel(self.groupBox8_2)
        self.y_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.y_label.setObjectName("y_label")
        self.vboxlayout35.addWidget(self.y_label)

        self.z_label = QtGui.QLabel(self.groupBox8_2)
        self.z_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.z_label.setObjectName("z_label")
        self.vboxlayout35.addWidget(self.z_label)
        self.gridlayout33.addLayout(self.vboxlayout35,0,0,1,1)
        self.vboxlayout33.addWidget(self.groupBox8_2)

        self.groupBox9_2 = QtGui.QGroupBox(self.Lighting)
        self.groupBox9_2.setEnabled(True)
        self.groupBox9_2.setObjectName("groupBox9_2")

        self.hboxlayout53 = QtGui.QHBoxLayout(self.groupBox9_2)
        self.hboxlayout53.setMargin(9)
        self.hboxlayout53.setSpacing(4)
        self.hboxlayout53.setObjectName("hboxlayout53")

        self.hboxlayout54 = QtGui.QHBoxLayout()
        self.hboxlayout54.setMargin(0)
        self.hboxlayout54.setSpacing(2)
        self.hboxlayout54.setObjectName("hboxlayout54")

        self.vboxlayout36 = QtGui.QVBoxLayout()
        self.vboxlayout36.setMargin(0)
        self.vboxlayout36.setSpacing(0)
        self.vboxlayout36.setObjectName("vboxlayout36")

        self.ms_on_label = QtGui.QLabel(self.groupBox9_2)
        self.ms_on_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.ms_on_label.setObjectName("ms_on_label")
        self.vboxlayout36.addWidget(self.ms_on_label)

        spacerItem46 = QtGui.QSpacerItem(70,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.vboxlayout36.addItem(spacerItem46)

        self.ms_finish_label = QtGui.QLabel(self.groupBox9_2)
        self.ms_finish_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.ms_finish_label.setObjectName("ms_finish_label")
        self.vboxlayout36.addWidget(self.ms_finish_label)

        spacerItem47 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.vboxlayout36.addItem(spacerItem47)

        self.ms_shininess_label = QtGui.QLabel(self.groupBox9_2)
        self.ms_shininess_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.ms_shininess_label.setObjectName("ms_shininess_label")
        self.vboxlayout36.addWidget(self.ms_shininess_label)

        spacerItem48 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.vboxlayout36.addItem(spacerItem48)

        self.ms_brightness__label = QtGui.QLabel(self.groupBox9_2)
        self.ms_brightness__label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.ms_brightness__label.setObjectName("ms_brightness__label")
        self.vboxlayout36.addWidget(self.ms_brightness__label)
        self.hboxlayout54.addLayout(self.vboxlayout36)

        self.vboxlayout37 = QtGui.QVBoxLayout()
        self.vboxlayout37.setMargin(0)
        self.vboxlayout37.setSpacing(0)
        self.vboxlayout37.setObjectName("vboxlayout37")

        self.ms_on_checkbox = QtGui.QCheckBox(self.groupBox9_2)
        self.ms_on_checkbox.setMinimumSize(QtCore.QSize(0,21))
        self.ms_on_checkbox.setObjectName("ms_on_checkbox")
        self.vboxlayout37.addWidget(self.ms_on_checkbox)

        spacerItem49 = QtGui.QSpacerItem(50,20,QtGui.QSizePolicy.Fixed,QtGui.QSizePolicy.Minimum)
        self.vboxlayout37.addItem(spacerItem49)

        self.ms_finish_linedit = QtGui.QLineEdit(self.groupBox9_2)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.ms_finish_linedit.sizePolicy().hasHeightForWidth())
        self.ms_finish_linedit.setSizePolicy(sizePolicy)
        self.ms_finish_linedit.setMaximumSize(QtCore.QSize(50,32767))
        self.ms_finish_linedit.setMaxLength(5)
        self.ms_finish_linedit.setReadOnly(True)
        self.ms_finish_linedit.setObjectName("ms_finish_linedit")
        self.vboxlayout37.addWidget(self.ms_finish_linedit)

        spacerItem50 = QtGui.QSpacerItem(50,20,QtGui.QSizePolicy.Fixed,QtGui.QSizePolicy.Minimum)
        self.vboxlayout37.addItem(spacerItem50)

        self.ms_shininess_linedit = QtGui.QLineEdit(self.groupBox9_2)
        self.ms_shininess_linedit.setMaximumSize(QtCore.QSize(50,32767))
        self.ms_shininess_linedit.setMaxLength(5)
        self.ms_shininess_linedit.setReadOnly(True)
        self.ms_shininess_linedit.setObjectName("ms_shininess_linedit")
        self.vboxlayout37.addWidget(self.ms_shininess_linedit)

        spacerItem51 = QtGui.QSpacerItem(50,20,QtGui.QSizePolicy.Fixed,QtGui.QSizePolicy.Minimum)
        self.vboxlayout37.addItem(spacerItem51)

        self.ms_brightness_linedit = QtGui.QLineEdit(self.groupBox9_2)
        self.ms_brightness_linedit.setMaximumSize(QtCore.QSize(50,32767))
        self.ms_brightness_linedit.setMaxLength(5)
        self.ms_brightness_linedit.setReadOnly(True)
        self.ms_brightness_linedit.setObjectName("ms_brightness_linedit")
        self.vboxlayout37.addWidget(self.ms_brightness_linedit)
        self.hboxlayout54.addLayout(self.vboxlayout37)

        self.vboxlayout38 = QtGui.QVBoxLayout()
        self.vboxlayout38.setMargin(0)
        self.vboxlayout38.setSpacing(0)
        self.vboxlayout38.setObjectName("vboxlayout38")

        spacerItem52 = QtGui.QSpacerItem(100,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.vboxlayout38.addItem(spacerItem52)

        self.hboxlayout55 = QtGui.QHBoxLayout()
        self.hboxlayout55.setMargin(0)
        self.hboxlayout55.setSpacing(4)
        self.hboxlayout55.setObjectName("hboxlayout55")

        self.textLabel1_6 = QtGui.QLabel(self.groupBox9_2)
        self.textLabel1_6.setObjectName("textLabel1_6")
        self.hboxlayout55.addWidget(self.textLabel1_6)

        spacerItem53 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Fixed,QtGui.QSizePolicy.Minimum)
        self.hboxlayout55.addItem(spacerItem53)

        self.textLabel2_4 = QtGui.QLabel(self.groupBox9_2)
        self.textLabel2_4.setObjectName("textLabel2_4")
        self.hboxlayout55.addWidget(self.textLabel2_4)
        self.vboxlayout38.addLayout(self.hboxlayout55)

        self.ms_finish_slider = QtGui.QSlider(self.groupBox9_2)
        self.ms_finish_slider.setMinimum(0)
        self.ms_finish_slider.setMaximum(100)
        self.ms_finish_slider.setProperty("value",QtCore.QVariant(50))
        self.ms_finish_slider.setOrientation(QtCore.Qt.Horizontal)
        self.ms_finish_slider.setTickInterval(5)
        self.ms_finish_slider.setObjectName("ms_finish_slider")
        self.vboxlayout38.addWidget(self.ms_finish_slider)

        self.hboxlayout56 = QtGui.QHBoxLayout()
        self.hboxlayout56.setMargin(0)
        self.hboxlayout56.setSpacing(4)
        self.hboxlayout56.setObjectName("hboxlayout56")

        self.textLabel1_6_2 = QtGui.QLabel(self.groupBox9_2)
        self.textLabel1_6_2.setObjectName("textLabel1_6_2")
        self.hboxlayout56.addWidget(self.textLabel1_6_2)

        spacerItem54 = QtGui.QSpacerItem(16,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout56.addItem(spacerItem54)

        self.textLabel2_4_2 = QtGui.QLabel(self.groupBox9_2)
        self.textLabel2_4_2.setObjectName("textLabel2_4_2")
        self.hboxlayout56.addWidget(self.textLabel2_4_2)
        self.vboxlayout38.addLayout(self.hboxlayout56)

        self.ms_shininess_slider = QtGui.QSlider(self.groupBox9_2)
        self.ms_shininess_slider.setMinimum(15)
        self.ms_shininess_slider.setMaximum(60)
        self.ms_shininess_slider.setProperty("value",QtCore.QVariant(15))
        self.ms_shininess_slider.setOrientation(QtCore.Qt.Horizontal)
        self.ms_shininess_slider.setTickInterval(5)
        self.ms_shininess_slider.setObjectName("ms_shininess_slider")
        self.vboxlayout38.addWidget(self.ms_shininess_slider)

        self.hboxlayout57 = QtGui.QHBoxLayout()
        self.hboxlayout57.setMargin(0)
        self.hboxlayout57.setSpacing(4)
        self.hboxlayout57.setObjectName("hboxlayout57")

        self.textLabel1_6_3 = QtGui.QLabel(self.groupBox9_2)
        self.textLabel1_6_3.setObjectName("textLabel1_6_3")
        self.hboxlayout57.addWidget(self.textLabel1_6_3)

        spacerItem55 = QtGui.QSpacerItem(16,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout57.addItem(spacerItem55)

        self.textLabel2_4_3 = QtGui.QLabel(self.groupBox9_2)
        self.textLabel2_4_3.setObjectName("textLabel2_4_3")
        self.hboxlayout57.addWidget(self.textLabel2_4_3)
        self.vboxlayout38.addLayout(self.hboxlayout57)

        self.ms_brightness_slider = QtGui.QSlider(self.groupBox9_2)
        self.ms_brightness_slider.setMinimum(0)
        self.ms_brightness_slider.setMaximum(100)
        self.ms_brightness_slider.setProperty("value",QtCore.QVariant(50))
        self.ms_brightness_slider.setOrientation(QtCore.Qt.Horizontal)
        self.ms_brightness_slider.setTickInterval(5)
        self.ms_brightness_slider.setObjectName("ms_brightness_slider")
        self.vboxlayout38.addWidget(self.ms_brightness_slider)
        self.hboxlayout54.addLayout(self.vboxlayout38)
        self.hboxlayout53.addLayout(self.hboxlayout54)
        self.vboxlayout33.addWidget(self.groupBox9_2)

        spacerItem56 = QtGui.QSpacerItem(20,5,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout33.addItem(spacerItem56)
        self.gridlayout32.addLayout(self.vboxlayout33,0,0,2,1)

        self.hboxlayout58 = QtGui.QHBoxLayout()
        self.hboxlayout58.setMargin(0)
        self.hboxlayout58.setSpacing(6)
        self.hboxlayout58.setObjectName("hboxlayout58")

        spacerItem57 = QtGui.QSpacerItem(20,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout58.addItem(spacerItem57)

        self.lighting_restore_defaults_btn = QtGui.QPushButton(self.Lighting)
        self.lighting_restore_defaults_btn.setAutoDefault(False)
        self.lighting_restore_defaults_btn.setObjectName("lighting_restore_defaults_btn")
        self.hboxlayout58.addWidget(self.lighting_restore_defaults_btn)
        self.gridlayout32.addLayout(self.hboxlayout58,1,1,1,1)

        spacerItem58 = QtGui.QSpacerItem(30,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout32.addItem(spacerItem58,0,1,1,1)
        self.prefsStackedWidget.addWidget(self.Lighting)

        self.Plugins = QtGui.QWidget()
        self.Plugins.setObjectName("Plugins")

        self.vboxlayout39 = QtGui.QVBoxLayout(self.Plugins)
        self.vboxlayout39.setMargin(9)
        self.vboxlayout39.setSpacing(6)
        self.vboxlayout39.setObjectName("vboxlayout39")

        self.file_locations_grp = QtGui.QGroupBox(self.Plugins)
        self.file_locations_grp.setObjectName("file_locations_grp")

        self.gridlayout34 = QtGui.QGridLayout(self.file_locations_grp)
        self.gridlayout34.setMargin(9)
        self.gridlayout34.setSpacing(6)
        self.gridlayout34.setObjectName("gridlayout34")

        self.hboxlayout59 = QtGui.QHBoxLayout()
        self.hboxlayout59.setMargin(0)
        self.hboxlayout59.setSpacing(0)
        self.hboxlayout59.setObjectName("hboxlayout59")

        self.qutemol_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.qutemol_checkbox.setEnabled(True)
        self.qutemol_checkbox.setObjectName("qutemol_checkbox")
        self.hboxlayout59.addWidget(self.qutemol_checkbox)

        self.qutemol_lbl = QtGui.QLabel(self.file_locations_grp)
        self.qutemol_lbl.setEnabled(True)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.qutemol_lbl.sizePolicy().hasHeightForWidth())
        self.qutemol_lbl.setSizePolicy(sizePolicy)
        self.qutemol_lbl.setMinimumSize(QtCore.QSize(60,0))
        self.qutemol_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.qutemol_lbl.setObjectName("qutemol_lbl")
        self.hboxlayout59.addWidget(self.qutemol_lbl)
        self.gridlayout34.addLayout(self.hboxlayout59,0,0,1,1)

        self.qutemol_path_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.qutemol_path_lineedit.setEnabled(False)
        self.qutemol_path_lineedit.setObjectName("qutemol_path_lineedit")
        self.gridlayout34.addWidget(self.qutemol_path_lineedit,0,1,1,1)

        self.qutemol_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.qutemol_choose_btn.setObjectName("qutemol_choose_btn")
        self.gridlayout34.addWidget(self.qutemol_choose_btn,0,2,1,1)

        self.hboxlayout60 = QtGui.QHBoxLayout()
        self.hboxlayout60.setMargin(0)
        self.hboxlayout60.setSpacing(0)
        self.hboxlayout60.setObjectName("hboxlayout60")

        self.nanohive_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.nanohive_checkbox.setEnabled(True)
        self.nanohive_checkbox.setObjectName("nanohive_checkbox")
        self.hboxlayout60.addWidget(self.nanohive_checkbox)

        self.nanohive_lbl = QtGui.QLabel(self.file_locations_grp)
        self.nanohive_lbl.setEnabled(True)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.nanohive_lbl.sizePolicy().hasHeightForWidth())
        self.nanohive_lbl.setSizePolicy(sizePolicy)
        self.nanohive_lbl.setMinimumSize(QtCore.QSize(60,0))
        self.nanohive_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.nanohive_lbl.setObjectName("nanohive_lbl")
        self.hboxlayout60.addWidget(self.nanohive_lbl)
        self.gridlayout34.addLayout(self.hboxlayout60,1,0,1,1)

        self.nanohive_path_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.nanohive_path_lineedit.setEnabled(False)
        self.nanohive_path_lineedit.setObjectName("nanohive_path_lineedit")
        self.gridlayout34.addWidget(self.nanohive_path_lineedit,1,1,1,1)

        self.nanohive_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.nanohive_choose_btn.setObjectName("nanohive_choose_btn")
        self.gridlayout34.addWidget(self.nanohive_choose_btn,1,2,1,1)

        self.hboxlayout61 = QtGui.QHBoxLayout()
        self.hboxlayout61.setMargin(0)
        self.hboxlayout61.setSpacing(0)
        self.hboxlayout61.setObjectName("hboxlayout61")

        self.povray_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.povray_checkbox.setObjectName("povray_checkbox")
        self.hboxlayout61.addWidget(self.povray_checkbox)

        self.povray_lbl = QtGui.QLabel(self.file_locations_grp)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.povray_lbl.sizePolicy().hasHeightForWidth())
        self.povray_lbl.setSizePolicy(sizePolicy)
        self.povray_lbl.setMinimumSize(QtCore.QSize(60,0))
        self.povray_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.povray_lbl.setObjectName("povray_lbl")
        self.hboxlayout61.addWidget(self.povray_lbl)
        self.gridlayout34.addLayout(self.hboxlayout61,2,0,1,1)

        self.povray_path_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.povray_path_lineedit.setEnabled(False)
        self.povray_path_lineedit.setMaximumSize(QtCore.QSize(32767,32767))
        self.povray_path_lineedit.setMaxLength(32767)
        self.povray_path_lineedit.setObjectName("povray_path_lineedit")
        self.gridlayout34.addWidget(self.povray_path_lineedit,2,1,1,1)

        self.povray_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.povray_choose_btn.setObjectName("povray_choose_btn")
        self.gridlayout34.addWidget(self.povray_choose_btn,2,2,1,1)

        self.hboxlayout62 = QtGui.QHBoxLayout()
        self.hboxlayout62.setMargin(0)
        self.hboxlayout62.setSpacing(0)
        self.hboxlayout62.setObjectName("hboxlayout62")

        self.megapov_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.megapov_checkbox.setObjectName("megapov_checkbox")
        self.hboxlayout62.addWidget(self.megapov_checkbox)

        self.megapov_lbl = QtGui.QLabel(self.file_locations_grp)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.megapov_lbl.sizePolicy().hasHeightForWidth())
        self.megapov_lbl.setSizePolicy(sizePolicy)
        self.megapov_lbl.setMinimumSize(QtCore.QSize(60,0))
        self.megapov_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.megapov_lbl.setObjectName("megapov_lbl")
        self.hboxlayout62.addWidget(self.megapov_lbl)
        self.gridlayout34.addLayout(self.hboxlayout62,3,0,1,1)

        self.megapov_path_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.megapov_path_lineedit.setEnabled(False)
        self.megapov_path_lineedit.setMaximumSize(QtCore.QSize(32767,32767))
        self.megapov_path_lineedit.setMaxLength(32767)
        self.megapov_path_lineedit.setObjectName("megapov_path_lineedit")
        self.gridlayout34.addWidget(self.megapov_path_lineedit,3,1,1,1)

        self.megapov_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.megapov_choose_btn.setObjectName("megapov_choose_btn")
        self.gridlayout34.addWidget(self.megapov_choose_btn,3,2,1,1)

        self.hboxlayout63 = QtGui.QHBoxLayout()
        self.hboxlayout63.setMargin(0)
        self.hboxlayout63.setSpacing(2)
        self.hboxlayout63.setObjectName("hboxlayout63")

        self.povdir_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.povdir_checkbox.setEnabled(True)
        self.povdir_checkbox.setMinimumSize(QtCore.QSize(15,15))
        self.povdir_checkbox.setMaximumSize(QtCore.QSize(15,15))
        self.povdir_checkbox.setObjectName("povdir_checkbox")
        self.hboxlayout63.addWidget(self.povdir_checkbox)

        self.povdir_lbl = QtGui.QLabel(self.file_locations_grp)
        self.povdir_lbl.setEnabled(True)
        self.povdir_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.povdir_lbl.setObjectName("povdir_lbl")
        self.hboxlayout63.addWidget(self.povdir_lbl)
        self.gridlayout34.addLayout(self.hboxlayout63,4,0,1,1)

        self.povdir_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.povdir_lineedit.setEnabled(False)
        self.povdir_lineedit.setObjectName("povdir_lineedit")
        self.gridlayout34.addWidget(self.povdir_lineedit,4,1,1,1)

        self.povdir_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.povdir_choose_btn.setObjectName("povdir_choose_btn")
        self.gridlayout34.addWidget(self.povdir_choose_btn,4,2,1,1)

        self.hboxlayout64 = QtGui.QHBoxLayout()
        self.hboxlayout64.setMargin(0)
        self.hboxlayout64.setSpacing(0)
        self.hboxlayout64.setObjectName("hboxlayout64")

        self.gamess_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.gamess_checkbox.setObjectName("gamess_checkbox")
        self.hboxlayout64.addWidget(self.gamess_checkbox)

        self.gamess_lbl = QtGui.QLabel(self.file_locations_grp)

        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Policy(0),QtGui.QSizePolicy.Policy(0))
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.gamess_lbl.sizePolicy().hasHeightForWidth())
        self.gamess_lbl.setSizePolicy(sizePolicy)
        self.gamess_lbl.setMinimumSize(QtCore.QSize(60,0))
        self.gamess_lbl.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.gamess_lbl.setObjectName("gamess_lbl")
        self.hboxlayout64.addWidget(self.gamess_lbl)
        self.gridlayout34.addLayout(self.hboxlayout64,5,0,1,1)

        self.gamess_path_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.gamess_path_lineedit.setEnabled(False)
        self.gamess_path_lineedit.setMaximumSize(QtCore.QSize(32767,32767))
        self.gamess_path_lineedit.setMaxLength(32767)
        self.gamess_path_lineedit.setObjectName("gamess_path_lineedit")
        self.gridlayout34.addWidget(self.gamess_path_lineedit,5,1,1,1)

        self.gamess_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.gamess_choose_btn.setObjectName("gamess_choose_btn")
        self.gridlayout34.addWidget(self.gamess_choose_btn,5,2,1,1)

        self.hboxlayout65 = QtGui.QHBoxLayout()
        self.hboxlayout65.setMargin(0)
        self.hboxlayout65.setSpacing(0)
        self.hboxlayout65.setObjectName("hboxlayout65")

        self.gromacs_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.gromacs_checkbox.setObjectName("gromacs_checkbox")
        self.hboxlayout65.addWidget(self.gromacs_checkbox)

        self.gromacs_label = QtGui.QLabel(self.file_locations_grp)
        self.gromacs_label.setObjectName("gromacs_label")
        self.hboxlayout65.addWidget(self.gromacs_label)
        self.gridlayout34.addLayout(self.hboxlayout65,6,0,1,1)

        self.gromacs_path_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.gromacs_path_lineedit.setEnabled(False)
        self.gromacs_path_lineedit.setObjectName("gromacs_path_lineedit")
        self.gridlayout34.addWidget(self.gromacs_path_lineedit,6,1,1,1)

        self.gromacs_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.gromacs_choose_btn.setObjectName("gromacs_choose_btn")
        self.gridlayout34.addWidget(self.gromacs_choose_btn,6,2,1,1)

        self.hboxlayout66 = QtGui.QHBoxLayout()
        self.hboxlayout66.setMargin(0)
        self.hboxlayout66.setSpacing(0)
        self.hboxlayout66.setObjectName("hboxlayout66")

        self.cpp_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.cpp_checkbox.setObjectName("cpp_checkbox")
        self.hboxlayout66.addWidget(self.cpp_checkbox)

        self.cpp_label = QtGui.QLabel(self.file_locations_grp)
        self.cpp_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.cpp_label.setObjectName("cpp_label")
        self.hboxlayout66.addWidget(self.cpp_label)
        self.gridlayout34.addLayout(self.hboxlayout66,7,0,1,1)

        self.cpp_path_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.cpp_path_lineedit.setEnabled(False)
        self.cpp_path_lineedit.setObjectName("cpp_path_lineedit")
        self.gridlayout34.addWidget(self.cpp_path_lineedit,7,1,1,1)

        self.cpp_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.cpp_choose_btn.setObjectName("cpp_choose_btn")
        self.gridlayout34.addWidget(self.cpp_choose_btn,7,2,1,1)

        self.hboxlayout67 = QtGui.QHBoxLayout()
        self.hboxlayout67.setMargin(0)
        self.hboxlayout67.setSpacing(0)
        self.hboxlayout67.setObjectName("hboxlayout67")

        self.nv1_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.nv1_checkbox.setObjectName("nv1_checkbox")
        self.hboxlayout67.addWidget(self.nv1_checkbox)

        self.nv1_label = QtGui.QLabel(self.file_locations_grp)
        self.nv1_label.setObjectName("nv1_label")
        self.hboxlayout67.addWidget(self.nv1_label)
        self.gridlayout34.addLayout(self.hboxlayout67,10,0,1,1)

        self.nv1_path_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.nv1_path_lineedit.setEnabled(False)
        self.nv1_path_lineedit.setObjectName("nv1_path_lineedit")
        self.gridlayout34.addWidget(self.nv1_path_lineedit,10,1,1,1)

        self.nv1_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.nv1_choose_btn.setObjectName("nv1_choose_btn")
        self.gridlayout34.addWidget(self.nv1_choose_btn,10,2,1,1)

        self.hboxlayout68 = QtGui.QHBoxLayout()
        self.hboxlayout68.setMargin(0)
        self.hboxlayout68.setSpacing(0)
        self.hboxlayout68.setObjectName("hboxlayout68")

        self.rosetta_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.rosetta_checkbox.setObjectName("rosetta_checkbox")
        self.hboxlayout68.addWidget(self.rosetta_checkbox)

        self.rosetta_label = QtGui.QLabel(self.file_locations_grp)
        self.rosetta_label.setObjectName("rosetta_label")
        self.hboxlayout68.addWidget(self.rosetta_label)
        self.gridlayout34.addLayout(self.hboxlayout68,8,0,1,1)

        self.rosetta_path_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.rosetta_path_lineedit.setEnabled(False)
        self.rosetta_path_lineedit.setObjectName("rosetta_path_lineedit")
        self.gridlayout34.addWidget(self.rosetta_path_lineedit,8,1,1,1)

        self.rosetta_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.rosetta_choose_btn.setObjectName("rosetta_choose_btn")
        self.gridlayout34.addWidget(self.rosetta_choose_btn,8,2,1,1)

        self.hboxlayout69 = QtGui.QHBoxLayout()
        self.hboxlayout69.setMargin(0)
        self.hboxlayout69.setSpacing(0)
        self.hboxlayout69.setObjectName("hboxlayout69")

        self.rosetta_db_checkbox = QtGui.QCheckBox(self.file_locations_grp)
        self.rosetta_db_checkbox.setObjectName("rosetta_db_checkbox")
        self.hboxlayout69.addWidget(self.rosetta_db_checkbox)

        self.rosetta_db_label = QtGui.QLabel(self.file_locations_grp)
        self.rosetta_db_label.setObjectName("rosetta_db_label")
        self.hboxlayout69.addWidget(self.rosetta_db_label)
        self.gridlayout34.addLayout(self.hboxlayout69,9,0,1,1)

        self.rosetta_db_path_lineedit = QtGui.QLineEdit(self.file_locations_grp)
        self.rosetta_db_path_lineedit.setEnabled(False)
        self.rosetta_db_path_lineedit.setObjectName("rosetta_db_path_lineedit")
        self.gridlayout34.addWidget(self.rosetta_db_path_lineedit,9,1,1,1)

        self.rosetta_db_choose_btn = QtGui.QToolButton(self.file_locations_grp)
        self.rosetta_db_choose_btn.setObjectName("rosetta_db_choose_btn")
        self.gridlayout34.addWidget(self.rosetta_db_choose_btn,9,2,1,1)
        self.vboxlayout39.addWidget(self.file_locations_grp)

        spacerItem59 = QtGui.QSpacerItem(384,71,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout39.addItem(spacerItem59)
        self.prefsStackedWidget.addWidget(self.Plugins)

        self.Undo = QtGui.QWidget()
        self.Undo.setObjectName("Undo")

        self.gridlayout35 = QtGui.QGridLayout(self.Undo)
        self.gridlayout35.setMargin(9)
        self.gridlayout35.setSpacing(6)
        self.gridlayout35.setObjectName("gridlayout35")

        spacerItem60 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout35.addItem(spacerItem60,0,1,1,1)

        self.vboxlayout40 = QtGui.QVBoxLayout()
        self.vboxlayout40.setMargin(0)
        self.vboxlayout40.setSpacing(4)
        self.vboxlayout40.setObjectName("vboxlayout40")

        self.vboxlayout41 = QtGui.QVBoxLayout()
        self.vboxlayout41.setMargin(0)
        self.vboxlayout41.setSpacing(2)
        self.vboxlayout41.setObjectName("vboxlayout41")

        self.undo_restore_view_checkbox = QtGui.QCheckBox(self.Undo)
        self.undo_restore_view_checkbox.setObjectName("undo_restore_view_checkbox")
        self.vboxlayout41.addWidget(self.undo_restore_view_checkbox)

        self.undo_automatic_checkpoints_checkbox = QtGui.QCheckBox(self.Undo)
        self.undo_automatic_checkpoints_checkbox.setObjectName("undo_automatic_checkpoints_checkbox")
        self.vboxlayout41.addWidget(self.undo_automatic_checkpoints_checkbox)

        self.hboxlayout70 = QtGui.QHBoxLayout()
        self.hboxlayout70.setMargin(0)
        self.hboxlayout70.setSpacing(6)
        self.hboxlayout70.setObjectName("hboxlayout70")

        self.undo_stack_memory_limit_label = QtGui.QLabel(self.Undo)
        self.undo_stack_memory_limit_label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.undo_stack_memory_limit_label.setObjectName("undo_stack_memory_limit_label")
        self.hboxlayout70.addWidget(self.undo_stack_memory_limit_label)

        self.undo_stack_memory_limit_spinbox = QtGui.QSpinBox(self.Undo)
        self.undo_stack_memory_limit_spinbox.setMaximum(99999)
        self.undo_stack_memory_limit_spinbox.setObjectName("undo_stack_memory_limit_spinbox")
        self.hboxlayout70.addWidget(self.undo_stack_memory_limit_spinbox)
        self.vboxlayout41.addLayout(self.hboxlayout70)
        self.vboxlayout40.addLayout(self.vboxlayout41)

        spacerItem61 = QtGui.QSpacerItem(20,40,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout40.addItem(spacerItem61)
        self.gridlayout35.addLayout(self.vboxlayout40,0,0,1,1)
        self.prefsStackedWidget.addWidget(self.Undo)

        self.Window = QtGui.QWidget()
        self.Window.setObjectName("Window")

        self.gridlayout36 = QtGui.QGridLayout(self.Window)
        self.gridlayout36.setMargin(9)
        self.gridlayout36.setSpacing(6)
        self.gridlayout36.setObjectName("gridlayout36")

        self.hboxlayout71 = QtGui.QHBoxLayout()
        self.hboxlayout71.setMargin(0)
        self.hboxlayout71.setSpacing(4)
        self.hboxlayout71.setObjectName("hboxlayout71")

        self.groupBox10 = QtGui.QGroupBox(self.Window)
        self.groupBox10.setObjectName("groupBox10")

        self.gridlayout37 = QtGui.QGridLayout(self.groupBox10)
        self.gridlayout37.setMargin(9)
        self.gridlayout37.setSpacing(6)
        self.gridlayout37.setObjectName("gridlayout37")

        self.remember_win_pos_and_size_checkbox = QtGui.QCheckBox(self.groupBox10)
        self.remember_win_pos_and_size_checkbox.setObjectName("remember_win_pos_and_size_checkbox")
        self.gridlayout37.addWidget(self.remember_win_pos_and_size_checkbox,1,0,1,3)

        self.vboxlayout42 = QtGui.QVBoxLayout()
        self.vboxlayout42.setMargin(0)
        self.vboxlayout42.setSpacing(6)
        self.vboxlayout42.setObjectName("vboxlayout42")

        self.save_current_btn = QtGui.QPushButton(self.groupBox10)
        self.save_current_btn.setAutoDefault(False)
        self.save_current_btn.setObjectName("save_current_btn")
        self.vboxlayout42.addWidget(self.save_current_btn)

        self.restore_saved_size_btn = QtGui.QPushButton(self.groupBox10)
        self.restore_saved_size_btn.setAutoDefault(False)
        self.restore_saved_size_btn.setObjectName("restore_saved_size_btn")
        self.vboxlayout42.addWidget(self.restore_saved_size_btn)
        self.gridlayout37.addLayout(self.vboxlayout42,0,2,1,1)

        self.vboxlayout43 = QtGui.QVBoxLayout()
        self.vboxlayout43.setMargin(0)
        self.vboxlayout43.setSpacing(6)
        self.vboxlayout43.setObjectName("vboxlayout43")

        self.textLabel1_2 = QtGui.QLabel(self.groupBox10)
        self.textLabel1_2.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel1_2.setObjectName("textLabel1_2")
        self.vboxlayout43.addWidget(self.textLabel1_2)

        self.textLabel1_2_2 = QtGui.QLabel(self.groupBox10)
        self.textLabel1_2_2.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel1_2_2.setObjectName("textLabel1_2_2")
        self.vboxlayout43.addWidget(self.textLabel1_2_2)
        self.gridlayout37.addLayout(self.vboxlayout43,0,0,1,1)

        self.gridlayout38 = QtGui.QGridLayout()
        self.gridlayout38.setMargin(0)
        self.gridlayout38.setSpacing(6)
        self.gridlayout38.setObjectName("gridlayout38")

        self.current_width_spinbox = QtGui.QSpinBox(self.groupBox10)
        self.current_width_spinbox.setMaximum(2048)
        self.current_width_spinbox.setMinimum(640)
        self.current_width_spinbox.setProperty("value",QtCore.QVariant(640))
        self.current_width_spinbox.setObjectName("current_width_spinbox")
        self.gridlayout38.addWidget(self.current_width_spinbox,0,0,1,1)

        self.saved_height_lineedit = QtGui.QLineEdit(self.groupBox10)
        self.saved_height_lineedit.setReadOnly(True)
        self.saved_height_lineedit.setObjectName("saved_height_lineedit")
        self.gridlayout38.addWidget(self.saved_height_lineedit,1,2,1,1)

        self.current_height_spinbox = QtGui.QSpinBox(self.groupBox10)
        self.current_height_spinbox.setMaximum(2000)
        self.current_height_spinbox.setMinimum(480)
        self.current_height_spinbox.setProperty("value",QtCore.QVariant(480))
        self.current_height_spinbox.setObjectName("current_height_spinbox")
        self.gridlayout38.addWidget(self.current_height_spinbox,0,2,1,1)

        self.saved_width_lineedit = QtGui.QLineEdit(self.groupBox10)
        self.saved_width_lineedit.setReadOnly(True)
        self.saved_width_lineedit.setObjectName("saved_width_lineedit")
        self.gridlayout38.addWidget(self.saved_width_lineedit,1,0,1,1)

        self.textLabel1_2_2_2 = QtGui.QLabel(self.groupBox10)
        self.textLabel1_2_2_2.setAlignment(QtCore.Qt.AlignCenter)
        self.textLabel1_2_2_2.setObjectName("textLabel1_2_2_2")
        self.gridlayout38.addWidget(self.textLabel1_2_2_2,0,1,1,1)

        self.textLabel1_2_2_2_2 = QtGui.QLabel(self.groupBox10)
        self.textLabel1_2_2_2_2.setAlignment(QtCore.Qt.AlignCenter)
        self.textLabel1_2_2_2_2.setObjectName("textLabel1_2_2_2_2")
        self.gridlayout38.addWidget(self.textLabel1_2_2_2_2,1,1,1,1)
        self.gridlayout37.addLayout(self.gridlayout38,0,1,1,1)
        self.hboxlayout71.addWidget(self.groupBox10)

        spacerItem62 = QtGui.QSpacerItem(70,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout71.addItem(spacerItem62)
        self.gridlayout36.addLayout(self.hboxlayout71,0,0,1,1)

        self.hboxlayout72 = QtGui.QHBoxLayout()
        self.hboxlayout72.setMargin(0)
        self.hboxlayout72.setSpacing(4)
        self.hboxlayout72.setObjectName("hboxlayout72")

        self.groupBox3 = QtGui.QGroupBox(self.Window)
        self.groupBox3.setObjectName("groupBox3")

        self.gridlayout39 = QtGui.QGridLayout(self.groupBox3)
        self.gridlayout39.setMargin(9)
        self.gridlayout39.setSpacing(6)
        self.gridlayout39.setObjectName("gridlayout39")

        self.caption_fullpath_checkbox = QtGui.QCheckBox(self.groupBox3)
        self.caption_fullpath_checkbox.setObjectName("caption_fullpath_checkbox")
        self.gridlayout39.addWidget(self.caption_fullpath_checkbox,4,0,1,1)

        self.caption_suffix_linedit = QtGui.QLineEdit(self.groupBox3)
        self.caption_suffix_linedit.setMinimumSize(QtCore.QSize(0,0))
        self.caption_suffix_linedit.setMaximumSize(QtCore.QSize(32767,32767))
        self.caption_suffix_linedit.setObjectName("caption_suffix_linedit")
        self.gridlayout39.addWidget(self.caption_suffix_linedit,3,0,1,1)

        self.textLabel2_2 = QtGui.QLabel(self.groupBox3)
        self.textLabel2_2.setObjectName("textLabel2_2")
        self.gridlayout39.addWidget(self.textLabel2_2,2,0,1,1)

        self.caption_prefix_linedit = QtGui.QLineEdit(self.groupBox3)
        self.caption_prefix_linedit.setMinimumSize(QtCore.QSize(0,0))
        self.caption_prefix_linedit.setMaximumSize(QtCore.QSize(32767,32767))
        self.caption_prefix_linedit.setObjectName("caption_prefix_linedit")
        self.gridlayout39.addWidget(self.caption_prefix_linedit,1,0,1,1)

        self.textLabel2 = QtGui.QLabel(self.groupBox3)
        self.textLabel2.setObjectName("textLabel2")
        self.gridlayout39.addWidget(self.textLabel2,0,0,1,1)
        self.hboxlayout72.addWidget(self.groupBox3)

        spacerItem63 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout72.addItem(spacerItem63)
        self.gridlayout36.addLayout(self.hboxlayout72,1,0,1,1)

        spacerItem64 = QtGui.QSpacerItem(20,40,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.gridlayout36.addItem(spacerItem64,3,0,1,1)

        self.hboxlayout73 = QtGui.QHBoxLayout()
        self.hboxlayout73.setMargin(0)
        self.hboxlayout73.setSpacing(4)
        self.hboxlayout73.setObjectName("hboxlayout73")

        self.selectedFontGroupBox = QtGui.QGroupBox(self.Window)
        self.selectedFontGroupBox.setCheckable(True)
        self.selectedFontGroupBox.setChecked(False)
        self.selectedFontGroupBox.setObjectName("selectedFontGroupBox")

        self.gridlayout40 = QtGui.QGridLayout(self.selectedFontGroupBox)
        self.gridlayout40.setMargin(9)
        self.gridlayout40.setSpacing(6)
        self.gridlayout40.setObjectName("gridlayout40")

        self.makeDefaultFontPushButton = QtGui.QPushButton(self.selectedFontGroupBox)
        self.makeDefaultFontPushButton.setAutoDefault(False)
        self.makeDefaultFontPushButton.setObjectName("makeDefaultFontPushButton")
        self.gridlayout40.addWidget(self.makeDefaultFontPushButton,1,0,1,2)

        self.vboxlayout44 = QtGui.QVBoxLayout()
        self.vboxlayout44.setMargin(0)
        self.vboxlayout44.setSpacing(6)
        self.vboxlayout44.setObjectName("vboxlayout44")

        self.fontComboBox = QtGui.QFontComboBox(self.selectedFontGroupBox)
        self.fontComboBox.setFontFilters(QtGui.QFontComboBox.AllFonts|QtGui.QFontComboBox.ProportionalFonts|QtGui.QFontComboBox.ScalableFonts)

        font = QtGui.QFont()
        font.setFamily("Arial")
        self.fontComboBox.setCurrentFont(font)
        self.fontComboBox.setObjectName("fontComboBox")
        self.vboxlayout44.addWidget(self.fontComboBox)

        self.hboxlayout74 = QtGui.QHBoxLayout()
        self.hboxlayout74.setMargin(0)
        self.hboxlayout74.setSpacing(6)
        self.hboxlayout74.setObjectName("hboxlayout74")

        self.fontSizeSpinBox = QtGui.QSpinBox(self.selectedFontGroupBox)
        self.fontSizeSpinBox.setMaximum(24)
        self.fontSizeSpinBox.setMinimum(6)
        self.fontSizeSpinBox.setProperty("value",QtCore.QVariant(9))
        self.fontSizeSpinBox.setObjectName("fontSizeSpinBox")
        self.hboxlayout74.addWidget(self.fontSizeSpinBox)

        spacerItem65 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout74.addItem(spacerItem65)
        self.vboxlayout44.addLayout(self.hboxlayout74)
        self.gridlayout40.addLayout(self.vboxlayout44,0,1,1,1)

        self.vboxlayout45 = QtGui.QVBoxLayout()
        self.vboxlayout45.setMargin(0)
        self.vboxlayout45.setSpacing(6)
        self.vboxlayout45.setObjectName("vboxlayout45")

        self.label = QtGui.QLabel(self.selectedFontGroupBox)
        self.label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label.setObjectName("label")
        self.vboxlayout45.addWidget(self.label)

        self.label_3 = QtGui.QLabel(self.selectedFontGroupBox)
        self.label_3.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.label_3.setObjectName("label_3")
        self.vboxlayout45.addWidget(self.label_3)
        self.gridlayout40.addLayout(self.vboxlayout45,0,0,1,1)
        self.hboxlayout73.addWidget(self.selectedFontGroupBox)

        spacerItem66 = QtGui.QSpacerItem(280,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout73.addItem(spacerItem66)
        self.gridlayout36.addLayout(self.hboxlayout73,2,0,1,1)
        self.prefsStackedWidget.addWidget(self.Window)

        self.Reports = QtGui.QWidget()
        self.Reports.setObjectName("Reports")

        self.gridlayout41 = QtGui.QGridLayout(self.Reports)
        self.gridlayout41.setMargin(9)
        self.gridlayout41.setSpacing(6)
        self.gridlayout41.setObjectName("gridlayout41")

        self.vboxlayout46 = QtGui.QVBoxLayout()
        self.vboxlayout46.setMargin(0)
        self.vboxlayout46.setSpacing(4)
        self.vboxlayout46.setObjectName("vboxlayout46")

        self.groupBox17 = QtGui.QGroupBox(self.Reports)
        self.groupBox17.setObjectName("groupBox17")

        self.gridlayout42 = QtGui.QGridLayout(self.groupBox17)
        self.gridlayout42.setMargin(9)
        self.gridlayout42.setSpacing(6)
        self.gridlayout42.setObjectName("gridlayout42")

        self.msg_serial_number_checkbox = QtGui.QCheckBox(self.groupBox17)
        self.msg_serial_number_checkbox.setObjectName("msg_serial_number_checkbox")
        self.gridlayout42.addWidget(self.msg_serial_number_checkbox,0,0,1,2)

        self.msg_timestamp_checkbox = QtGui.QCheckBox(self.groupBox17)
        self.msg_timestamp_checkbox.setObjectName("msg_timestamp_checkbox")
        self.gridlayout42.addWidget(self.msg_timestamp_checkbox,1,0,1,2)
        self.vboxlayout46.addWidget(self.groupBox17)

        spacerItem67 = QtGui.QSpacerItem(20,40,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout46.addItem(spacerItem67)
        self.gridlayout41.addLayout(self.vboxlayout46,0,0,1,1)

        spacerItem68 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout41.addItem(spacerItem68,0,1,1,1)
        self.prefsStackedWidget.addWidget(self.Reports)

        self.Tooltips = QtGui.QWidget()
        self.Tooltips.setObjectName("Tooltips")

        self.gridlayout43 = QtGui.QGridLayout(self.Tooltips)
        self.gridlayout43.setMargin(9)
        self.gridlayout43.setSpacing(6)
        self.gridlayout43.setObjectName("gridlayout43")

        spacerItem69 = QtGui.QSpacerItem(90,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.gridlayout43.addItem(spacerItem69,0,1,1,1)

        self.vboxlayout47 = QtGui.QVBoxLayout()
        self.vboxlayout47.setMargin(0)
        self.vboxlayout47.setSpacing(4)
        self.vboxlayout47.setObjectName("vboxlayout47")

        self.atom_dynamic_tooltips_grpbox = QtGui.QGroupBox(self.Tooltips)
        self.atom_dynamic_tooltips_grpbox.setObjectName("atom_dynamic_tooltips_grpbox")

        self.vboxlayout48 = QtGui.QVBoxLayout(self.atom_dynamic_tooltips_grpbox)
        self.vboxlayout48.setMargin(9)
        self.vboxlayout48.setSpacing(0)
        self.vboxlayout48.setObjectName("vboxlayout48")

        self.dynamicToolTipAtomChunkInfo_checkbox = QtGui.QCheckBox(self.atom_dynamic_tooltips_grpbox)
        self.dynamicToolTipAtomChunkInfo_checkbox.setChecked(False)
        self.dynamicToolTipAtomChunkInfo_checkbox.setObjectName("dynamicToolTipAtomChunkInfo_checkbox")
        self.vboxlayout48.addWidget(self.dynamicToolTipAtomChunkInfo_checkbox)

        self.dynamicToolTipAtomMass_checkbox = QtGui.QCheckBox(self.atom_dynamic_tooltips_grpbox)
        self.dynamicToolTipAtomMass_checkbox.setObjectName("dynamicToolTipAtomMass_checkbox")
        self.vboxlayout48.addWidget(self.dynamicToolTipAtomMass_checkbox)

        self.dynamicToolTipAtomPosition_checkbox = QtGui.QCheckBox(self.atom_dynamic_tooltips_grpbox)
        self.dynamicToolTipAtomPosition_checkbox.setChecked(False)
        self.dynamicToolTipAtomPosition_checkbox.setObjectName("dynamicToolTipAtomPosition_checkbox")
        self.vboxlayout48.addWidget(self.dynamicToolTipAtomPosition_checkbox)

        self.dynamicToolTipAtomDistanceDeltas_checkbox = QtGui.QCheckBox(self.atom_dynamic_tooltips_grpbox)
        self.dynamicToolTipAtomDistanceDeltas_checkbox.setObjectName("dynamicToolTipAtomDistanceDeltas_checkbox")
        self.vboxlayout48.addWidget(self.dynamicToolTipAtomDistanceDeltas_checkbox)

        self.includeVdwRadiiInAtomDistanceInfo = QtGui.QCheckBox(self.atom_dynamic_tooltips_grpbox)
        self.includeVdwRadiiInAtomDistanceInfo.setObjectName("includeVdwRadiiInAtomDistanceInfo")
        self.vboxlayout48.addWidget(self.includeVdwRadiiInAtomDistanceInfo)

        self.hboxlayout75 = QtGui.QHBoxLayout()
        self.hboxlayout75.setMargin(0)
        self.hboxlayout75.setSpacing(4)
        self.hboxlayout75.setObjectName("hboxlayout75")

        self.gridlayout44 = QtGui.QGridLayout()
        self.gridlayout44.setMargin(0)
        self.gridlayout44.setSpacing(6)
        self.gridlayout44.setObjectName("gridlayout44")

        self.atomDistPrecisionLabel = QtGui.QLabel(self.atom_dynamic_tooltips_grpbox)
        self.atomDistPrecisionLabel.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.atomDistPrecisionLabel.setObjectName("atomDistPrecisionLabel")
        self.gridlayout44.addWidget(self.atomDistPrecisionLabel,0,0,1,1)

        self.dynamicToolTipAtomDistancePrecision_spinbox = QtGui.QSpinBox(self.atom_dynamic_tooltips_grpbox)
        self.dynamicToolTipAtomDistancePrecision_spinbox.setMaximum(5)
        self.dynamicToolTipAtomDistancePrecision_spinbox.setMinimum(1)
        self.dynamicToolTipAtomDistancePrecision_spinbox.setProperty("value",QtCore.QVariant(3))
        self.dynamicToolTipAtomDistancePrecision_spinbox.setObjectName("dynamicToolTipAtomDistancePrecision_spinbox")
        self.gridlayout44.addWidget(self.dynamicToolTipAtomDistancePrecision_spinbox,0,1,1,1)

        self.dynamicToolTipBendAnglePrecision_spinbox = QtGui.QSpinBox(self.atom_dynamic_tooltips_grpbox)
        self.dynamicToolTipBendAnglePrecision_spinbox.setMaximum(5)
        self.dynamicToolTipBendAnglePrecision_spinbox.setMinimum(1)
        self.dynamicToolTipBendAnglePrecision_spinbox.setProperty("value",QtCore.QVariant(3))
        self.dynamicToolTipBendAnglePrecision_spinbox.setObjectName("dynamicToolTipBendAnglePrecision_spinbox")
        self.gridlayout44.addWidget(self.dynamicToolTipBendAnglePrecision_spinbox,1,1,1,1)

        self.textLabel1_8_3 = QtGui.QLabel(self.atom_dynamic_tooltips_grpbox)
        self.textLabel1_8_3.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
        self.textLabel1_8_3.setObjectName("textLabel1_8_3")
        self.gridlayout44.addWidget(self.textLabel1_8_3,1,0,1,1)
        self.hboxlayout75.addLayout(self.gridlayout44)

        spacerItem70 = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout75.addItem(spacerItem70)
        self.vboxlayout48.addLayout(self.hboxlayout75)
        self.vboxlayout47.addWidget(self.atom_dynamic_tooltips_grpbox)

        self.groupBox35 = QtGui.QGroupBox(self.Tooltips)
        self.groupBox35.setObjectName("groupBox35")

        self.gridlayout45 = QtGui.QGridLayout(self.groupBox35)
        self.gridlayout45.setMargin(9)
        self.gridlayout45.setSpacing(6)
        self.gridlayout45.setObjectName("gridlayout45")

        self.dynamicToolTipBondChunkInfo_checkbox = QtGui.QCheckBox(self.groupBox35)
        self.dynamicToolTipBondChunkInfo_checkbox.setObjectName("dynamicToolTipBondChunkInfo_checkbox")
        self.gridlayout45.addWidget(self.dynamicToolTipBondChunkInfo_checkbox,1,0,1,1)

        self.dynamicToolTipBondLength_checkbox = QtGui.QCheckBox(self.groupBox35)
        self.dynamicToolTipBondLength_checkbox.setObjectName("dynamicToolTipBondLength_checkbox")
        self.gridlayout45.addWidget(self.dynamicToolTipBondLength_checkbox,0,0,1,1)
        self.vboxlayout47.addWidget(self.groupBox35)

        spacerItem71 = QtGui.QSpacerItem(20,161,QtGui.QSizePolicy.Minimum,QtGui.QSizePolicy.Expanding)
        self.vboxlayout47.addItem(spacerItem71)
        self.gridlayout43.addLayout(self.vboxlayout47,0,0,1,1)
        self.prefsStackedWidget.addWidget(self.Tooltips)
        self.hboxlayout.addWidget(self.prefsStackedWidget)
        self.prefsTabWidget.addTab(self.systemOptionsTab,"")
        self.gridlayout.addWidget(self.prefsTabWidget,0,0,1,1)

        self.hboxlayout76 = QtGui.QHBoxLayout()
        self.hboxlayout76.setMargin(0)
        self.hboxlayout76.setSpacing(6)
        self.hboxlayout76.setObjectName("hboxlayout76")

        self.whatsThisToolButton = QtGui.QToolButton(PreferencesDialog)
        self.whatsThisToolButton.setObjectName("whatsThisToolButton")
        self.hboxlayout76.addWidget(self.whatsThisToolButton)

        spacerItem72 = QtGui.QSpacerItem(321,23,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum)
        self.hboxlayout76.addItem(spacerItem72)

        self.okButton = QtGui.QPushButton(PreferencesDialog)
        self.okButton.setObjectName("okButton")
        self.hboxlayout76.addWidget(self.okButton)
        self.gridlayout.addLayout(self.hboxlayout76,1,0,1,1)
        self.rotationSensitivity_txtlbl.setBuddy(self.mouseSpeedDuringRotation_slider)
        self.atomDistPrecisionLabel.setBuddy(self.dynamicToolTipAtomDistancePrecision_spinbox)
        self.textLabel1_8_3.setBuddy(self.dynamicToolTipBendAnglePrecision_spinbox)

        self.retranslateUi(PreferencesDialog)
        self.prefsTabWidget.setCurrentIndex(0)
        self.prefsStackedWidget.setCurrentIndex(3)
        self.level_of_detail_combox.setCurrentIndex(2)
        QtCore.QMetaObject.connectSlotsByName(PreferencesDialog)

    def retranslateUi(self, PreferencesDialog):
        PreferencesDialog.setWindowTitle(QtGui.QApplication.translate("PreferencesDialog", "Preferences", None, QtGui.QApplication.UnicodeUTF8))
        self.categoryTreeWidget.headerItem().setText(0,QtGui.QApplication.translate("PreferencesDialog", "Categories", None, QtGui.QApplication.UnicodeUTF8))
        self.categoryTreeWidget.clear()

        item = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item.setText(0,QtGui.QApplication.translate("PreferencesDialog", "General", None, QtGui.QApplication.UnicodeUTF8))

        item1 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item1.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Color", None, QtGui.QApplication.UnicodeUTF8))

        item2 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item2.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Graphics Area", None, QtGui.QApplication.UnicodeUTF8))

        item3 = QtGui.QTreeWidgetItem(item2)
        item3.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Zoom, Pan and Rotate", None, QtGui.QApplication.UnicodeUTF8))

        item4 = QtGui.QTreeWidgetItem(item2)
        item4.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Rulers", None, QtGui.QApplication.UnicodeUTF8))

        item5 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item5.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Atoms", None, QtGui.QApplication.UnicodeUTF8))

        item6 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item6.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Bonds", None, QtGui.QApplication.UnicodeUTF8))

        item7 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item7.setText(0,QtGui.QApplication.translate("PreferencesDialog", "DNA", None, QtGui.QApplication.UnicodeUTF8))

        item8 = QtGui.QTreeWidgetItem(item7)
        item8.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Minor Groove Error Indicators", None, QtGui.QApplication.UnicodeUTF8))

        item9 = QtGui.QTreeWidgetItem(item7)
        item9.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Base Orientation Indicators", None, QtGui.QApplication.UnicodeUTF8))

        item10 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item10.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Adjust", None, QtGui.QApplication.UnicodeUTF8))

        item11 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item11.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Lighting", None, QtGui.QApplication.UnicodeUTF8))

        item12 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item12.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Plug-ins", None, QtGui.QApplication.UnicodeUTF8))

        item13 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item13.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Undo", None, QtGui.QApplication.UnicodeUTF8))

        item14 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item14.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Window", None, QtGui.QApplication.UnicodeUTF8))

        item15 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item15.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Reports", None, QtGui.QApplication.UnicodeUTF8))

        item16 = QtGui.QTreeWidgetItem(self.categoryTreeWidget)
        item16.setText(0,QtGui.QApplication.translate("PreferencesDialog", "Tooltips", None, QtGui.QApplication.UnicodeUTF8))
        self.sponsorLogosGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Sponsor logos download permission", None, QtGui.QApplication.UnicodeUTF8))
        self.logoAlwaysAskRadioBtn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Always ask permission to download sponsor logos from the Nanorex server", None, QtGui.QApplication.UnicodeUTF8))
        self.logoAlwaysAskRadioBtn.setText(QtGui.QApplication.translate("PreferencesDialog", "Always ask before downloading", None, QtGui.QApplication.UnicodeUTF8))
        self.logoNeverAskRadioBtn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Never ask permission before downloading sponsor logos from the Nanorex server", None, QtGui.QApplication.UnicodeUTF8))
        self.logoNeverAskRadioBtn.setText(QtGui.QApplication.translate("PreferencesDialog", "Never ask before downloading", None, QtGui.QApplication.UnicodeUTF8))
        self.logoNeverDownLoadRadioBtn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Never download sponsor logos from the Nanorex server", None, QtGui.QApplication.UnicodeUTF8))
        self.logoNeverDownLoadRadioBtn.setText(QtGui.QApplication.translate("PreferencesDialog", "Never download", None, QtGui.QApplication.UnicodeUTF8))
        self.buildmode_groupbox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Build Chunks settings", None, QtGui.QApplication.UnicodeUTF8))
        self.autobond_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Build mode\'s default setting for Autobonding at startup (enabled/disabled)", None, QtGui.QApplication.UnicodeUTF8))
        self.autobond_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Autobond", None, QtGui.QApplication.UnicodeUTF8))
        self.buildmode_highlighting_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Build mode\'s default setting for Highlighting at startup (enabled/disabled)", None, QtGui.QApplication.UnicodeUTF8))
        self.buildmode_highlighting_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Hover highlighting", None, QtGui.QApplication.UnicodeUTF8))
        self.water_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Build mode\'s default setting for Water at startup (enabled/disabled)", None, QtGui.QApplication.UnicodeUTF8))
        self.water_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Water", None, QtGui.QApplication.UnicodeUTF8))
        self.buildmode_select_atoms_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Automatically select atoms when depositing", None, QtGui.QApplication.UnicodeUTF8))
        self.buildmode_select_atoms_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Auto select atoms of deposited objects", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox_2.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Offset factor for pasting objects", None, QtGui.QApplication.UnicodeUTF8))
        self.pasteOffsetForDna_lable.setText(QtGui.QApplication.translate("PreferencesDialog", "Dna objects:", None, QtGui.QApplication.UnicodeUTF8))
        self.pasteOffsetForChunks_lable.setText(QtGui.QApplication.translate("PreferencesDialog", "Chunk objects:", None, QtGui.QApplication.UnicodeUTF8))
        self.backgroundGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Background", None, QtGui.QApplication.UnicodeUTF8))
        self.enableFogCheckBox.setText(QtGui.QApplication.translate("PreferencesDialog", "Enable fog", None, QtGui.QApplication.UnicodeUTF8))
        self.label_8.setText(QtGui.QApplication.translate("PreferencesDialog", "Color scheme:", None, QtGui.QApplication.UnicodeUTF8))
        self.hoverHighlightingStyleGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Hover highlighting style", None, QtGui.QApplication.UnicodeUTF8))
        self.label_21.setText(QtGui.QApplication.translate("PreferencesDialog", "Color:", None, QtGui.QApplication.UnicodeUTF8))
        self.hoverHighlightingColorButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.selectionColorStyleGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Selection style", None, QtGui.QApplication.UnicodeUTF8))
        self.label_22.setText(QtGui.QApplication.translate("PreferencesDialog", "Color:", None, QtGui.QApplication.UnicodeUTF8))
        self.selectionColorButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.label_25.setText(QtGui.QApplication.translate("PreferencesDialog", "Halo width:", None, QtGui.QApplication.UnicodeUTF8))
        self.haloWidthSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " pixels", None, QtGui.QApplication.UnicodeUTF8))
        self.haloWidthResetButton.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Restore default value", None, QtGui.QApplication.UnicodeUTF8))
        self.label_9.setText(QtGui.QApplication.translate("PreferencesDialog", "Global display style at start-up:", None, QtGui.QApplication.UnicodeUTF8))
        self.compassGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Display compass", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_4.setText(QtGui.QApplication.translate("PreferencesDialog", "Location :", None, QtGui.QApplication.UnicodeUTF8))
        self.compass_position_combox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Upper right", None, QtGui.QApplication.UnicodeUTF8))
        self.compass_position_combox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Upper left", None, QtGui.QApplication.UnicodeUTF8))
        self.compass_position_combox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Lower left", None, QtGui.QApplication.UnicodeUTF8))
        self.compass_position_combox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Lower right", None, QtGui.QApplication.UnicodeUTF8))
        self.display_compass_labels_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Show/Hide Display Compass", None, QtGui.QApplication.UnicodeUTF8))
        self.display_compass_labels_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Display compass labels", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox7_2.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Axes", None, QtGui.QApplication.UnicodeUTF8))
        self.display_pov_axis_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Show/Hide Point of View Axis", None, QtGui.QApplication.UnicodeUTF8))
        self.display_pov_axis_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Display point of view (POV) axis", None, QtGui.QApplication.UnicodeUTF8))
        self.display_origin_axis_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Show/Hide Origin Axis", None, QtGui.QApplication.UnicodeUTF8))
        self.display_origin_axis_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Display origin axis", None, QtGui.QApplication.UnicodeUTF8))
        self.cursorTextGroupBox.setWhatsThis(QtGui.QApplication.translate("PreferencesDialog", "<b>Cursor text</b><p>Display/hide the cursor text. The cursor text displays information next to the cursor during some interactive modeling commands, such as <b>Insert DNA</b></p>", None, QtGui.QApplication.UnicodeUTF8))
        self.cursorTextGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Cursor text", None, QtGui.QApplication.UnicodeUTF8))
        self.label_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Font size:", None, QtGui.QApplication.UnicodeUTF8))
        self.cursorTextFontSizeSpinBox.setWhatsThis(QtGui.QApplication.translate("PreferencesDialog", "<b>Font size</b><p>Font point size for cursor text.</p>", None, QtGui.QApplication.UnicodeUTF8))
        self.cursorTextFontSizeSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " pt", None, QtGui.QApplication.UnicodeUTF8))
        self.cursorTextFontSizeResetButton.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Restore default value", None, QtGui.QApplication.UnicodeUTF8))
        self.cursorTextFontSizeResetButton.setWhatsThis(QtGui.QApplication.translate("PreferencesDialog", "Restore the default font size.", None, QtGui.QApplication.UnicodeUTF8))
        self.label_26.setText(QtGui.QApplication.translate("PreferencesDialog", "Color:", None, QtGui.QApplication.UnicodeUTF8))
        self.cursorTextColorFrame.setWhatsThis(QtGui.QApplication.translate("PreferencesDialog", "Current color of cursor text.", None, QtGui.QApplication.UnicodeUTF8))
        self.cursorTextColorButton.setWhatsThis(QtGui.QApplication.translate("PreferencesDialog", "Choose cursor text color.", None, QtGui.QApplication.UnicodeUTF8))
        self.cursorTextColorButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.display_confirmation_corner_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Show/hide the Confirmation Corner", None, QtGui.QApplication.UnicodeUTF8))
        self.display_confirmation_corner_checkbox.setWhatsThis(QtGui.QApplication.translate("PreferencesDialog", "<b>Display confirmation corner</b><p>Displays/hides the Confirmation Corner.</p>", None, QtGui.QApplication.UnicodeUTF8))
        self.display_confirmation_corner_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Display confirmation corner", None, QtGui.QApplication.UnicodeUTF8))
        self.enable_antialiasing_checkbox.setWhatsThis(QtGui.QApplication.translate("PreferencesDialog", "<b>Enable anti-aliasing</b><p>Enables/disables anti-aliasing. NE1 must be restarted in order for this setting to take effect.</p><p><b>Attention!</b> Enabling anti-aliasing works only on graphics card hardware that supports it. This is likely to slow drawing performance.</p>", None, QtGui.QApplication.UnicodeUTF8))
        self.enable_antialiasing_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Enable anti-aliasing (next session)", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox8.setTitle(QtGui.QApplication.translate("PreferencesDialog", "View rotation settings", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_5.setText(QtGui.QApplication.translate("PreferencesDialog", "View animation speed:", None, QtGui.QApplication.UnicodeUTF8))
        self.rotationSensitivity_txtlbl.setText(QtGui.QApplication.translate("PreferencesDialog", "Mouse rotation speed:", None, QtGui.QApplication.UnicodeUTF8))
        self.resetAnimationSpeed_btn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Restore default value", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel3_4.setText(QtGui.QApplication.translate("PreferencesDialog", "Fast", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel3_4_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Fast", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel2_3_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Slow", None, QtGui.QApplication.UnicodeUTF8))
        self.animation_speed_slider.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "View Animation Speed", None, QtGui.QApplication.UnicodeUTF8))
        self.resetMouseSpeedDuringRotation_btn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Restore default value", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel2_3.setText(QtGui.QApplication.translate("PreferencesDialog", "Slow", None, QtGui.QApplication.UnicodeUTF8))
        self.animate_views_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable/disable animation between current view and a new view", None, QtGui.QApplication.UnicodeUTF8))
        self.animate_views_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Animate between views", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox_4.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Mouse wheel settings", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox_4.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Mouse wheel zoom settings", None, QtGui.QApplication.UnicodeUTF8))
        self.label_19.setText(QtGui.QApplication.translate("PreferencesDialog", "Direction:", None, QtGui.QApplication.UnicodeUTF8))
        self.label_17.setText(QtGui.QApplication.translate("PreferencesDialog", "Zoom in:", None, QtGui.QApplication.UnicodeUTF8))
        self.label_18.setText(QtGui.QApplication.translate("PreferencesDialog", "Zoom out:", None, QtGui.QApplication.UnicodeUTF8))
        self.mouseWheelDirectionComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Pull/push wheel to zoom in/out", None, QtGui.QApplication.UnicodeUTF8))
        self.mouseWheelDirectionComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Push/pull wheel to zoom in/out", None, QtGui.QApplication.UnicodeUTF8))
        self.mouseWheelZoomInPointComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Center about cursor position", None, QtGui.QApplication.UnicodeUTF8))
        self.mouseWheelZoomInPointComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Center about screen", None, QtGui.QApplication.UnicodeUTF8))
        self.mouseWheelZoomOutPointComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Center about cursor position", None, QtGui.QApplication.UnicodeUTF8))
        self.mouseWheelZoomOutPointComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Center about screen", None, QtGui.QApplication.UnicodeUTF8))
        self.label_20.setText(QtGui.QApplication.translate("PreferencesDialog", "Hover highlighting timeout interval:", None, QtGui.QApplication.UnicodeUTF8))
        self.hhTimeoutIntervalDoubleSpinBox.setWhatsThis(QtGui.QApplication.translate("PreferencesDialog", "The hover highlighting timeout interval, which delays hover highlighting while zooming via the mouse wheel.", None, QtGui.QApplication.UnicodeUTF8))
        self.hhTimeoutIntervalDoubleSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " seconds", None, QtGui.QApplication.UnicodeUTF8))
        self.panSettingsGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Pan settings", None, QtGui.QApplication.UnicodeUTF8))
        self.panArrowKeysDirectionComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "View direction", None, QtGui.QApplication.UnicodeUTF8))
        self.panArrowKeysDirectionComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Camera direction", None, QtGui.QApplication.UnicodeUTF8))
        self.label_28.setText(QtGui.QApplication.translate("PreferencesDialog", "Arrow keys control:", None, QtGui.QApplication.UnicodeUTF8))
        self.rulersGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Rulers", None, QtGui.QApplication.UnicodeUTF8))
        self.label_5.setText(QtGui.QApplication.translate("PreferencesDialog", "Opacity:", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel3_2_4.setText(QtGui.QApplication.translate("PreferencesDialog", "Color:", None, QtGui.QApplication.UnicodeUTF8))
        self.label_10.setText(QtGui.QApplication.translate("PreferencesDialog", "Origin:", None, QtGui.QApplication.UnicodeUTF8))
        self.rulerPositionComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Lower left", None, QtGui.QApplication.UnicodeUTF8))
        self.rulerPositionComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Upper left", None, QtGui.QApplication.UnicodeUTF8))
        self.rulerPositionComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Lower right", None, QtGui.QApplication.UnicodeUTF8))
        self.rulerPositionComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Upper right", None, QtGui.QApplication.UnicodeUTF8))
        self.ruler_color_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.rulerOpacitySpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", "%", None, QtGui.QApplication.UnicodeUTF8))
        self.rulerDisplayComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Both rulers", None, QtGui.QApplication.UnicodeUTF8))
        self.rulerDisplayComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Vertical ruler only", None, QtGui.QApplication.UnicodeUTF8))
        self.rulerDisplayComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Horizontal ruler only", None, QtGui.QApplication.UnicodeUTF8))
        self.label_12.setText(QtGui.QApplication.translate("PreferencesDialog", "Display:", None, QtGui.QApplication.UnicodeUTF8))
        self.showRulersInPerspectiveViewCheckBox.setText(QtGui.QApplication.translate("PreferencesDialog", "Show rulers in perspective view", None, QtGui.QApplication.UnicodeUTF8))
        self.atom_colors_grpbox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Colors", None, QtGui.QApplication.UnicodeUTF8))
        self.change_element_colors_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Change Element Colors...", None, QtGui.QApplication.UnicodeUTF8))
        self.atom_hilite_color_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.hotspot_lbl_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Bondpoint highlighting :", None, QtGui.QApplication.UnicodeUTF8))
        self.hotspot_color_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel3_2_3.setText(QtGui.QApplication.translate("PreferencesDialog", "Atom highlighting :", None, QtGui.QApplication.UnicodeUTF8))
        self.bondpoint_hilite_color_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.hotspot_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "Bondpoint hotspot  :", None, QtGui.QApplication.UnicodeUTF8))
        self.reset_atom_colors_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Restore Default Colors", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_3_2.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Set Atom Scale factor for Ball and Stick display mode", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_3_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Ball and stick atom scale :", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_3_2_2.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "CPK Atom Scale factor for CPK display mode", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_3_2_2.setText(QtGui.QApplication.translate("PreferencesDialog", "CPK atom scale :", None, QtGui.QApplication.UnicodeUTF8))
        self.level_of_detail_combox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Sets graphics quality for atoms (and bonds)", None, QtGui.QApplication.UnicodeUTF8))
        self.level_of_detail_combox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Low", None, QtGui.QApplication.UnicodeUTF8))
        self.level_of_detail_combox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Medium", None, QtGui.QApplication.UnicodeUTF8))
        self.level_of_detail_combox.addItem(QtGui.QApplication.translate("PreferencesDialog", "High", None, QtGui.QApplication.UnicodeUTF8))
        self.level_of_detail_combox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Variable", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_7.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Level of detail for atoms (and bonds)", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_7.setText(QtGui.QApplication.translate("PreferencesDialog", "Level of detail :", None, QtGui.QApplication.UnicodeUTF8))
        self.reset_cpk_scale_factor_btn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Restore default value", None, QtGui.QApplication.UnicodeUTF8))
        self.reset_ballstick_scale_factor_btn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Restore default value", None, QtGui.QApplication.UnicodeUTF8))
        self.ballStickAtomScaleFactorSpinBox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Set Atom Scale factor for Ball and Stick display mode", None, QtGui.QApplication.UnicodeUTF8))
        self.ballStickAtomScaleFactorSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", "%", None, QtGui.QApplication.UnicodeUTF8))
        self.overlappingAtomIndicatorsCheckBox.setText(QtGui.QApplication.translate("PreferencesDialog", "Overlapping atom indicators", None, QtGui.QApplication.UnicodeUTF8))
        self.keepBondsTransmuteCheckBox.setText(QtGui.QApplication.translate("PreferencesDialog", "Force to keep bonds during transmute", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox4.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Colors", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel3_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Bond highlighting :", None, QtGui.QApplication.UnicodeUTF8))
        self.bond_stretch_color_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.bond_hilite_color_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel3_3.setText(QtGui.QApplication.translate("PreferencesDialog", "Vane/Ribbon :", None, QtGui.QApplication.UnicodeUTF8))
        self.ballstick_bondcolor_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel3.setText(QtGui.QApplication.translate("PreferencesDialog", "Ball and stick cylinder :", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel3_2_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Bond stretch :", None, QtGui.QApplication.UnicodeUTF8))
        self.bond_vane_color_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.reset_bond_colors_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Restore Default Colors", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_3.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Set scale (size) factor for the cylinder representing bonds in Ball and Stick display mode", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_3.setText(QtGui.QApplication.translate("PreferencesDialog", "Ball and stick bond scale :", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Bond thickness (in pixels) for Lines Display Mode", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1.setText(QtGui.QApplication.translate("PreferencesDialog", "Bond line thickness :", None, QtGui.QApplication.UnicodeUTF8))
        self.cpk_cylinder_rad_spinbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Set scale (size) factor for the cylinder representing bonds in Ball and Stick display mode", None, QtGui.QApplication.UnicodeUTF8))
        self.cpk_cylinder_rad_spinbox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", "%", None, QtGui.QApplication.UnicodeUTF8))
        self.bond_line_thickness_spinbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Bond thickness (in pixels) for Lines Display Mode", None, QtGui.QApplication.UnicodeUTF8))
        self.bond_line_thickness_spinbox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " pixel", None, QtGui.QApplication.UnicodeUTF8))
        self.high_order_bond_display_groupbox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "High Order Bonds", None, QtGui.QApplication.UnicodeUTF8))
        self.multCyl_radioButton.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Display high order bonds using multiple cylinders", None, QtGui.QApplication.UnicodeUTF8))
        self.multCyl_radioButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Multiple cylinders", None, QtGui.QApplication.UnicodeUTF8))
        self.vanes_radioButton.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Display pi systems in high order bonds as Vanes", None, QtGui.QApplication.UnicodeUTF8))
        self.vanes_radioButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Vanes", None, QtGui.QApplication.UnicodeUTF8))
        self.ribbons_radioButton.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Display pi systems in high order bonds as Ribbons", None, QtGui.QApplication.UnicodeUTF8))
        self.ribbons_radioButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Ribbons", None, QtGui.QApplication.UnicodeUTF8))
        self.show_bond_labels_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Display Bond Type Label", None, QtGui.QApplication.UnicodeUTF8))
        self.show_bond_labels_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Show bond type letters", None, QtGui.QApplication.UnicodeUTF8))
        self.show_valence_errors_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable/Disable Valence Error Checker", None, QtGui.QApplication.UnicodeUTF8))
        self.show_valence_errors_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Show valence errors", None, QtGui.QApplication.UnicodeUTF8))
        self.showBondStretchIndicators_checkBox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable/Disable Display of Bond Stretch Indicators", None, QtGui.QApplication.UnicodeUTF8))
        self.showBondStretchIndicators_checkBox.setText(QtGui.QApplication.translate("PreferencesDialog", "Show  bond stretch indicators", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "DNA default values", None, QtGui.QApplication.UnicodeUTF8))
        self.label_24.setText(QtGui.QApplication.translate("PreferencesDialog", "Strand2 color:", None, QtGui.QApplication.UnicodeUTF8))
        self.label_23.setText(QtGui.QApplication.translate("PreferencesDialog", "Strand1 color:", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaDefaultStrand1ColorPushButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaConformationComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "B-DNA", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaDefaultSegmentColorPushButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.label_6.setText(QtGui.QApplication.translate("PreferencesDialog", "Rise:", None, QtGui.QApplication.UnicodeUTF8))
        self.label_11.setText(QtGui.QApplication.translate("PreferencesDialog", "Conformation:", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaDefaultStrand2ColorPushButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.label_4.setText(QtGui.QApplication.translate("PreferencesDialog", "Bases per turn:", None, QtGui.QApplication.UnicodeUTF8))
        self.label_7.setText(QtGui.QApplication.translate("PreferencesDialog", "Segment color:", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaRiseDoubleSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " Angstroms", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaRestoreFactoryDefaultsPushButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Restore Factory Defaults", None, QtGui.QApplication.UnicodeUTF8))
        self.dna_reduced_model_options_grpbox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Strand arrowhead display options", None, QtGui.QApplication.UnicodeUTF8))
        self.strandFivePrimeArrowheadsCustomColorCheckBox.setText(QtGui.QApplication.translate("PreferencesDialog", "5\' End Custom color:", None, QtGui.QApplication.UnicodeUTF8))
        self.strandFivePrimeArrowheadsCustomColorPushButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.strandThreePrimeArrowheadsCustomColorCheckBox.setText(QtGui.QApplication.translate("PreferencesDialog", "3\' End Custom color:", None, QtGui.QApplication.UnicodeUTF8))
        self.strandThreePrimeArrowheadsCustomColorPushButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.arrowsOnFivePrimeEnds_checkBox.setText(QtGui.QApplication.translate("PreferencesDialog", "Show arrows on 5\' ends", None, QtGui.QApplication.UnicodeUTF8))
        self.arrowsOnThreePrimeEnds_checkBox.setText(QtGui.QApplication.translate("PreferencesDialog", "Show arrows on 3\' ends", None, QtGui.QApplication.UnicodeUTF8))
        self.arrowsOnBackBones_checkBox.setText(QtGui.QApplication.translate("PreferencesDialog", "Show arrows on back bones", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaDisplayMinorGrooveErrorGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Display minor groove error indicators", None, QtGui.QApplication.UnicodeUTF8))
        self.label_15.setText(QtGui.QApplication.translate("PreferencesDialog", "Minimum angle:", None, QtGui.QApplication.UnicodeUTF8))
        self.label_16.setText(QtGui.QApplication.translate("PreferencesDialog", "Maximum angle:", None, QtGui.QApplication.UnicodeUTF8))
        self.bg1_color_lbl_3.setText(QtGui.QApplication.translate("PreferencesDialog", "Color:", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaMinGrooveAngleSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " degrees", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaMaxGrooveAngleSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " degrees", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaGrooveIndicatorColorButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaMinorGrooveRestoreFactoryDefaultsPushButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Restore Factory Defaults", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaDisplayBaseOrientationIndicatorsGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Display base orientation indicators", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaBaseIndicatorsPlaneNormalComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "View plane (up)", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaBaseIndicatorsPlaneNormalComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "View plane (out)", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaBaseIndicatorsPlaneNormalComboBox.addItem(QtGui.QApplication.translate("PreferencesDialog", "View plane (right)", None, QtGui.QApplication.UnicodeUTF8))
        self.bg1_color_lbl_6.setText(QtGui.QApplication.translate("PreferencesDialog", "Inverse indicators color:", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaChooseBaseOrientationIndicatorsInvColorButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaBaseOrientationIndicatorsInverseCheckBox.setText(QtGui.QApplication.translate("PreferencesDialog", "Enable inverse indicators", None, QtGui.QApplication.UnicodeUTF8))
        self.label_35.setText(QtGui.QApplication.translate("PreferencesDialog", "Plane normal:", None, QtGui.QApplication.UnicodeUTF8))
        self.label_13.setText(QtGui.QApplication.translate("PreferencesDialog", "Angle threshold:", None, QtGui.QApplication.UnicodeUTF8))
        self.dnaChooseBaseOrientationIndicatorsColorButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.label_14.setText(QtGui.QApplication.translate("PreferencesDialog", "Terminal base distance:", None, QtGui.QApplication.UnicodeUTF8))
        self.bg1_color_lbl_5.setText(QtGui.QApplication.translate("PreferencesDialog", "Indicators color:", None, QtGui.QApplication.UnicodeUTF8))
        self.adjustPhysicsEngineGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Adjust physics engine", None, QtGui.QApplication.UnicodeUTF8))
        self.adjustEngineCombobox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Choose the simulation engine with which to minimize energy.", None, QtGui.QApplication.UnicodeUTF8))
        self.adjustEngineCombobox.addItem(QtGui.QApplication.translate("PreferencesDialog", "NanoDynamics-1 (Default)", None, QtGui.QApplication.UnicodeUTF8))
        self.adjustEngineCombobox.addItem(QtGui.QApplication.translate("PreferencesDialog", "GROMACS with ND1 Force Field", None, QtGui.QApplication.UnicodeUTF8))
        self.adjustEngineCombobox.addItem(QtGui.QApplication.translate("PreferencesDialog", "Background GROMACS with ND1 Force Field", None, QtGui.QApplication.UnicodeUTF8))
        self.electrostaticsForDnaDuringAdjust_checkBox.setText(QtGui.QApplication.translate("PreferencesDialog", "Enable electrostatics for DNA reduced model", None, QtGui.QApplication.UnicodeUTF8))
        self.watch_motion_groupbox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Watch motion in real time", None, QtGui.QApplication.UnicodeUTF8))
        self.update_asap_rbtn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Update every 2 seconds, or faster if it doesn\'t slow adjustments by more than 20%", None, QtGui.QApplication.UnicodeUTF8))
        self.update_asap_rbtn.setText(QtGui.QApplication.translate("PreferencesDialog", "Update as fast as possible", None, QtGui.QApplication.UnicodeUTF8))
        self.update_every_rbtn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Specify how often to update the screen during adjustments", None, QtGui.QApplication.UnicodeUTF8))
        self.update_every_rbtn.setText(QtGui.QApplication.translate("PreferencesDialog", "Update every", None, QtGui.QApplication.UnicodeUTF8))
        self.update_number_spinbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Specify how often to update the screen during adjustments", None, QtGui.QApplication.UnicodeUTF8))
        self.update_units_combobox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Specify how often to update the screen during adjustments", None, QtGui.QApplication.UnicodeUTF8))
        self.update_units_combobox.addItem(QtGui.QApplication.translate("PreferencesDialog", "frames", None, QtGui.QApplication.UnicodeUTF8))
        self.update_units_combobox.addItem(QtGui.QApplication.translate("PreferencesDialog", "seconds", None, QtGui.QApplication.UnicodeUTF8))
        self.update_units_combobox.addItem(QtGui.QApplication.translate("PreferencesDialog", "minutes", None, QtGui.QApplication.UnicodeUTF8))
        self.update_units_combobox.addItem(QtGui.QApplication.translate("PreferencesDialog", "hours", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox20.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Convergence criteria", None, QtGui.QApplication.UnicodeUTF8))
        self.endrms_lbl.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Target RMS force (pN)", None, QtGui.QApplication.UnicodeUTF8))
        self.endrms_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "EndRMS:", None, QtGui.QApplication.UnicodeUTF8))
        self.endmax_lbl.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Target max force (pN)", None, QtGui.QApplication.UnicodeUTF8))
        self.endmax_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "EndMax:", None, QtGui.QApplication.UnicodeUTF8))
        self.cutoverrms_lbl.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Cutover RMS force (pN)", None, QtGui.QApplication.UnicodeUTF8))
        self.cutoverrms_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "CutoverRMS:", None, QtGui.QApplication.UnicodeUTF8))
        self.cutovermax_lbl.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Cutover max force (pN)", None, QtGui.QApplication.UnicodeUTF8))
        self.cutovermax_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "CutoverMax:", None, QtGui.QApplication.UnicodeUTF8))
        self.endRmsDoubleSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " pN", None, QtGui.QApplication.UnicodeUTF8))
        self.endMaxDoubleSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " pN", None, QtGui.QApplication.UnicodeUTF8))
        self.cutoverRmsDoubleSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " pN", None, QtGui.QApplication.UnicodeUTF8))
        self.cutoverMaxDoubleSpinBox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " pN", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox8_2.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Directional light properties", None, QtGui.QApplication.UnicodeUTF8))
        self.light_combobox.addItem(QtGui.QApplication.translate("PreferencesDialog", "1 (On)", None, QtGui.QApplication.UnicodeUTF8))
        self.light_combobox.addItem(QtGui.QApplication.translate("PreferencesDialog", "2 (On)", None, QtGui.QApplication.UnicodeUTF8))
        self.light_combobox.addItem(QtGui.QApplication.translate("PreferencesDialog", "3 (Off)", None, QtGui.QApplication.UnicodeUTF8))
        self.light_color_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Choose...", None, QtGui.QApplication.UnicodeUTF8))
        self.light_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Light :", None, QtGui.QApplication.UnicodeUTF8))
        self.on_label.setText(QtGui.QApplication.translate("PreferencesDialog", "On :", None, QtGui.QApplication.UnicodeUTF8))
        self.color_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Color :", None, QtGui.QApplication.UnicodeUTF8))
        self.ambient_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Ambient :", None, QtGui.QApplication.UnicodeUTF8))
        self.diffuse_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Diffuse :", None, QtGui.QApplication.UnicodeUTF8))
        self.specularity_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Specular :", None, QtGui.QApplication.UnicodeUTF8))
        self.x_label.setText(QtGui.QApplication.translate("PreferencesDialog", "X :", None, QtGui.QApplication.UnicodeUTF8))
        self.y_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Y :", None, QtGui.QApplication.UnicodeUTF8))
        self.z_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Z :", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox9_2.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Material specular properties", None, QtGui.QApplication.UnicodeUTF8))
        self.ms_on_label.setText(QtGui.QApplication.translate("PreferencesDialog", "On:", None, QtGui.QApplication.UnicodeUTF8))
        self.ms_finish_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Finish:", None, QtGui.QApplication.UnicodeUTF8))
        self.ms_shininess_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Shininess:", None, QtGui.QApplication.UnicodeUTF8))
        self.ms_brightness__label.setText(QtGui.QApplication.translate("PreferencesDialog", "Brightness:", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_6.setText(QtGui.QApplication.translate("PreferencesDialog", "Metal", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel2_4.setText(QtGui.QApplication.translate("PreferencesDialog", "Plastic", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_6_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Flat", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel2_4_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Glossy", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_6_3.setText(QtGui.QApplication.translate("PreferencesDialog", "Low", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel2_4_3.setText(QtGui.QApplication.translate("PreferencesDialog", "High", None, QtGui.QApplication.UnicodeUTF8))
        self.lighting_restore_defaults_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Restore Defaults", None, QtGui.QApplication.UnicodeUTF8))
        self.file_locations_grp.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Location of executables", None, QtGui.QApplication.UnicodeUTF8))
        self.qutemol_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable QuteMolX", None, QtGui.QApplication.UnicodeUTF8))
        self.qutemol_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "QuteMolX:", None, QtGui.QApplication.UnicodeUTF8))
        self.qutemol_path_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "The full path to the QuteMolX executable file.", None, QtGui.QApplication.UnicodeUTF8))
        self.qutemol_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.nanohive_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable NanoHive-1", None, QtGui.QApplication.UnicodeUTF8))
        self.nanohive_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "NanoHive-1:", None, QtGui.QApplication.UnicodeUTF8))
        self.nanohive_path_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "The full path to the NanoHive-1 executable file.", None, QtGui.QApplication.UnicodeUTF8))
        self.nanohive_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.povray_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable POV-Ray", None, QtGui.QApplication.UnicodeUTF8))
        self.povray_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "POV-Ray:", None, QtGui.QApplication.UnicodeUTF8))
        self.povray_path_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "The full path to the POV-Ray executable file.", None, QtGui.QApplication.UnicodeUTF8))
        self.povray_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.megapov_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable MegaPOV", None, QtGui.QApplication.UnicodeUTF8))
        self.megapov_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "MegaPOV:", None, QtGui.QApplication.UnicodeUTF8))
        self.megapov_path_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "The full path to the MegaPOV executable file (megapov.exe).", None, QtGui.QApplication.UnicodeUTF8))
        self.megapov_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.povdir_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Custom directory for POV libraries", None, QtGui.QApplication.UnicodeUTF8))
        self.povdir_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "POV include dir:", None, QtGui.QApplication.UnicodeUTF8))
        self.povdir_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Select custom POV include directory", None, QtGui.QApplication.UnicodeUTF8))
        self.povdir_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.gamess_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable GAMESS", None, QtGui.QApplication.UnicodeUTF8))
        self.gamess_lbl.setText(QtGui.QApplication.translate("PreferencesDialog", "GAMESS:", None, QtGui.QApplication.UnicodeUTF8))
        self.gamess_path_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "The gamess executable file. Usually it\'s called gamess.??.x or ??gamess.exe.", None, QtGui.QApplication.UnicodeUTF8))
        self.gamess_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.gromacs_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable GROMACS", None, QtGui.QApplication.UnicodeUTF8))
        self.gromacs_label.setText(QtGui.QApplication.translate("PreferencesDialog", "GROMACS:", None, QtGui.QApplication.UnicodeUTF8))
        self.gromacs_path_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "The full path to the mdrun executable file for GROMACS.", None, QtGui.QApplication.UnicodeUTF8))
        self.gromacs_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.cpp_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable cpp (needed by GROMACS)", None, QtGui.QApplication.UnicodeUTF8))
        self.cpp_label.setText(QtGui.QApplication.translate("PreferencesDialog", "cpp:", None, QtGui.QApplication.UnicodeUTF8))
        self.cpp_path_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "The full path to the C-preprocessor (cpp) executable file for GROMACS to use.", None, QtGui.QApplication.UnicodeUTF8))
        self.cpp_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.nv1_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable NanoVision-1", None, QtGui.QApplication.UnicodeUTF8))
        self.nv1_label.setText(QtGui.QApplication.translate("PreferencesDialog", "NanoVision-1:", None, QtGui.QApplication.UnicodeUTF8))
        self.nv1_path_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "The full path to the mdrun executable file for NanoVision-1.", None, QtGui.QApplication.UnicodeUTF8))
        self.nv1_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.rosetta_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable Rosetta", None, QtGui.QApplication.UnicodeUTF8))
        self.rosetta_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Rosetta:", None, QtGui.QApplication.UnicodeUTF8))
        self.rosetta_path_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "The full path to Rosetta executable file.", None, QtGui.QApplication.UnicodeUTF8))
        self.rosetta_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.rosetta_db_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Enable Rosetta Database", None, QtGui.QApplication.UnicodeUTF8))
        self.rosetta_db_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Rosetta DB:", None, QtGui.QApplication.UnicodeUTF8))
        self.rosetta_db_path_lineedit.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "The top-level Rosetta database directory.", None, QtGui.QApplication.UnicodeUTF8))
        self.rosetta_db_choose_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "...", None, QtGui.QApplication.UnicodeUTF8))
        self.undo_restore_view_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Undo will switch to the view saved with each structural change.", None, QtGui.QApplication.UnicodeUTF8))
        self.undo_restore_view_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Restore view when undoing structural changes", None, QtGui.QApplication.UnicodeUTF8))
        self.undo_automatic_checkpoints_checkbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Specify Automatic or Manual Checkpoints at program startup.", None, QtGui.QApplication.UnicodeUTF8))
        self.undo_automatic_checkpoints_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Automatic checkpoints", None, QtGui.QApplication.UnicodeUTF8))
        self.undo_stack_memory_limit_label.setText(QtGui.QApplication.translate("PreferencesDialog", "Undo stack memory limit:", None, QtGui.QApplication.UnicodeUTF8))
        self.undo_stack_memory_limit_spinbox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " MB", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox10.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Window position and size", None, QtGui.QApplication.UnicodeUTF8))
        self.remember_win_pos_and_size_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Always save current position and size when quitting", None, QtGui.QApplication.UnicodeUTF8))
        self.save_current_btn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Save current window position and size for next startup", None, QtGui.QApplication.UnicodeUTF8))
        self.save_current_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Save Current Size", None, QtGui.QApplication.UnicodeUTF8))
        self.restore_saved_size_btn.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Save current window position and size for next startup", None, QtGui.QApplication.UnicodeUTF8))
        self.restore_saved_size_btn.setText(QtGui.QApplication.translate("PreferencesDialog", "Restore Saved Size", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Current size:", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_2_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Saved size:", None, QtGui.QApplication.UnicodeUTF8))
        self.current_width_spinbox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " pixels", None, QtGui.QApplication.UnicodeUTF8))
        self.current_height_spinbox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " pixels", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_2_2_2.setText(QtGui.QApplication.translate("PreferencesDialog", "x", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_2_2_2_2.setText(QtGui.QApplication.translate("PreferencesDialog", "x", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox3.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Window Border Caption Format", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox3.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Window caption format", None, QtGui.QApplication.UnicodeUTF8))
        self.caption_fullpath_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Display full path of part", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel2_2.setText(QtGui.QApplication.translate("PreferencesDialog", "Caption suffix for modified file:", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel2.setText(QtGui.QApplication.translate("PreferencesDialog", "Caption prefix for modified file:", None, QtGui.QApplication.UnicodeUTF8))
        self.selectedFontGroupBox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Use custom font", None, QtGui.QApplication.UnicodeUTF8))
        self.makeDefaultFontPushButton.setText(QtGui.QApplication.translate("PreferencesDialog", "Make selected font the default font", None, QtGui.QApplication.UnicodeUTF8))
        self.label.setText(QtGui.QApplication.translate("PreferencesDialog", "Font :", None, QtGui.QApplication.UnicodeUTF8))
        self.label_3.setText(QtGui.QApplication.translate("PreferencesDialog", "Size :", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox17.setTitle(QtGui.QApplication.translate("PreferencesDialog", "History preferences", None, QtGui.QApplication.UnicodeUTF8))
        self.msg_serial_number_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Include message serial number", None, QtGui.QApplication.UnicodeUTF8))
        self.msg_timestamp_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Include message timestamp", None, QtGui.QApplication.UnicodeUTF8))
        self.atom_dynamic_tooltips_grpbox.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Atom tooltip options", None, QtGui.QApplication.UnicodeUTF8))
        self.dynamicToolTipAtomChunkInfo_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Chunk information", None, QtGui.QApplication.UnicodeUTF8))
        self.dynamicToolTipAtomMass_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Mass information", None, QtGui.QApplication.UnicodeUTF8))
        self.dynamicToolTipAtomPosition_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "XYZ coordinates", None, QtGui.QApplication.UnicodeUTF8))
        self.dynamicToolTipAtomDistanceDeltas_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "XYZ distance deltas ", None, QtGui.QApplication.UnicodeUTF8))
        self.includeVdwRadiiInAtomDistanceInfo.setText(QtGui.QApplication.translate("PreferencesDialog", "Include Vdw radii in atom distance tooltip", None, QtGui.QApplication.UnicodeUTF8))
        self.atomDistPrecisionLabel.setText(QtGui.QApplication.translate("PreferencesDialog", "Distance precision:", None, QtGui.QApplication.UnicodeUTF8))
        self.dynamicToolTipAtomDistancePrecision_spinbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Sets the number of digits after the decimal places", None, QtGui.QApplication.UnicodeUTF8))
        self.dynamicToolTipAtomDistancePrecision_spinbox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " decimal places", None, QtGui.QApplication.UnicodeUTF8))
        self.dynamicToolTipBendAnglePrecision_spinbox.setToolTip(QtGui.QApplication.translate("PreferencesDialog", "Sets the number of digits after the decimal places", None, QtGui.QApplication.UnicodeUTF8))
        self.dynamicToolTipBendAnglePrecision_spinbox.setSuffix(QtGui.QApplication.translate("PreferencesDialog", " decimal places", None, QtGui.QApplication.UnicodeUTF8))
        self.textLabel1_8_3.setText(QtGui.QApplication.translate("PreferencesDialog", "Angle precision:", None, QtGui.QApplication.UnicodeUTF8))
        self.groupBox35.setTitle(QtGui.QApplication.translate("PreferencesDialog", "Bond tooltip options", None, QtGui.QApplication.UnicodeUTF8))
        self.dynamicToolTipBondChunkInfo_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Chunk information", None, QtGui.QApplication.UnicodeUTF8))
        self.dynamicToolTipBondLength_checkbox.setText(QtGui.QApplication.translate("PreferencesDialog", "Distance between atom centers", None, QtGui.QApplication.UnicodeUTF8))
        self.prefsTabWidget.setTabText(self.prefsTabWidget.indexOf(self.systemOptionsTab), QtGui.QApplication.translate("PreferencesDialog", "System Options", None, QtGui.QApplication.UnicodeUTF8))
        self.okButton.setText(QtGui.QApplication.translate("PreferencesDialog", "OK", None, QtGui.QApplication.UnicodeUTF8))