File: class-tree.html

package info (click to toggle)
camelot 10.07.02-c2-4
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 35,864 kB
  • ctags: 28,700
  • sloc: python: 14,067; makefile: 125; sh: 32
file content (2570 lines) | stat: -rw-r--r-- 173,782 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>Class Hierarchy</title>
  <link rel="stylesheet" href="epydoc.css" type="text/css" />
  <script type="text/javascript" src="epydoc.js"></script>
</head>

<body bgcolor="white" text="black" link="blue" vlink="#204080"
      alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
       bgcolor="#a0c0ff" cellspacing="0">
  <tr valign="middle">
  <!-- Home link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="Camelot.camelot-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Tree link -->
      <th bgcolor="#70b0f0" class="navbar-select"
          >&nbsp;&nbsp;&nbsp;Trees&nbsp;&nbsp;&nbsp;</th>

  <!-- Index link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Help link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Project homepage -->
      <th class="navbar" align="right" width="100%">
        <table border="0" cellpadding="0" cellspacing="0">
          <tr><th class="navbar" align="center"
            ><a class="navbar" target="_top" href="http://www.python-camelot.com">Camelot</a></th>
          </tr></table></th>
  </tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
  <tr valign="top">
    <td width="100%">&nbsp;</td>
    <td>
      <table cellpadding="0" cellspacing="0">
        <!-- hide/show private -->
        <tr><td align="right"><span class="options"
            >[<a href="frames.html" target="_top">frames</a
            >]&nbsp;|&nbsp;<a href="class-tree.html"
            target="_top">no&nbsp;frames</a>]</span></td></tr>
      </table>
    </td>
  </tr>
</table>
<center><b>
 [ <a href="module-tree.html">Module Hierarchy</a>
 | <a href="class-tree.html">Class Hierarchy</a> ]
</b></center><br />
<h1 class="epydoc">Class Hierarchy</h1>
<ul class="nomargin-top">
    <li> <strong class="uidlink"><a href="Camelot.camelot.bin.camelot_manage.FileCacher-class.html">Camelot.camelot.bin.camelot_manage.FileCacher</a></strong>:
      <em class="summary">Cache the stdout text so we can analyze it before returning it</em>
    </li>
    <li> <strong class="uidlink">code.InteractiveInterpreter</strong>:
      <em class="summary">Base class for InteractiveConsole.</em>
    <ul>
    <li> <strong class="uidlink">code.InteractiveConsole</strong>:
      <em class="summary">Closely emulate the behavior of the interactive Python interpreter.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.bin.camelot_manage.Shell-class.html">Camelot.camelot.bin.camelot_manage.Shell</a></strong>:
      <em class="summary">Wrapper around Python that can filter input/output to the shell</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">optparse.OptionContainer</strong>:
      <em class="summary">Abstract base class.</em>
    <ul>
    <li> <strong class="uidlink">optparse.OptionParser</strong>:
      <em class="summary">Class attributes:
  standard_option_list : [Option]
    list of standard options that will be accepted by all instances
    of this parser class (intended to be overridden by subclasses).</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.bin.camelot_admin.CommandOptionParser-class.html">Camelot.camelot.bin.camelot_admin.CommandOptionParser</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.bin.camelot_manage.CommandOptionParser-class.html">Camelot.camelot.bin.camelot_manage.CommandOptionParser</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.printer.Printer-class.html">Camelot.camelot.view.controls.printer.Printer</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.UTF8Recoder-class.html">Camelot.camelot.view.wizard.importwizard.UTF8Recoder</a></strong>:
      <em class="summary">Iterator that reads an encoded stream and reencodes the input to
UTF-8.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.UnicodeReader-class.html">Camelot.camelot.view.wizard.importwizard.UnicodeReader</a></strong>:
      <em class="summary">A CSV reader which will iterate over lines in the CSV file &quot;f&quot;, which is
encoded in the given encoding.</em>
    </li>
    <li> <strong class="uidlink">object</strong>:
      <em class="summary">The most base type</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.customeditor.AbstractCustomEditor-class.html">Camelot.camelot.view.controls.editors.customeditor.AbstractCustomEditor</a></strong>:
      <em class="summary">Helper class to be used to build custom editors.  This class provides
functionallity to store and retrieve ValueLoading as an editor's value.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.booleditor.BoolEditor-class.html">Camelot.camelot.view.controls.editors.booleditor.BoolEditor</a></strong>:
      <em class="summary">Widget for editing a boolean field</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.choiceseditor.ChoicesEditor-class.html">Camelot.camelot.view.controls.editors.choiceseditor.ChoicesEditor</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor-class.html">Camelot.camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.customeditor.CustomEditor-class.html">Camelot.camelot.view.controls.editors.customeditor.CustomEditor</a></strong>:
      <em class="summary">Base class for implementing custom editor widgets.  This class provides
dual state functionality.  Each editor should have the posibility to have as
its value ValueLoading specifying that no value has been set yet.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.codeeditor.CodeEditor-class.html">Camelot.camelot.view.controls.editors.codeeditor.CodeEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.coloreditor.ColorEditor-class.html">Camelot.camelot.view.controls.editors.coloreditor.ColorEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor-class.html">Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.dateeditor.DateEditor-class.html">Camelot.camelot.view.controls.editors.dateeditor.DateEditor</a></strong>:
      <em class="summary">Widget for editing date values</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.datetimeeditor.DateTimeEditor-class.html">Camelot.camelot.view.controls.editors.datetimeeditor.DateTimeEditor</a></strong>:
      <em class="summary">Widget for editing date and time separated and with popups</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor-class.html">Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor</a></strong>:
      <em class="summary">Widget for editing a many 2 one relation a a form embedded in another
form.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.fileeditor.FileEditor-class.html">Camelot.camelot.view.controls.editors.fileeditor.FileEditor</a></strong>:
      <em class="summary">Widget for editing File fields</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.imageeditor.ImageEditor-class.html">Camelot.camelot.view.controls.editors.imageeditor.ImageEditor</a></strong>:
      <em class="summary">Editor to view and edit image files, this is a customized implementation
of a FileEditor</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.floateditor.FloatEditor-class.html">Camelot.camelot.view.controls.editors.floateditor.FloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.integereditor.IntegerEditor-class.html">Camelot.camelot.view.controls.editors.integereditor.IntegerEditor</a></strong>:
      <em class="summary">Widget for editing an integer field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html">Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor</a></strong>:
      <em class="summary">Widget for editing many 2 one relations</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor-class.html">Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor-class.html">Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html">Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.smileyeditor.SmileyEditor-class.html">Camelot.camelot.view.controls.editors.smileyeditor.SmileyEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.stareditor.StarEditor-class.html">Camelot.camelot.view.controls.editors.stareditor.StarEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor-class.html">Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.labeleditor.LabelEditor-class.html">Camelot.camelot.view.controls.editors.labeleditor.LabelEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.noteeditor.NoteEditor-class.html">Camelot.camelot.view.controls.editors.noteeditor.NoteEditor</a></strong>:
      <em class="summary">An editor that behaves like a note, the editor hides itself when
there is no text to display</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.booleditor.TextBoolEditor-class.html">Camelot.camelot.view.controls.editors.booleditor.TextBoolEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor-class.html">Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.textlineeditor.TextLineEditor-class.html">Camelot.camelot.view.controls.editors.textlineeditor.TextLineEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.timeeditor.TimeEditor-class.html">Camelot.camelot.view.controls.editors.timeeditor.TimeEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.editors.customeditor.AbstractCustomEditor</strong>:
      <em class="summary">Helper class to be used to build custom editors.  This class provides
functionallity to store and retrieve <a href="Camelot.camelot.view.proxy.ValueLoading-class.html" class="link">ValueLoading</a> as an editor's value.</em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.booleditor.BoolEditor-class.html">camelot.view.controls.editors.booleditor.BoolEditor</a></strong>:
      <em class="summary">Widget for editing a boolean field</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.choiceseditor.ChoicesEditor-class.html">camelot.view.controls.editors.choiceseditor.ChoicesEditor</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor-class.html">camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.editors.customeditor.CustomEditor</strong>:
      <em class="summary">Base class for implementing custom editor widgets.  This class provides
dual state functionality.  Each editor should have the posibility to have as
its value <a href="Camelot.camelot.view.proxy.ValueLoading-class.html" class="link">ValueLoading</a> specifying that no value has been set yet.</em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.codeeditor.CodeEditor-class.html">camelot.view.controls.editors.codeeditor.CodeEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.coloreditor.ColorEditor-class.html">camelot.view.controls.editors.coloreditor.ColorEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor-class.html">camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.dateeditor.DateEditor-class.html">camelot.view.controls.editors.dateeditor.DateEditor</a></strong>:
      <em class="summary">Widget for editing date values</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.datetimeeditor.DateTimeEditor-class.html">camelot.view.controls.editors.datetimeeditor.DateTimeEditor</a></strong>:
      <em class="summary">Widget for editing date and time separated and with popups</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.fileeditor.FileEditor-class.html">camelot.view.controls.editors.fileeditor.FileEditor</a></strong>:
      <em class="summary">Widget for editing File fields</em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.imageeditor.ImageEditor-class.html">camelot.view.controls.editors.imageeditor.ImageEditor</a></strong>:
      <em class="summary">Editor to view and edit image files, this is a customized implementation
of a FileEditor</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.floateditor.FloatEditor-class.html">camelot.view.controls.editors.floateditor.FloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.integereditor.IntegerEditor-class.html">camelot.view.controls.editors.integereditor.IntegerEditor</a></strong>:
      <em class="summary">Widget for editing an integer field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html">camelot.view.controls.editors.many2oneeditor.Many2OneEditor</a></strong>:
      <em class="summary">Widget for editing many 2 one relations</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html">camelot.view.controls.editors.richtexteditor.RichTextEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.smileyeditor.SmileyEditor-class.html">camelot.view.controls.editors.smileyeditor.SmileyEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.stareditor.StarEditor-class.html">camelot.view.controls.editors.stareditor.StarEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor-class.html">camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.labeleditor.LabelEditor-class.html">camelot.view.controls.editors.labeleditor.LabelEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.noteeditor.NoteEditor-class.html">camelot.view.controls.editors.noteeditor.NoteEditor</a></strong>:
      <em class="summary">An editor that behaves like a note, the editor hides itself when
there is no text to display</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.booleditor.TextBoolEditor-class.html">camelot.view.controls.editors.booleditor.TextBoolEditor</a></strong>:
      <em class="summary">Widget for editing a boolean field</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.textediteditor.TextEditEditor-class.html">camelot.view.controls.editors.textediteditor.TextEditEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.textlineeditor.TextLineEditor-class.html">camelot.view.controls.editors.textlineeditor.TextLineEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.timeeditor.TimeEditor-class.html">camelot.view.controls.editors.timeeditor.TimeEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.editors.abstractmanytooneeditor.AbstractManyToOneEditor</strong>:
      <em class="summary">Helper functions for implementing a <code class="link">ManyToOneEditor</code>, to be used in the
<code class="link">ManyToOneEditor</code> and in the <a href="Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor-class.html" class="link">ManyToManyEditor</a></em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html">camelot.view.controls.editors.many2oneeditor.Many2OneEditor</a></strong>:
      <em class="summary">Widget for editing many 2 one relations</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.abstractmanytooneeditor.AbstractManyToOneEditor-class.html">Camelot.camelot.view.controls.editors.abstractmanytooneeditor.AbstractManyToOneEditor</a></strong>:
      <em class="summary">Helper functions for implementing a <code class="link">ManyToOneEditor</code>, to be used in the
<code class="link">ManyToOneEditor</code> and in the <a href="Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor-class.html" class="link">ManyToManyEditor</a></em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html">Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor</a></strong>:
      <em class="summary">Widget for editing many 2 one relations</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor-class.html">Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.model_thread.AbstractModelThread-class.html">Camelot.camelot.view.model_thread.AbstractModelThread</a></strong>:
      <em class="summary">Abstract implementation of a model thread class
Thread in which the model runs, all requests to the model should be
posted to the the model thread.</em>
    </li>
    <li> <strong class="uidlink">camelot.view.model_thread.AbstractModelThread</strong>:
      <em class="summary">Abstract implementation of a model thread class
Thread in which the model runs, all requests to the model should be
posted to the the model thread.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.model_thread.no_thread_model_thread.NoThreadModelThread-class.html">Camelot.camelot.view.model_thread.no_thread_model_thread.NoThreadModelThread</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.model_thread.signal_slot_model_thread.SignalSlotModelThread-class.html">Camelot.camelot.view.model_thread.signal_slot_model_thread.SignalSlotModelThread</a></strong>:
      <em class="summary">A model thread implementation that uses signals and slots
to communicate between the model thread and the gui thread</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">sqlalchemy.types.AbstractType</strong>
    <ul>
    <li> <strong class="uidlink">sqlalchemy.types.TypeDecorator</strong>:
      <em class="summary">Allows the creation of types which add additional functionality
to an existing type.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.types.Code-class.html">Camelot.camelot.types.Code</a></strong>:
      <em class="summary">SQLAlchemy column type to store codes.  Where a code is a list of strings
on which a regular expression can be enforced.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.types.IPAddress-class.html">Camelot.camelot.types.IPAddress</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.types.Color-class.html">Camelot.camelot.types.Color</a></strong>:
      <em class="summary">The Color field returns and accepts tuples of the form (r,g,b,a) where
r,g,b,a are integers between 0 and 255. The color is stored as an hexadecimal
string of the form AARRGGBB into the database, where AA is the transparency,
RR is red, GG is green BB is blue:</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.types.Enumeration-class.html">Camelot.camelot.types.Enumeration</a></strong>:
      <em class="summary">The enumeration field stores integers in the database, but represents them as
strings.  This allows efficient storage and querying while preserving readable code.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.types.File-class.html">Camelot.camelot.types.File</a></strong>:
      <em class="summary">Sqlalchemy column type to store files.  Only the location of the file is stored</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.types.Image-class.html">Camelot.camelot.types.Image</a></strong>:
      <em class="summary">Sqlalchemy column type to store images</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.types.Language-class.html">Camelot.camelot.types.Language</a></strong>:
      <em class="summary">The languages are stored as ISO codes in the database</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.types.Rating-class.html">Camelot.camelot.types.Rating</a></strong>:
      <em class="summary">The rating field is an integer field that is visualized as a number of stars that
can be selected:</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.types.RichText-class.html">Camelot.camelot.types.RichText</a></strong>:
      <em class="summary">RichText fields are unlimited text fields which contain html.  The html will be
rendered in a rich text editor.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.types.VirtualAddress-class.html">Camelot.camelot.types.VirtualAddress</a></strong>:
      <em class="summary">A single field that can be used to enter phone numbers, fax numbers, email
addresses, im addresses.</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">sqlalchemy.types.TypeEngine</strong>:
      <em class="summary">Base for built-in types.</em>
    <ul>
    <li> <strong class="uidlink"><a href="sqlalchemy.types.Integer-class.html">sqlalchemy.types.Integer</a></strong>:
      <em class="summary">A type for <tt class="rst-docutils literal">int</tt> integers.</em>
    </li>
    <li> <strong class="uidlink">sqlalchemy.types.String</strong>:
      <em class="summary">The base for all string and character types.</em>
    <ul>
    <li> <strong class="uidlink">sqlalchemy.types.Text</strong>:
      <em class="summary">A variably sized string type.</em>
    <ul>
    <li> <strong class="uidlink"><a href="sqlalchemy.types.UnicodeText-class.html">sqlalchemy.types.UnicodeText</a></strong>:
      <em class="summary">A synonym for Text(convert_unicode=True, assert_unicode='warn').</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="sqlalchemy.types.Unicode-class.html">sqlalchemy.types.Unicode</a></strong>:
      <em class="summary">A variable length Unicode string.</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.application_action.ApplicationAction-class.html">Camelot.camelot.admin.application_action.ApplicationAction</a></strong>:
      <em class="summary">An action that can be triggered by the user at the application level</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.application_action.ApplicationActionFromGuiFunction-class.html">Camelot.camelot.admin.application_action.ApplicationActionFromGuiFunction</a></strong>:
      <em class="summary">Create an application action object from a function that is supposed to run
in the GUI thread</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.application_action.TableViewAction-class.html">Camelot.camelot.admin.application_action.TableViewAction</a></strong>:
      <em class="summary">An application action that opens a TableView for an Entity</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.field_label.Attribute-class.html">Camelot.camelot.view.controls.field_label.Attribute</a></strong>:
      <em class="summary">Helper class representing a field attribute's name and its value</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.core.backup.BackupMechanism-class.html">Camelot.camelot.core.backup.BackupMechanism</a></strong>:
      <em class="summary">Create a backup of the current database to an sqlite database stored in
filename.</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.core.backup.BackupMechanism-class.html">camelot.core.backup.BackupMechanism</a></strong>:
      <em class="summary">Create a backup of the current database to an sqlite database stored in
filename.</em>
    </li>
    <li> <strong class="uidlink">exceptions.BaseException</strong>:
      <em class="summary">Common base class for all exceptions</em>
    <ul>
    <li> <strong class="uidlink">exceptions.Exception</strong>:
      <em class="summary">Common base class for all non-exit exceptions.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.model_thread.ModelThreadException-class.html">Camelot.camelot.view.model_thread.ModelThreadException</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.utils.ParsingError-class.html">Camelot.camelot.view.utils.ParsingError</a></strong>
    </li>
    <li> <strong class="uidlink">exceptions.StandardError</strong>:
      <em class="summary">Base class for all standard Python exceptions that do not represent
interpreter exiting.</em>
    <ul>
    <li> <strong class="uidlink"><a href="exceptions.AssertionError-class.html">exceptions.AssertionError</a></strong>:
      <em class="summary">Assertion failed.</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">camelot.view.plugins.CamelotEditorPlugin</strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.imageeditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.imageeditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.codeeditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.codeeditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.richtexteditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.richtexteditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.dateeditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.dateeditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.manytooneeditorplugin.ManyToOneEditorPlugin-class.html">Camelot.camelot.view.plugins.manytooneeditorplugin.ManyToOneEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.onetomanyeditorplugin.OneToManyEditorPlugin-class.html">Camelot.camelot.view.plugins.onetomanyeditorplugin.OneToManyEditorPlugin</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.CamelotEditorPlugin-class.html">Camelot.camelot.view.plugins.CamelotEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.art.ColorScheme-class.html">Camelot.camelot.view.art.ColorScheme</a></strong>:
      <em class="summary">The default color scheme for camelot, based on the Tango icon set
see <a class="rst-reference external" href="http://tango.freedesktop.org/Generic_Icon_Theme_Guidelines" target="_top">http://tango.freedesktop.org/Generic_Icon_Theme_Guidelines</a></em>
    </li>
    <li> <strong class="uidlink">sqlalchemy.types.Concatenable</strong>:
      <em class="summary">A mixin that marks a type as supporting 'concatenation', typically strings.</em>
    <ul>
    <li> <strong class="uidlink">sqlalchemy.types.String</strong>:
      <em class="summary">The base for all string and character types.</em>
    <ul>
    <li> <strong class="uidlink">sqlalchemy.types.Text</strong>:
      <em class="summary">A variably sized string type.</em>
    <ul>
    <li> <strong class="uidlink"><a href="sqlalchemy.types.UnicodeText-class.html">sqlalchemy.types.UnicodeText</a></strong>:
      <em class="summary">A synonym for Text(convert_unicode=True, assert_unicode='warn').</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="sqlalchemy.types.Unicode-class.html">sqlalchemy.types.Unicode</a></strong>:
      <em class="summary">A variable length Unicode string.</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.container.Container-class.html">Camelot.camelot.container.Container</a></strong>:
      <em class="summary">Top level class for all container classes</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.container.IntervalsContainer-class.html">Camelot.camelot.container.IntervalsContainer</a></strong>:
      <em class="summary">Containter to hold interval data</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.CsvCollectionGetter-class.html">Camelot.camelot.view.wizard.importwizard.CsvCollectionGetter</a></strong>:
      <em class="summary">class that when called returns the data in filename as a list of RowData
objects</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.proxy.collection_proxy.DelayedProxy-class.html">Camelot.camelot.view.proxy.collection_proxy.DelayedProxy</a></strong>:
      <em class="summary">A proxy object needs to be constructed within the GUI thread. Construct
a delayed proxy when the construction of a proxy is needed within the Model
thread.  On first occasion the delayed proxy will be converted to a real
proxy within the GUI thread</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.field_attributes.DummyField-class.html">Camelot.camelot.view.field_attributes.DummyField</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.proxy.collection_proxy.EmptyRowData-class.html">Camelot.camelot.view.proxy.collection_proxy.EmptyRowData</a></strong>
    </li>
    <li> <strong class="uidlink">elixir.entity.Entity</strong>:
      <em class="summary">The base class for all entities</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.Address-class.html">Camelot.camelot.model.authentication.Address</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.AuthenticationMechanism-class.html">Camelot.camelot.model.authentication.AuthenticationMechanism</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.UsernameAuthenticationMechanism-class.html">Camelot.camelot.model.authentication.UsernameAuthenticationMechanism</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.batch_job.BatchJob-class.html">Camelot.camelot.model.batch_job.BatchJob</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.batch_job.BatchJobType-class.html">Camelot.camelot.model.batch_job.BatchJobType</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.ContactMechanism-class.html">Camelot.camelot.model.authentication.ContactMechanism</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.fixture.Fixture-class.html">Camelot.camelot.model.fixture.Fixture</a></strong>:
      <em class="summary">Keep track of static data loaded into the database</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.fixture.FixtureVersion-class.html">Camelot.camelot.model.fixture.FixtureVersion</a></strong>:
      <em class="summary">Keep track of the version the fixtures have in the current database, the subversion
revision number is a good candidate to be used as a fixture version.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.GeographicBoundary-class.html">Camelot.camelot.model.authentication.GeographicBoundary</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.City-class.html">Camelot.camelot.model.authentication.City</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.Country-class.html">Camelot.camelot.model.authentication.Country</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.memento.Memento-class.html">Camelot.camelot.model.memento.Memento</a></strong>:
      <em class="summary">Keeps information on the previous state of objects, to keep track
of changes and enable restore to that previous state</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.memento.BeforeDelete-class.html">Camelot.camelot.model.memento.BeforeDelete</a></strong>:
      <em class="summary">The state of the object before it is deleted</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.memento.BeforeUpdate-class.html">Camelot.camelot.model.memento.BeforeUpdate</a></strong>:
      <em class="summary">The state of the object before an update took place</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.memento.Create-class.html">Camelot.camelot.model.memento.Create</a></strong>:
      <em class="summary">Marks the creation of an object</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.Party-class.html">Camelot.camelot.model.authentication.Party</a></strong>:
      <em class="summary">Base class for persons and organizations.  Use this base class to refer to either persons or
organisations in building authentication systems, contact management or CRM</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.Organization-class.html">Camelot.camelot.model.authentication.Organization</a></strong>:
      <em class="summary">An organization represents any internal or external organization.  Organizations can include
businesses and groups of individuals</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.Person-class.html">Camelot.camelot.model.authentication.Person</a></strong>:
      <em class="summary">Person represents natural persons</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.PartyAddress-class.html">Camelot.camelot.model.authentication.PartyAddress</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.PartyAddressRoleType-class.html">Camelot.camelot.model.authentication.PartyAddressRoleType</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.PartyAuthentication-class.html">Camelot.camelot.model.authentication.PartyAuthentication</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.PartyContactMechanism-class.html">Camelot.camelot.model.authentication.PartyContactMechanism</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.PartyRelationship-class.html">Camelot.camelot.model.authentication.PartyRelationship</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.DirectedDirector-class.html">Camelot.camelot.model.authentication.DirectedDirector</a></strong>:
      <em class="summary">Relation from a directed organization to a director</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.EmployerEmployee-class.html">Camelot.camelot.model.authentication.EmployerEmployee</a></strong>:
      <em class="summary">Relation from employer to employee</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.SharedShareholder-class.html">Camelot.camelot.model.authentication.SharedShareholder</a></strong>:
      <em class="summary">Relation from a shared organization to a shareholder</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.SupplierCustomer-class.html">Camelot.camelot.model.authentication.SupplierCustomer</a></strong>:
      <em class="summary">Relation from supplier to customer</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.RepresentedRepresentor-class.html">Camelot.camelot.model.authentication.RepresentedRepresentor</a></strong>:
      <em class="summary">Relation from a representing party to the person representing the party</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.synchronization.Synchronized-class.html">Camelot.camelot.model.synchronization.Synchronized</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.i18n.Translation-class.html">Camelot.camelot.model.i18n.Translation</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.filters.Filter-class.html">Camelot.camelot.view.filters.Filter</a></strong>:
      <em class="summary">Base class for filters</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.filters.ComboBoxFilter-class.html">Camelot.camelot.view.filters.ComboBoxFilter</a></strong>:
      <em class="summary">Filter where the items are displayed in a QComboBox</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.filters.EditorFilter-class.html">Camelot.camelot.view.filters.EditorFilter</a></strong>:
      <em class="summary">Filter that presents the user with an editor, allowing the user to enter
a value on which to filter, and at the same time to show 'All' or 'None'</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.filters.GroupBoxFilter-class.html">Camelot.camelot.view.filters.GroupBoxFilter</a></strong>:
      <em class="summary">Filter where the items are displayed in a QGroupBox</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.filters.ValidDateFilter-class.html">Camelot.camelot.view.filters.ValidDateFilter</a></strong>:
      <em class="summary">Filters entities that are valid a certain date.  This filter will present
a date to the user and filter the entities that have their from date before this
date and their end date after this date.  If no date is given, all entities will
be shown</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.forms.Form-class.html">Camelot.camelot.view.forms.Form</a></strong>:
      <em class="summary">Base Form class to put fields on a form.  A form can be converted to a
QT widget by calling its render method.  The base form uses the QFormLayout
to render a form:</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.forms.ColumnSpan-class.html">Camelot.camelot.view.forms.ColumnSpan</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.forms.GridForm-class.html">Camelot.camelot.view.forms.GridForm</a></strong>:
      <em class="summary">Put different fields into a grid, without a label.  Row or column labels can be added
using the Label form:</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.forms.GroupBoxForm-class.html">Camelot.camelot.view.forms.GroupBoxForm</a></strong>:
      <em class="summary">Renders a form within a QGroupBox:</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.forms.HBoxForm-class.html">Camelot.camelot.view.forms.HBoxForm</a></strong>:
      <em class="summary">Render different forms in a horizontal box:</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.forms.Label-class.html">Camelot.camelot.view.forms.Label</a></strong>:
      <em class="summary">Render a label with a QLabel</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.forms.TabForm-class.html">Camelot.camelot.view.forms.TabForm</a></strong>:
      <em class="summary">Render forms within a QTabWidget:</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.forms.VBoxForm-class.html">Camelot.camelot.view.forms.VBoxForm</a></strong>:
      <em class="summary">Render different forms or widgets in a vertical box:</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.forms.WidgetOnlyForm-class.html">Camelot.camelot.view.forms.WidgetOnlyForm</a></strong>:
      <em class="summary">Renders a single widget without its label, typically a one2many widget</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.form_action.FormAction-class.html">Camelot.camelot.admin.form_action.FormAction</a></strong>:
      <em class="summary">Abstract base class to implement form actions</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.form_action.FormActionFromGuiFunction-class.html">Camelot.camelot.admin.form_action.FormActionFromGuiFunction</a></strong>:
      <em class="summary">Convert a function that is supposed to run in the GUI thread to a FormAction,
or</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.form_action.FormActionFromModelFunction-class.html">Camelot.camelot.admin.form_action.FormActionFromModelFunction</a></strong>:
      <em class="summary">Convert a function that is supposed to run in the model thread to a FormAction.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.form_action.DocxFormAction-class.html">Camelot.camelot.admin.form_action.DocxFormAction</a></strong>:
      <em class="summary">Action that generates a .docx file and opens it.  It does so by generating an xml document
with jinja templates that is a valid word document.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.form_action.PrintHtmlFormAction-class.html">Camelot.camelot.admin.form_action.PrintHtmlFormAction</a></strong>:
      <em class="summary">Create an action for a form that pops up a print preview for generated html.</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.container.Interval-class.html">Camelot.camelot.container.Interval</a></strong>:
      <em class="summary">Helper class for IntervalsContainer, specifications for one interval</em>
    </li>
    <li> <strong class="uidlink">camelot.admin.list_action.ListAction</strong>:
      <em class="summary">Abstract base class to implement list actions</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.i18n.ExportAsPO-class.html">Camelot.camelot.model.i18n.ExportAsPO</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.list_action.ListAction-class.html">Camelot.camelot.admin.list_action.ListAction</a></strong>:
      <em class="summary">Abstract base class to implement list actions</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.list_action.ListActionFromGuiFunction-class.html">Camelot.camelot.admin.list_action.ListActionFromGuiFunction</a></strong>:
      <em class="summary">Convert a function that is supposed to run in the GUI thread to a ListAction</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.list_action.ListActionFromModelFunction-class.html">Camelot.camelot.admin.list_action.ListActionFromModelFunction</a></strong>:
      <em class="summary">Convert a function that is supposed to run in the model thread to a FormAction</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.list_action.OpenFileListAction-class.html">Camelot.camelot.admin.list_action.OpenFileListAction</a></strong>:
      <em class="summary">List action used to open a file in the prefered application of the user.
To be used for example to generate pdfs with reportlab and open them in
the default pdf viewer.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.list_action.PrintHtmlListAction-class.html">Camelot.camelot.admin.list_action.PrintHtmlListAction</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">camelot.admin.object_admin.ObjectAdmin</strong>:
      <em class="summary">The ObjectAdmin class describes the interface that will be used
to interact with objects of a certain class.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.field_label.Attribute.Admin-class.html">Camelot.camelot.view.controls.field_label.Attribute.Admin</a></strong>
    </li>
    <li> <strong class="uidlink">camelot.view.elixir_admin.EntityAdmin</strong>:
      <em class="summary">Admin class specific for classes that are mapped by sqlalchemy.
This allows for much more introspection than the standard ObjectAdmin.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.AddressAdmin-class.html">Camelot.camelot.model.authentication.AddressAdmin</a></strong>:
      <em class="summary">Admin with only the Address information and not the Party information</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.PartyRelationship.Admin-class.html">Camelot.camelot.model.authentication.PartyRelationship.Admin</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.EmployerEmployee.Admin-class.html">Camelot.camelot.model.authentication.EmployerEmployee.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.DirectedDirector.Admin-class.html">Camelot.camelot.model.authentication.DirectedDirector.Admin</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.DirectedDirector.DirectedAdmin-class.html">Camelot.camelot.model.authentication.DirectedDirector.DirectedAdmin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.DirectedDirector.DirectorAdmin-class.html">Camelot.camelot.model.authentication.DirectedDirector.DirectorAdmin</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.SharedShareholder.Admin-class.html">Camelot.camelot.model.authentication.SharedShareholder.Admin</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.SharedShareholder.SharedAdmin-class.html">Camelot.camelot.model.authentication.SharedShareholder.SharedAdmin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.SharedShareholder.ShareholderAdmin-class.html">Camelot.camelot.model.authentication.SharedShareholder.ShareholderAdmin</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.SupplierCustomer.Admin-class.html">Camelot.camelot.model.authentication.SupplierCustomer.Admin</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.UsernameAuthenticationMechanism.Admin-class.html">Camelot.camelot.model.authentication.UsernameAuthenticationMechanism.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.PartyAddress.Admin-class.html">Camelot.camelot.model.authentication.PartyAddress.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.Address.Admin-class.html">Camelot.camelot.model.authentication.Address.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.Country.Admin-class.html">Camelot.camelot.model.authentication.Country.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.ContactMechanism.Admin-class.html">Camelot.camelot.model.authentication.ContactMechanism.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.i18n.Translation.Admin-class.html">Camelot.camelot.model.i18n.Translation.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.Party.Admin-class.html">Camelot.camelot.model.authentication.Party.Admin</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.Person.Admin-class.html">Camelot.camelot.model.authentication.Person.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.Organization.Admin-class.html">Camelot.camelot.model.authentication.Organization.Admin</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.AuthenticationMechanism.Admin-class.html">Camelot.camelot.model.authentication.AuthenticationMechanism.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.batch_job.BatchJobType.Admin-class.html">Camelot.camelot.model.batch_job.BatchJobType.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.PartyAddressRoleType.Admin-class.html">Camelot.camelot.model.authentication.PartyAddressRoleType.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.City.Admin-class.html">Camelot.camelot.model.authentication.City.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.memento.Memento.Admin-class.html">Camelot.camelot.model.memento.Memento.Admin</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.memento.BeforeUpdate.Admin-class.html">Camelot.camelot.model.memento.BeforeUpdate.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.memento.BeforeDelete.Admin-class.html">Camelot.camelot.model.memento.BeforeDelete.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.memento.Create.Admin-class.html">Camelot.camelot.model.memento.Create.Admin</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.batch_job.BatchJob.Admin-class.html">Camelot.camelot.model.batch_job.BatchJob.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.RepresentedRepresentor.Admin-class.html">Camelot.camelot.model.authentication.RepresentedRepresentor.Admin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.SupplierCustomer.CustomerAdmin-class.html">Camelot.camelot.model.authentication.SupplierCustomer.CustomerAdmin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.EmployerEmployee.EmployeeAdmin-class.html">Camelot.camelot.model.authentication.EmployerEmployee.EmployeeAdmin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.EmployerEmployee.EmployerAdmin-class.html">Camelot.camelot.model.authentication.EmployerEmployee.EmployerAdmin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.PartyContactMechanismAdmin-class.html">Camelot.camelot.model.authentication.PartyContactMechanismAdmin</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.PartyPartyContactMechanismAdmin-class.html">Camelot.camelot.model.authentication.PartyPartyContactMechanismAdmin</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.model.authentication.SupplierCustomer.SupplierAdmin-class.html">Camelot.camelot.model.authentication.SupplierCustomer.SupplierAdmin</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.elixir_admin.EntityAdmin-class.html">Camelot.camelot.view.elixir_admin.EntityAdmin</a></strong>:
      <em class="summary">Admin class specific for classes that are mapped by sqlalchemy.
This allows for much more introspection than the standard ObjectAdmin.</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.object_admin.ObjectAdmin-class.html">Camelot.camelot.admin.object_admin.ObjectAdmin</a></strong>:
      <em class="summary">The ObjectAdmin class describes the interface that will be used
to interact with objects of a certain class.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.art.Pixmap-class.html">Camelot.camelot.view.art.Pixmap</a></strong>:
      <em class="summary">Load pixmaps from the camelot art library</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.art.Icon-class.html">Camelot.camelot.view.art.Icon</a></strong>:
      <em class="summary">Manages paths to the icons images</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.update_value.ReplaceContentsData-class.html">Camelot.camelot.view.wizard.update_value.ReplaceContentsData</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.RowData-class.html">Camelot.camelot.view.wizard.importwizard.RowData</a></strong>:
      <em class="summary">Class representing the data in a single row of the imported file as an
object with attributes column_1, column_2, ..., each representing the data
in a single column of that row.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.RowDataAdminDecorator-class.html">Camelot.camelot.view.wizard.importwizard.RowDataAdminDecorator</a></strong>:
      <em class="summary">Decorator that transforms the Admin of the class to be imported to an
Admin of the RowData objects to be used when previewing and validating the
data to be imported.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.core.files.storage.S3Storage-class.html">Camelot.camelot.core.files.storage.S3Storage</a></strong>:
      <em class="summary">Helper class that opens and saves StoredFile objects into Amazon S3.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.appscheme.Scheme-class.html">Camelot.camelot.view.controls.appscheme.Scheme</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.section.Section-class.html">Camelot.camelot.admin.section.Section</a></strong>:
      <em class="summary">A Section as displayed in the left pane of the application.  Each Section
contains a list of SectionItems the user can click on.  Sections should be used
in the definition of the ApplicationAdmin.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.section.SectionItem-class.html">Camelot.camelot.admin.section.SectionItem</a></strong>:
      <em class="summary">An item inside a section, the user can click on and trigger an action</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.core.files.storage.Storage-class.html">Camelot.camelot.core.files.storage.Storage</a></strong>:
      <em class="summary">Helper class that opens and saves StoredFile objects
The default implementation stores files in the settings.CAMELOT_MEDIA_ROOT
directory.  The storage object should only be used within the model thread,
as all of it's methods might block.</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.core.files.storage.StoredFile-class.html">camelot.core.files.storage.StoredFile</a></strong>:
      <em class="summary">Helper class for the File field type.
Stored file objects can be used within the GUI thread, as none of
its methods should block.</em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.core.files.storage.StoredImage-class.html">camelot.core.files.storage.StoredImage</a></strong>:
      <em class="summary">Helper class for the Image field type Class linking an image and the
location and filename where the image is stored</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.core.files.storage.StoredFile-class.html">Camelot.camelot.core.files.storage.StoredFile</a></strong>:
      <em class="summary">Helper class for the File field type.
Stored file objects can be used within the GUI thread, as none of
its methods should block.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.core.files.storage.StoredImage-class.html">Camelot.camelot.core.files.storage.StoredImage</a></strong>:
      <em class="summary">Helper class for the Image field type Class linking an image and the
location and filename where the image is stored</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">unittest.TestCase</strong>:
      <em class="summary">A class whose instances are single test cases.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.test.test_field_attributes.FromStringTestCase-class.html">Camelot.camelot.test.test_field_attributes.FromStringTestCase</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.test.ModelThreadTestCase-class.html">Camelot.camelot.test.ModelThreadTestCase</a></strong>:
      <em class="summary">Base class for implementing test cases that need a running model_thread.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.test.ApplicationViewsTest-class.html">Camelot.camelot.test.ApplicationViewsTest</a></strong>:
      <em class="summary">Test various application level views, like the main window, the
sidepanel</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.test.EntityViewsTest-class.html">Camelot.camelot.test.EntityViewsTest</a></strong>:
      <em class="summary">Test the views of all the Entity subclasses, subclass this class to test all views
in your application.  This is done by calling the create_table_view and create_new_view
on a set of admin objects.  To tell the test case which admin objects should be tested,
overwrite the get_admins method</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.test.SchemaTest-class.html">Camelot.camelot.test.SchemaTest</a></strong>:
      <em class="summary">Test the database schema</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.proxy.ValueLoading-class.html">Camelot.camelot.view.proxy.ValueLoading</a></strong>:
      <em class="summary">Class indicating that a value was not yet loaded into the
proxy</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.wideeditor.WideEditor-class.html">Camelot.camelot.view.controls.editors.wideeditor.WideEditor</a></strong>:
      <em class="summary">Class signaling that an editor, is a wide editor, so it's label should be displayed
on top of the editor and the editor itself should take two columns:</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor-class.html">Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor</a></strong>:
      <em class="summary">Widget for editing a many 2 one relation a a form embedded in another
form.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.imageeditor.ImageEditor-class.html">Camelot.camelot.view.controls.editors.imageeditor.ImageEditor</a></strong>:
      <em class="summary">Editor to view and edit image files, this is a customized implementation
of a FileEditor</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor-class.html">Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor-class.html">Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html">Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor-class.html">Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.editors.wideeditor.WideEditor</strong>:
      <em class="summary">Class signaling that an editor, is a wide editor, so it's label should be displayed
on top of the editor and the editor itself should take two columns:</em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.imageeditor.ImageEditor-class.html">camelot.view.controls.editors.imageeditor.ImageEditor</a></strong>:
      <em class="summary">Editor to view and edit image files, this is a customized implementation
of a FileEditor</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html">camelot.view.controls.editors.richtexteditor.RichTextEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.textediteditor.TextEditEditor-class.html">camelot.view.controls.editors.textediteditor.TextEditEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">dict</strong>:
      <em class="summary">dict() -&gt; new empty dictionary
dict(mapping) -&gt; new dictionary initialized from a mapping object's
    (key, value) pairs
dict(iterable) -&gt; new dictionary initialized as if via:
    d = {}
    for k, v in iterable:
        d[k] = v
dict(**kwargs) -&gt; new dictionary initialized with the name=value pairs
    in the keyword argument list.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.proxy.collection_proxy.SortingRowMapper-class.html">Camelot.camelot.view.proxy.collection_proxy.SortingRowMapper</a></strong>:
      <em class="summary">Class mapping rows of a collection 1:1 without sorting
and filtering, unless a mapping has been defined explicitly</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.fifo.fifo-class.html">Camelot.camelot.view.fifo.fifo</a></strong>:
      <em class="summary">fifo, is the actual cache containing a limited set of copies of row data
so the data in fifo, is always immediately accessible to the gui thread,
with zero delay as you scroll down the table view, fifo is filled and
refilled with data queried from the database</em>
    </li>
    <li> <strong class="uidlink">int</strong>:
      <em class="summary">int(x[, base]) -&gt; integer</em>
    <ul>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAction.ActionEvent-class.html">PyQt4.QtGui.QAction.ActionEvent</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QMdiArea.AreaOption-class.html">PyQt4.QtGui.QMdiArea.AreaOption</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTextEdit.AutoFormattingFlag-class.html">PyQt4.QtGui.QTextEdit.AutoFormattingFlag</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractSpinBox.ButtonSymbols-class.html">PyQt4.QtGui.QAbstractSpinBox.ButtonSymbols</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsItem.CacheMode-class.html">PyQt4.QtGui.QGraphicsItem.CacheMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsView.CacheModeFlag-class.html">PyQt4.QtGui.QGraphicsView.CacheModeFlag</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTreeWidgetItem.ChildIndicatorPolicy-class.html">PyQt4.QtGui.QTreeWidgetItem.ChildIndicatorPolicy</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractSpinBox.CorrectionMode-class.html">PyQt4.QtGui.QAbstractSpinBox.CorrectionMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemView.CursorAction-class.html">PyQt4.QtGui.QAbstractItemView.CursorAction</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QDialog.DialogCode-class.html">PyQt4.QtGui.QDialog.DialogCode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QMainWindow.DockOption-class.html">PyQt4.QtGui.QMainWindow.DockOption</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QDockWidget.DockWidgetFeature-class.html">PyQt4.QtGui.QDockWidget.DockWidgetFeature</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemView.DragDropMode-class.html">PyQt4.QtGui.QAbstractItemView.DragDropMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsView.DragMode-class.html">PyQt4.QtGui.QGraphicsView.DragMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemView.DropIndicatorPosition-class.html">PyQt4.QtGui.QAbstractItemView.DropIndicatorPosition</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QLineEdit.EchoMode-class.html">PyQt4.QtGui.QLineEdit.EchoMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemView.EditTrigger-class.html">PyQt4.QtGui.QAbstractItemView.EditTrigger</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemDelegate.EndEditHint-class.html">PyQt4.QtGui.QAbstractItemDelegate.EndEditHint</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTextDocument.FindFlag-class.html">PyQt4.QtGui.QTextDocument.FindFlag</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsItem.GraphicsItemChange-class.html">PyQt4.QtGui.QGraphicsItem.GraphicsItemChange</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsItem.GraphicsItemFlag-class.html">PyQt4.QtGui.QGraphicsItem.GraphicsItemFlag</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QComboBox.InsertPolicy-class.html">PyQt4.QtGui.QComboBox.InsertPolicy</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTreeWidgetItem.ItemType-class.html">PyQt4.QtGui.QTreeWidgetItem.ItemType</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTextEdit.LineWrapMode-class.html">PyQt4.QtGui.QTextEdit.LineWrapMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAction.MenuRole-class.html">PyQt4.QtGui.QAction.MenuRole</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTextDocument.MetaInformation-class.html">PyQt4.QtGui.QTextDocument.MetaInformation</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsView.OptimizationFlag-class.html">PyQt4.QtGui.QGraphicsView.OptimizationFlag</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QPaintDevice.PaintDeviceMetric-class.html">PyQt4.QtGui.QPaintDevice.PaintDeviceMetric</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsItem.PanelModality-class.html">PyQt4.QtGui.QGraphicsItem.PanelModality</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAction.Priority-class.html">PyQt4.QtGui.QAction.Priority</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtCore.QThread.Priority-class.html">PyQt4.QtCore.QThread.Priority</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QWidget.RenderFlag-class.html">PyQt4.QtGui.QWidget.RenderFlag</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTextDocument.ResourceType-class.html">PyQt4.QtGui.QTextDocument.ResourceType</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemView.ScrollHint-class.html">PyQt4.QtGui.QAbstractItemView.ScrollHint</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemView.ScrollMode-class.html">PyQt4.QtGui.QAbstractItemView.ScrollMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QDateTimeEdit.Section-class.html">PyQt4.QtGui.QDateTimeEdit.Section</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemView.SelectionBehavior-class.html">PyQt4.QtGui.QAbstractItemView.SelectionBehavior</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemView.SelectionMode-class.html">PyQt4.QtGui.QAbstractItemView.SelectionMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QFrame.Shadow-class.html">PyQt4.QtGui.QFrame.Shadow</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QFrame.Shape-class.html">PyQt4.QtGui.QFrame.Shape</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsPixmapItem.ShapeMode-class.html">PyQt4.QtGui.QGraphicsPixmapItem.ShapeMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QComboBox.SizeAdjustPolicy-class.html">PyQt4.QtGui.QComboBox.SizeAdjustPolicy</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAction.SoftKeyRole-class.html">PyQt4.QtGui.QAction.SoftKeyRole</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemView.State-class.html">PyQt4.QtGui.QAbstractItemView.State</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractSpinBox.StepEnabledFlag-class.html">PyQt4.QtGui.QAbstractSpinBox.StepEnabledFlag</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QFrame.StyleMask-class.html">PyQt4.QtGui.QFrame.StyleMask</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QMdiArea.ViewMode-class.html">PyQt4.QtGui.QMdiArea.ViewMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsView.ViewportAnchor-class.html">PyQt4.QtGui.QGraphicsView.ViewportAnchor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsView.ViewportUpdateMode-class.html">PyQt4.QtGui.QGraphicsView.ViewportUpdateMode</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QMdiArea.WindowOrder-class.html">PyQt4.QtGui.QMdiArea.WindowOrder</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QWizard.WizardButton-class.html">PyQt4.QtGui.QWizard.WizardButton</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QWizard.WizardOption-class.html">PyQt4.QtGui.QWizard.WizardOption</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QWizard.WizardPixmap-class.html">PyQt4.QtGui.QWizard.WizardPixmap</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QWizard.WizardStyle-class.html">PyQt4.QtGui.QWizard.WizardStyle</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">sip.simplewrapper</strong>
    <ul>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QMdiArea.AreaOptions-class.html">PyQt4.QtGui.QMdiArea.AreaOptions</a></strong>:
      <em class="summary">QMdiArea.AreaOptions(QMdiArea.AreaOptions)
QMdiArea.AreaOptions(int)
QMdiArea.AreaOptions()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTextEdit.AutoFormatting-class.html">PyQt4.QtGui.QTextEdit.AutoFormatting</a></strong>:
      <em class="summary">QTextEdit.AutoFormatting(QTextEdit.AutoFormatting)
QTextEdit.AutoFormatting(int)
QTextEdit.AutoFormatting()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsView.CacheMode-class.html">PyQt4.QtGui.QGraphicsView.CacheMode</a></strong>:
      <em class="summary">QGraphicsView.CacheMode(QGraphicsView.CacheMode)
QGraphicsView.CacheMode(int)
QGraphicsView.CacheMode()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QMainWindow.DockOptions-class.html">PyQt4.QtGui.QMainWindow.DockOptions</a></strong>:
      <em class="summary">QMainWindow.DockOptions(QMainWindow.DockOptions)
QMainWindow.DockOptions(int)
QMainWindow.DockOptions()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QDockWidget.DockWidgetFeatures-class.html">PyQt4.QtGui.QDockWidget.DockWidgetFeatures</a></strong>:
      <em class="summary">QDockWidget.DockWidgetFeatures(QDockWidget.DockWidgetFeatures)
QDockWidget.DockWidgetFeatures(int)
QDockWidget.DockWidgetFeatures()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractItemView.EditTriggers-class.html">PyQt4.QtGui.QAbstractItemView.EditTriggers</a></strong>:
      <em class="summary">QAbstractItemView.EditTriggers(QAbstractItemView.EditTriggers)
QAbstractItemView.EditTriggers(int)
QAbstractItemView.EditTriggers()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTextEdit.ExtraSelection-class.html">PyQt4.QtGui.QTextEdit.ExtraSelection</a></strong>:
      <em class="summary">QTextEdit.ExtraSelection()
QTextEdit.ExtraSelection(QTextEdit.ExtraSelection)</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTextDocument.FindFlags-class.html">PyQt4.QtGui.QTextDocument.FindFlags</a></strong>:
      <em class="summary">QTextDocument.FindFlags(QTextDocument.FindFlags)
QTextDocument.FindFlags(int)
QTextDocument.FindFlags()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsItem.GraphicsItemFlags-class.html">PyQt4.QtGui.QGraphicsItem.GraphicsItemFlags</a></strong>:
      <em class="summary">QGraphicsItem.GraphicsItemFlags(QGraphicsItem.GraphicsItemFlags)
QGraphicsItem.GraphicsItemFlags(int)
QGraphicsItem.GraphicsItemFlags()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QGraphicsView.OptimizationFlags-class.html">PyQt4.QtGui.QGraphicsView.OptimizationFlags</a></strong>:
      <em class="summary">QGraphicsView.OptimizationFlags(QGraphicsView.OptimizationFlags)
QGraphicsView.OptimizationFlags(int)
QGraphicsView.OptimizationFlags()</em>
    </li>
    <li> <strong class="uidlink">PyQt4.QtDesigner.QDesignerCustomWidgetInterface</strong>:
      <em class="summary">QDesignerCustomWidgetInterface()
QDesignerCustomWidgetInterface(QDesignerCustomWidgetInterface)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtDesigner.QPyDesignerCustomWidgetPlugin</strong>:
      <em class="summary">QPyDesignerCustomWidgetPlugin(QObject parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.imageeditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.imageeditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.codeeditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.codeeditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.richtexteditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.richtexteditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.dateeditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.dateeditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.manytooneeditorplugin.ManyToOneEditorPlugin-class.html">Camelot.camelot.view.plugins.manytooneeditorplugin.ManyToOneEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.onetomanyeditorplugin.OneToManyEditorPlugin-class.html">Camelot.camelot.view.plugins.onetomanyeditorplugin.OneToManyEditorPlugin</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QPaintDevice</strong>:
      <em class="summary">QPaintDevice()</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QWidget</strong>:
      <em class="summary">QWidget(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.view.AbstractView-class.html">Camelot.camelot.view.controls.view.AbstractView</a></strong>:
      <em class="summary">A string used to format the title of the view ::</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.view.TabView-class.html">Camelot.camelot.view.controls.view.TabView</a></strong>:
      <em class="summary">Class to combine multiple views in Tabs and let them behave as one view.  This class can be
used when defining custom create_table_view methods on an ObjectAdmin class to group multiple
table views together in one view.</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.view.AbstractView</strong>:
      <em class="summary">A string used to format the title of the view ::</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.formview.FormView-class.html">Camelot.camelot.view.controls.formview.FormView</a></strong>:
      <em class="summary">A FormView is the combination of a FormWidget, possible actions and menu items</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.tableview.TableView-class.html">Camelot.camelot.view.controls.tableview.TableView</a></strong>:
      <em class="summary">A generic tableview widget that puts together some other widgets.</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.busy_widget.BusyWidget-class.html">Camelot.camelot.view.controls.busy_widget.BusyWidget</a></strong>:
      <em class="summary">A widget indicating the application is performing some background task.  The widget acts
as an overlay of its parent widget and displays animating orbs</em>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.editors.customeditor.CustomEditor</strong>:
      <em class="summary">Base class for implementing custom editor widgets.  This class provides
dual state functionality.  Each editor should have the posibility to have as
its value <a href="Camelot.camelot.view.proxy.ValueLoading-class.html" class="link">ValueLoading</a> specifying that no value has been set yet.</em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.codeeditor.CodeEditor-class.html">camelot.view.controls.editors.codeeditor.CodeEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.coloreditor.ColorEditor-class.html">camelot.view.controls.editors.coloreditor.ColorEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor-class.html">camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.dateeditor.DateEditor-class.html">camelot.view.controls.editors.dateeditor.DateEditor</a></strong>:
      <em class="summary">Widget for editing date values</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.datetimeeditor.DateTimeEditor-class.html">camelot.view.controls.editors.datetimeeditor.DateTimeEditor</a></strong>:
      <em class="summary">Widget for editing date and time separated and with popups</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.fileeditor.FileEditor-class.html">camelot.view.controls.editors.fileeditor.FileEditor</a></strong>:
      <em class="summary">Widget for editing File fields</em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.imageeditor.ImageEditor-class.html">camelot.view.controls.editors.imageeditor.ImageEditor</a></strong>:
      <em class="summary">Editor to view and edit image files, this is a customized implementation
of a FileEditor</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.floateditor.FloatEditor-class.html">camelot.view.controls.editors.floateditor.FloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.integereditor.IntegerEditor-class.html">camelot.view.controls.editors.integereditor.IntegerEditor</a></strong>:
      <em class="summary">Widget for editing an integer field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html">camelot.view.controls.editors.many2oneeditor.Many2OneEditor</a></strong>:
      <em class="summary">Widget for editing many 2 one relations</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html">camelot.view.controls.editors.richtexteditor.RichTextEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.smileyeditor.SmileyEditor-class.html">camelot.view.controls.editors.smileyeditor.SmileyEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.stareditor.StarEditor-class.html">camelot.view.controls.editors.stareditor.StarEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor-class.html">camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.customeditor.CustomEditor-class.html">Camelot.camelot.view.controls.editors.customeditor.CustomEditor</a></strong>:
      <em class="summary">Base class for implementing custom editor widgets.  This class provides
dual state functionality.  Each editor should have the posibility to have as
its value ValueLoading specifying that no value has been set yet.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.codeeditor.CodeEditor-class.html">Camelot.camelot.view.controls.editors.codeeditor.CodeEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.coloreditor.ColorEditor-class.html">Camelot.camelot.view.controls.editors.coloreditor.ColorEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor-class.html">Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.dateeditor.DateEditor-class.html">Camelot.camelot.view.controls.editors.dateeditor.DateEditor</a></strong>:
      <em class="summary">Widget for editing date values</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.datetimeeditor.DateTimeEditor-class.html">Camelot.camelot.view.controls.editors.datetimeeditor.DateTimeEditor</a></strong>:
      <em class="summary">Widget for editing date and time separated and with popups</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor-class.html">Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor</a></strong>:
      <em class="summary">Widget for editing a many 2 one relation a a form embedded in another
form.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.fileeditor.FileEditor-class.html">Camelot.camelot.view.controls.editors.fileeditor.FileEditor</a></strong>:
      <em class="summary">Widget for editing File fields</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.imageeditor.ImageEditor-class.html">Camelot.camelot.view.controls.editors.imageeditor.ImageEditor</a></strong>:
      <em class="summary">Editor to view and edit image files, this is a customized implementation
of a FileEditor</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.floateditor.FloatEditor-class.html">Camelot.camelot.view.controls.editors.floateditor.FloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.integereditor.IntegerEditor-class.html">Camelot.camelot.view.controls.editors.integereditor.IntegerEditor</a></strong>:
      <em class="summary">Widget for editing an integer field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html">Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor</a></strong>:
      <em class="summary">Widget for editing many 2 one relations</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor-class.html">Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor-class.html">Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html">Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.smileyeditor.SmileyEditor-class.html">Camelot.camelot.view.controls.editors.smileyeditor.SmileyEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.stareditor.StarEditor-class.html">Camelot.camelot.view.controls.editors.stareditor.StarEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor-class.html">Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.formview.FormWidget-class.html">Camelot.camelot.view.controls.formview.FormWidget</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.tableview.HeaderWidget-class.html">Camelot.camelot.view.controls.tableview.HeaderWidget</a></strong>:
      <em class="summary">HeaderWidget for a tableview, containing the title, the search widget,
and the number of rows in the table</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.navpane.PaneButton-class.html">Camelot.camelot.view.controls.navpane.PaneButton</a></strong>:
      <em class="summary">Custom made navigation pane pushbutton</em>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QAbstractButton</strong>:
      <em class="summary">QAbstractButton(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QCheckBox</strong>:
      <em class="summary">QCheckBox(QWidget parent=None)
QCheckBox(QString, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.booleditor.BoolEditor-class.html">Camelot.camelot.view.controls.editors.booleditor.BoolEditor</a></strong>:
      <em class="summary">Widget for editing a boolean field</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.booleditor.BoolEditor-class.html">camelot.view.controls.editors.booleditor.BoolEditor</a></strong>:
      <em class="summary">Widget for editing a boolean field</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QPushButton</strong>:
      <em class="summary">QPushButton(QWidget parent=None)
QPushButton(QString, QWidget parent=None)
QPushButton(QIcon, QString, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.action_widget.ActionWidget-class.html">Camelot.camelot.view.controls.action_widget.ActionWidget</a></strong>:
      <em class="summary">A button that can be pushed to trigger an action</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QAbstractSpinBox</strong>:
      <em class="summary">QAbstractSpinBox(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QDateTimeEdit</strong>:
      <em class="summary">QDateTimeEdit(QWidget parent=None)
QDateTimeEdit(QDateTime, QWidget parent=None)
QDateTimeEdit(QDate, QWidget parent=None)
QDateTimeEdit(QTime, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QTimeEdit</strong>:
      <em class="summary">QTimeEdit(QWidget parent=None)
QTimeEdit(QTime, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.timeeditor.TimeEditor-class.html">Camelot.camelot.view.controls.editors.timeeditor.TimeEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.timeeditor.TimeEditor-class.html">camelot.view.controls.editors.timeeditor.TimeEditor</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QDoubleSpinBox</strong>:
      <em class="summary">QDoubleSpinBox(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.floateditor.CustomDoubleSpinBox-class.html">Camelot.camelot.view.controls.editors.floateditor.CustomDoubleSpinBox</a></strong>:
      <em class="summary">Spinbox that doesn't accept mouse scrolling as input</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.integereditor.CustomDoubleSpinBox-class.html">Camelot.camelot.view.controls.editors.integereditor.CustomDoubleSpinBox</a></strong>:
      <em class="summary">Spinbox that doesn't accept mouse scrolling as input</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QComboBox</strong>:
      <em class="summary">QComboBox(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.choiceseditor.ChoicesEditor-class.html">Camelot.camelot.view.controls.editors.choiceseditor.ChoicesEditor</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor-class.html">Camelot.camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.choiceseditor.ChoicesEditor-class.html">camelot.view.controls.editors.choiceseditor.ChoicesEditor</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor-class.html">camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QDialog</strong>:
      <em class="summary">QDialog(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.calculator.Calculator-class.html">Camelot.camelot.view.controls.calculator.Calculator</a></strong>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QProgressDialog</strong>:
      <em class="summary">QProgressDialog(QWidget parent=None, Qt.WindowFlags flags=0)
QProgressDialog(QString, QString, int, int, QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.storage.OpenFileProgressDialog-class.html">Camelot.camelot.view.storage.OpenFileProgressDialog</a></strong>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.progress_dialog.ProgressDialog</strong>:
      <em class="summary">A Progress Dialog to be used in combination with a post to the model thread:</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.form_action.FormActionProgressDialog-class.html">Camelot.camelot.admin.form_action.FormActionProgressDialog</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.progress_dialog.ProgressDialog-class.html">Camelot.camelot.view.controls.progress_dialog.ProgressDialog</a></strong>:
      <em class="summary">A Progress Dialog to be used in combination with a post to the model thread:</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.storage.SaveFileProgressDialog-class.html">Camelot.camelot.view.storage.SaveFileProgressDialog</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QWizard</strong>:
      <em class="summary">QWizard(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.BackupWizard-class.html">Camelot.camelot.view.wizard.backup.BackupWizard</a></strong>:
      <em class="summary">Wizard to perform a backup using a BackupMechanism</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.ImportWizard-class.html">Camelot.camelot.view.wizard.importwizard.ImportWizard</a></strong>:
      <em class="summary">ImportWizard provides a two-step wizard for importing data as objects
into Camelot.  To create a custom wizard, subclass this ImportWizard and
overwrite its class attributes.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.new.NewObjectWizard-class.html">Camelot.camelot.view.wizard.new.NewObjectWizard</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.RestoreWizard-class.html">Camelot.camelot.view.wizard.backup.RestoreWizard</a></strong>:
      <em class="summary">Wizard to perform a restore using a BackupMechanism</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.update_value.UpdateValueWizard-class.html">Camelot.camelot.view.wizard.update_value.UpdateValueWizard</a></strong>:
      <em class="summary">This wizard presents the user with a selection of the possible fields to
update and a new value.  Then this field is changed for all objects in a given
collection</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.inheritance.SubclassDialog-class.html">Camelot.camelot.view.controls.inheritance.SubclassDialog</a></strong>:
      <em class="summary">A dialog requesting the user to select a subclass</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QDockWidget</strong>:
      <em class="summary">QDockWidget(QString, QWidget parent=None, Qt.WindowFlags flags=0)
QDockWidget(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.navpane.NavigationPane-class.html">Camelot.camelot.view.controls.navpane.NavigationPane</a></strong>:
      <em class="summary">ms office-like navigation pane in Qt</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QFrame</strong>:
      <em class="summary">QFrame(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.dashboard.BareFrame-class.html">Camelot.camelot.view.controls.dashboard.BareFrame</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.dashboard.Dashboard-class.html">Camelot.camelot.view.controls.dashboard.Dashboard</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QAbstractScrollArea</strong>:
      <em class="summary">QAbstractScrollArea(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QAbstractItemView</strong>:
      <em class="summary">QAbstractItemView(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QTableView</strong>:
      <em class="summary">QTableView(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.tableview.TableWidget-class.html">Camelot.camelot.view.controls.tableview.TableWidget</a></strong>:
      <em class="summary">A widget displaying a table, to be used within a TableView</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QTreeView</strong>:
      <em class="summary">QTreeView(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QTreeWidget</strong>:
      <em class="summary">QTreeWidget(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">camelot.view.controls.modeltree.ModelTree</strong>:
      <em class="summary">Custom tree widget</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.inheritance.SubclassTree-class.html">Camelot.camelot.view.controls.inheritance.SubclassTree</a></strong>:
      <em class="summary">Widget to select subclasses of a certain entity, where the
subclasses are represented in a tree</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.modeltree.ModelTree-class.html">Camelot.camelot.view.controls.modeltree.ModelTree</a></strong>:
      <em class="summary">Custom tree widget</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QGraphicsView</strong>:
      <em class="summary">QGraphicsView(QWidget parent=None)
QGraphicsView(QGraphicsScene, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.liteboxview.LiteBoxView-class.html">Camelot.camelot.view.controls.liteboxview.LiteBoxView</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QMdiArea</strong>:
      <em class="summary">QMdiArea(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.workspace.DesktopWorkspace-class.html">Camelot.camelot.view.workspace.DesktopWorkspace</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QScrollArea</strong>:
      <em class="summary">QScrollArea(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.filterlist.FilterList-class.html">Camelot.camelot.view.controls.filterlist.FilterList</a></strong>:
      <em class="summary">A list with filters that can be applied on a query in the tableview</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QTextEdit</strong>:
      <em class="summary">QTextEdit(QWidget parent=None)
QTextEdit(QString, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor-class.html">Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.textediteditor.TextEditEditor-class.html">camelot.view.controls.editors.textediteditor.TextEditEditor</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QLabel</strong>:
      <em class="summary">QLabel(QWidget parent=None, Qt.WindowFlags flags=0)
QLabel(QString, QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.dashboard.CloseMark-class.html">Camelot.camelot.view.controls.dashboard.CloseMark</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.labeleditor.LabelEditor-class.html">camelot.view.controls.editors.labeleditor.LabelEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.labeleditor.LabelEditor-class.html">Camelot.camelot.view.controls.editors.labeleditor.LabelEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.noteeditor.NoteEditor-class.html">camelot.view.controls.editors.noteeditor.NoteEditor</a></strong>:
      <em class="summary">An editor that behaves like a note, the editor hides itself when
there is no text to display</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.noteeditor.NoteEditor-class.html">Camelot.camelot.view.controls.editors.noteeditor.NoteEditor</a></strong>:
      <em class="summary">An editor that behaves like a note, the editor hides itself when
there is no text to display</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.tableview.RowsWidget-class.html">Camelot.camelot.view.controls.tableview.RowsWidget</a></strong>:
      <em class="summary">Widget that is part of the header widget, displaying the number of rows
in the table view</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.booleditor.TextBoolEditor-class.html">camelot.view.controls.editors.booleditor.TextBoolEditor</a></strong>:
      <em class="summary">Widget for editing a boolean field</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.booleditor.TextBoolEditor-class.html">Camelot.camelot.view.controls.editors.booleditor.TextBoolEditor</a></strong>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.user_translatable_label.UserTranslatableLabel</strong>:
      <em class="summary">A QLabel that allows the user to translate the text contained
within by right clicking on it and selecting the appropriate submenu.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.navpane.PaneCaption-class.html">Camelot.camelot.view.controls.navpane.PaneCaption</a></strong>:
      <em class="summary">Navigation pane Caption</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.user_translatable_label.UserTranslatableLabel-class.html">Camelot.camelot.view.controls.user_translatable_label.UserTranslatableLabel</a></strong>:
      <em class="summary">A QLabel that allows the user to translate the text contained
within by right clicking on it and selecting the appropriate submenu.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.field_label.FieldLabel-class.html">Camelot.camelot.view.controls.field_label.FieldLabel</a></strong>:
      <em class="summary">A Label widget used to display the name of a field on a form.
This label provides the user with the possibility to change the translation
of the label and review its field attributes.</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QGroupBox</strong>:
      <em class="summary">QGroupBox(QWidget parent=None)
QGroupBox(QString, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.actionsbox.ActionsBox-class.html">Camelot.camelot.view.controls.actionsbox.ActionsBox</a></strong>:
      <em class="summary">A box containing actions to be applied to a view</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.filter_operator.FilterOperator-class.html">Camelot.camelot.view.controls.filter_operator.FilterOperator</a></strong>:
      <em class="summary">Widget that allows applying various filter operators on a field</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QLineEdit</strong>:
      <em class="summary">QLineEdit(QWidget parent=None)
QLineEdit(QString, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.decorated_line_edit.DecoratedLineEdit-class.html">Camelot.camelot.view.controls.decorated_line_edit.DecoratedLineEdit</a></strong>:
      <em class="summary">A QLineEdit with additional decorations :</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.codeeditor.PartEditor-class.html">Camelot.camelot.view.controls.editors.codeeditor.PartEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.textlineeditor.TextLineEditor-class.html">camelot.view.controls.editors.textlineeditor.TextLineEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.textlineeditor.TextLineEditor-class.html">Camelot.camelot.view.controls.editors.textlineeditor.TextLineEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QMainWindow</strong>:
      <em class="summary">QMainWindow(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.mainwindow.MainWindow-class.html">Camelot.camelot.view.mainwindow.MainWindow</a></strong>:
      <em class="summary">Main window GUI</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QStatusBar</strong>:
      <em class="summary">QStatusBar(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.statusbar.StatusBar-class.html">Camelot.camelot.view.controls.statusbar.StatusBar</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QWizardPage</strong>:
      <em class="summary">QWizardPage(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.DataPreviewPage-class.html">Camelot.camelot.view.wizard.importwizard.DataPreviewPage</a></strong>:
      <em class="summary">DataPreviewPage is the previewing page for the import wizard</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.FinalPage-class.html">Camelot.camelot.view.wizard.importwizard.FinalPage</a></strong>:
      <em class="summary">FinalPage is the final page in the import process</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.pages.form_page.FormPage-class.html">Camelot.camelot.view.wizard.pages.form_page.FormPage</a></strong>:
      <em class="summary">FormPage is a generic wizard page that displays a form for an object
in a wizard page, subclass this class to use it.  The class attribute 'Data'
should be the class of the object to be used to store the form information.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.pages.progress_page.ProgressPage-class.html">Camelot.camelot.view.wizard.pages.progress_page.ProgressPage</a></strong>:
      <em class="summary">Generic progress page for a wizard.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.pages.update_entities_page.UpdateEntitiesPage-class.html">Camelot.camelot.view.wizard.pages.update_entities_page.UpdateEntitiesPage</a></strong>:
      <em class="summary">A progress page that updates each entity in a collection,
then flushes the entity, and informs all views that the entity
has been updated.  Subclass this page and implement update_entity
to make this page do something.</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">camelot.view.wizard.pages.progress_page.ProgressPage</strong>:
      <em class="summary">Generic progress page for a wizard.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.BackupPage-class.html">Camelot.camelot.view.wizard.backup.BackupPage</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.RestorePage-class.html">Camelot.camelot.view.wizard.backup.RestorePage</a></strong>
    </li>
    <li> <strong class="uidlink">camelot.view.wizard.pages.update_entities_page.UpdateEntitiesPage</strong>:
      <em class="summary">A progress page that updates each entity in a collection,
then flushes the entity, and informs all views that the entity
has been updated.  Subclass this page and implement update_entity
to make this page do something.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.update_value.ReplaceContentsPage-class.html">Camelot.camelot.view.wizard.update_value.ReplaceContentsPage</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.pages.select.SelectFilePage-class.html">Camelot.camelot.view.wizard.pages.select.SelectFilePage</a></strong>:
      <em class="summary">SelectFilePage is the file selection page of an import wizard</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.wizard.pages.select.SelectFilePage-class.html">camelot.view.wizard.pages.select.SelectFilePage</a></strong>:
      <em class="summary">SelectFilePage is the file selection page of an import wizard</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.SelectBackupFile-class.html">Camelot.camelot.view.wizard.backup.SelectBackupFile</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.SelectRestoreFile-class.html">Camelot.camelot.view.wizard.backup.SelectRestoreFile</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.new.SelectSubclassPage-class.html">Camelot.camelot.view.wizard.new.SelectSubclassPage</a></strong>:
      <em class="summary">Page for a wizard that allows the selection of a subclass</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.update_value.SelectValuePage-class.html">Camelot.camelot.view.wizard.update_value.SelectValuePage</a></strong>:
      <em class="summary">Page to select a value to update</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.search.SimpleSearchControl-class.html">Camelot.camelot.view.controls.search.SimpleSearchControl</a></strong>:
      <em class="summary">A control that displays a single text field in which search keywords can
be typed</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QWidget.RenderFlags-class.html">PyQt4.QtGui.QWidget.RenderFlags</a></strong>:
      <em class="summary">QWidget.RenderFlags(QWidget.RenderFlags)
QWidget.RenderFlags(int)
QWidget.RenderFlags()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QDateTimeEdit.Sections-class.html">PyQt4.QtGui.QDateTimeEdit.Sections</a></strong>:
      <em class="summary">QDateTimeEdit.Sections(QDateTimeEdit.Sections)
QDateTimeEdit.Sections(int)
QDateTimeEdit.Sections()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QAbstractSpinBox.StepEnabled-class.html">PyQt4.QtGui.QAbstractSpinBox.StepEnabled</a></strong>:
      <em class="summary">QAbstractSpinBox.StepEnabled(QAbstractSpinBox.StepEnabled)
QAbstractSpinBox.StepEnabled(int)
QAbstractSpinBox.StepEnabled()</em>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QWizard.WizardOptions-class.html">PyQt4.QtGui.QWizard.WizardOptions</a></strong>:
      <em class="summary">QWizard.WizardOptions(QWizard.WizardOptions)
QWizard.WizardOptions(int)
QWizard.WizardOptions()</em>
    </li>
    <li> <strong class="uidlink">sip.wrapper</strong>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QGraphicsItem</strong>:
      <em class="summary">QGraphicsItem(QGraphicsItem parent=None, QGraphicsScene scene=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QGraphicsPixmapItem</strong>:
      <em class="summary">QGraphicsPixmapItem(QGraphicsItem parent=None, QGraphicsScene scene=None)
QGraphicsPixmapItem(QPixmap, QGraphicsItem parent=None, QGraphicsScene scene=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.liteboxview.CloseMark-class.html">Camelot.camelot.view.controls.liteboxview.CloseMark</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtCore.QObject</strong>:
      <em class="summary">QObject(QObject parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.main.Application-class.html">Camelot.camelot.view.main.Application</a></strong>:
      <em class="summary">The camelot application.  This class will take care of the order of
initialization of various stuff needed to get the application up and
running, each of its methods will be called in subsequent order,
overwrite any of them to customize its behaviour.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.application_admin.ApplicationAdmin-class.html">Camelot.camelot.view.application_admin.ApplicationAdmin</a></strong>:
      <em class="summary">The Application Admin class defines how the application should look
like, it also ties python classes to their associated admin classes.</em>
    </li>
    <li> <strong class="uidlink">camelot.view.application_admin.ApplicationAdmin</strong>:
      <em class="summary">The Application Admin class defines how the application should look
like, it also ties python classes to their associated admin classes.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.empty_project.application_admin.MyApplicationAdmin-class.html">Camelot.camelot.empty_project.application_admin.MyApplicationAdmin</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.workspace.NoDesktopWorkspace-class.html">Camelot.camelot.view.workspace.NoDesktopWorkspace</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.model_thread.no_thread_model_thread.NoThreadModelThread-class.html">Camelot.camelot.view.model_thread.no_thread_model_thread.NoThreadModelThread</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.admin.validator.object_validator.ObjectValidator-class.html">camelot.admin.validator.object_validator.ObjectValidator</a></strong>:
      <em class="summary">A validator class for normal python objects.  By default this validator
declares all objects valid.  Subclass this class and overwrite it's
objectValidity method to change it's behaviour.</em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.admin.validator.entity_validator.EntityValidator-class.html">camelot.admin.validator.entity_validator.EntityValidator</a></strong>:
      <em class="summary">A validator class validates an entity before flushing it to the database
and provides the user with feedback if the entity is not ready to flush</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.validator.object_validator.ObjectValidator-class.html">Camelot.camelot.admin.validator.object_validator.ObjectValidator</a></strong>:
      <em class="summary">A validator class for normal python objects.  By default this validator
declares all objects valid.  Subclass this class and overwrite it's
objectValidity method to change it's behaviour.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.validator.entity_validator.EntityValidator-class.html">Camelot.camelot.admin.validator.entity_validator.EntityValidator</a></strong>:
      <em class="summary">A validator class validates an entity before flushing it to the database
and provides the user with feedback if the entity is not ready to flush</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QAbstractItemDelegate</strong>:
      <em class="summary">QAbstractItemDelegate(QObject parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QItemDelegate</strong>:
      <em class="summary">QItemDelegate(QObject parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.customdelegate.CustomDelegate-class.html">Camelot.camelot.view.controls.delegates.customdelegate.CustomDelegate</a></strong>:
      <em class="summary">Base class for implementing custom delegates.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.booldelegate.BoolDelegate-class.html">Camelot.camelot.view.controls.delegates.booldelegate.BoolDelegate</a></strong>:
      <em class="summary">Custom delegate for boolean values</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.booldelegate.TextBoolDelegate-class.html">Camelot.camelot.view.controls.delegates.booldelegate.TextBoolDelegate</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.codedelegate.CodeDelegate-class.html">Camelot.camelot.view.controls.delegates.codedelegate.CodeDelegate</a></strong>:
      <em class="summary">..</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.colordelegate.ColorDelegate-class.html">Camelot.camelot.view.controls.delegates.colordelegate.ColorDelegate</a></strong>:
      <em class="summary">..</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.coloredfloatdelegate.ColoredFloatDelegate-class.html">Camelot.camelot.view.controls.delegates.coloredfloatdelegate.ColoredFloatDelegate</a></strong>:
      <em class="summary">Custom delegate for float values, representing them in green when they are
  positive and in red when they are negative.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.comboboxdelegate.ComboBoxDelegate-class.html">Camelot.camelot.view.controls.delegates.comboboxdelegate.ComboBoxDelegate</a></strong>:
      <em class="summary">..</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.currencydelegate.CurrencyDelegate-class.html">Camelot.camelot.view.controls.delegates.currencydelegate.CurrencyDelegate</a></strong>:
      <em class="summary">Custom delegate for float values</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.datedelegate.DateDelegate-class.html">Camelot.camelot.view.controls.delegates.datedelegate.DateDelegate</a></strong>:
      <em class="summary">Custom delegate for date values</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.datetimedelegate.DateTimeDelegate-class.html">Camelot.camelot.view.controls.delegates.datetimedelegate.DateTimeDelegate</a></strong>:
      <em class="summary">..</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.enumerationdelegate.EnumerationDelegate-class.html">Camelot.camelot.view.controls.delegates.enumerationdelegate.EnumerationDelegate</a></strong>:
      <em class="summary">Contrary to the comboboxdelegate, the enumeration delegate does not support dynamic
    choices</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.filedelegate.FileDelegate-class.html">Camelot.camelot.view.controls.delegates.filedelegate.FileDelegate</a></strong>:
      <em class="summary">Delegate for camelot.types.file fields.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.imagedelegate.ImageDelegate-class.html">Camelot.camelot.view.controls.delegates.imagedelegate.ImageDelegate</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.floatdelegate.FloatDelegate-class.html">Camelot.camelot.view.controls.delegates.floatdelegate.FloatDelegate</a></strong>:
      <em class="summary">Custom delegate for float values</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.integerdelegate.IntegerDelegate-class.html">Camelot.camelot.view.controls.delegates.integerdelegate.IntegerDelegate</a></strong>:
      <em class="summary">Custom delegate for integer values</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.labeldelegate.LabelDelegate-class.html">Camelot.camelot.view.controls.delegates.labeldelegate.LabelDelegate</a></strong>:
      <em class="summary">..</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.many2onedelegate.Many2OneDelegate-class.html">Camelot.camelot.view.controls.delegates.many2onedelegate.Many2OneDelegate</a></strong>:
      <em class="summary">Custom delegate for many 2 one relations</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.manytoonechoicesdelegate.ManyToOneChoicesDelegate-class.html">Camelot.camelot.view.controls.delegates.manytoonechoicesdelegate.ManyToOneChoicesDelegate</a></strong>:
      <em class="summary">Display a ManyToOne field as a ComboBox, filling the list of choices with
the objects of the target class.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.plaintextdelegate.PlainTextDelegate-class.html">Camelot.camelot.view.controls.delegates.plaintextdelegate.PlainTextDelegate</a></strong>:
      <em class="summary">Custom delegate for simple string values</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.richtextdelegate.RichTextDelegate-class.html">Camelot.camelot.view.controls.delegates.richtextdelegate.RichTextDelegate</a></strong>:
      <em class="summary">..</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.smileydelegate.SmileyDelegate-class.html">Camelot.camelot.view.controls.delegates.smileydelegate.SmileyDelegate</a></strong>:
      <em class="summary">Delegate for Smiley's</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.stardelegate.StarDelegate-class.html">Camelot.camelot.view.controls.delegates.stardelegate.StarDelegate</a></strong>:
      <em class="summary">Delegate for integer values from (1 to 5)(Rating Delegate)</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.texteditdelegate.TextEditDelegate-class.html">Camelot.camelot.view.controls.delegates.texteditdelegate.TextEditDelegate</a></strong>:
      <em class="summary">Custom delegate for simple string values</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.notedelegate.NoteDelegate-class.html">Camelot.camelot.view.controls.delegates.notedelegate.NoteDelegate</a></strong>:
      <em class="summary">By default, creates a NoteEditor as its editor.</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.timedelegate.TimeDelegate-class.html">Camelot.camelot.view.controls.delegates.timedelegate.TimeDelegate</a></strong>:
      <em class="summary">..</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.virtualaddressdelegate.VirtualAddressDelegate-class.html">Camelot.camelot.view.controls.delegates.virtualaddressdelegate.VirtualAddressDelegate</a></strong>:
      <em class="summary">..</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.delegatemanager.DelegateManager-class.html">Camelot.camelot.view.controls.delegates.delegatemanager.DelegateManager</a></strong>:
      <em class="summary">Manages custom delegates, should not be used by the application
developer</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.intervalsdelegate.IntervalsDelegate-class.html">Camelot.camelot.view.controls.delegates.intervalsdelegate.IntervalsDelegate</a></strong>:
      <em class="summary">Custom delegate for visualizing camelot.container.IntervalsContainer
  data</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.one2manydelegate.One2ManyDelegate-class.html">Camelot.camelot.view.controls.delegates.one2manydelegate.One2ManyDelegate</a></strong>:
      <em class="summary">Custom delegate for many 2 one relations</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.delegates.manytomanydelegate.ManyToManyDelegate-class.html">Camelot.camelot.view.controls.delegates.manytomanydelegate.ManyToManyDelegate</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtCore.QAbstractItemModel</strong>:
      <em class="summary">QAbstractItemModel(QObject parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtCore.QAbstractListModel</strong>:
      <em class="summary">QAbstractListModel(QObject parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor.CompletionsModel-class.html">Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor.CompletionsModel</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.many2oneeditor.Many2OneEditor.CompletionsModel-class.html">camelot.view.controls.editors.many2oneeditor.Many2OneEditor.CompletionsModel</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtCore.QAbstractTableModel</strong>:
      <em class="summary">QAbstractTableModel(QObject parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.proxy.collection_proxy.CollectionProxy-class.html">Camelot.camelot.view.proxy.collection_proxy.CollectionProxy</a></strong>:
      <em class="summary">The CollectionProxy contains a limited copy of the data in the actual
collection, usable for fast visualisation in a QTableView</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.proxy.queryproxy.QueryTableProxy-class.html">Camelot.camelot.view.proxy.queryproxy.QueryTableProxy</a></strong>:
      <em class="summary">The QueryTableProxy contains a limited copy of the data in the Elixir
model, which is fetched from the database to be used as the model for a
QTableView</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.proxy.collection_proxy.CollectionProxy-class.html">camelot.view.proxy.collection_proxy.CollectionProxy</a></strong>:
      <em class="summary">The CollectionProxy contains a limited copy of the data in the actual
collection, usable for fast visualisation in a QTableView</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.DataPreviewCollectionProxy-class.html">Camelot.camelot.view.wizard.importwizard.DataPreviewCollectionProxy</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.proxy.queryproxy.QueryTableProxy-class.html">camelot.view.proxy.queryproxy.QueryTableProxy</a></strong>:
      <em class="summary">The QueryTableProxy contains a limited copy of the data in the Elixir
model, which is fetched from the database to be used as the model for a
QTableView</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QAction</strong>:
      <em class="summary">QAction(QObject)
QAction(QString, QObject)
QAction(QIcon, QString, QObject)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.action.refresh.SessionRefresh-class.html">Camelot.camelot.action.refresh.SessionRefresh</a></strong>:
      <em class="summary">Session refresh expires all objects in the current session and sends
a local entity update signal via the remote_signals mechanism</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.user_translatable_label.TranslateLabelAction-class.html">Camelot.camelot.view.controls.user_translatable_label.TranslateLabelAction</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtDesigner.QPyDesignerCustomWidgetPlugin</strong>:
      <em class="summary">QPyDesignerCustomWidgetPlugin(QObject parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.imageeditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.imageeditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.codeeditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.codeeditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.richtexteditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.richtexteditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.dateeditorplugin.DateEditorPlugin-class.html">Camelot.camelot.view.plugins.dateeditorplugin.DateEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.manytooneeditorplugin.ManyToOneEditorPlugin-class.html">Camelot.camelot.view.plugins.manytooneeditorplugin.ManyToOneEditorPlugin</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.plugins.onetomanyeditorplugin.OneToManyEditorPlugin-class.html">Camelot.camelot.view.plugins.onetomanyeditorplugin.OneToManyEditorPlugin</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="PyQt4.QtGui.QTextDocument-class.html">PyQt4.QtGui.QTextDocument</a></strong>:
      <em class="summary">QTextDocument(QObject parent=None)
QTextDocument(QString, QObject parent=None)</em>
    </li>
    <li> <strong class="uidlink">PyQt4.QtCore.QThread</strong>:
      <em class="summary">QThread(QObject parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.model_thread.signal_slot_model_thread.SignalSlotModelThread-class.html">Camelot.camelot.view.model_thread.signal_slot_model_thread.SignalSlotModelThread</a></strong>:
      <em class="summary">A model thread implementation that uses signals and slots
to communicate between the model thread and the gui thread</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QWidget</strong>:
      <em class="summary">QWidget(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.view.AbstractView-class.html">Camelot.camelot.view.controls.view.AbstractView</a></strong>:
      <em class="summary">A string used to format the title of the view ::</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.view.TabView-class.html">Camelot.camelot.view.controls.view.TabView</a></strong>:
      <em class="summary">Class to combine multiple views in Tabs and let them behave as one view.  This class can be
used when defining custom create_table_view methods on an ObjectAdmin class to group multiple
table views together in one view.</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.view.AbstractView</strong>:
      <em class="summary">A string used to format the title of the view ::</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.formview.FormView-class.html">Camelot.camelot.view.controls.formview.FormView</a></strong>:
      <em class="summary">A FormView is the combination of a FormWidget, possible actions and menu items</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.tableview.TableView-class.html">Camelot.camelot.view.controls.tableview.TableView</a></strong>:
      <em class="summary">A generic tableview widget that puts together some other widgets.</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.busy_widget.BusyWidget-class.html">Camelot.camelot.view.controls.busy_widget.BusyWidget</a></strong>:
      <em class="summary">A widget indicating the application is performing some background task.  The widget acts
as an overlay of its parent widget and displays animating orbs</em>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.editors.customeditor.CustomEditor</strong>:
      <em class="summary">Base class for implementing custom editor widgets.  This class provides
dual state functionality.  Each editor should have the posibility to have as
its value <a href="Camelot.camelot.view.proxy.ValueLoading-class.html" class="link">ValueLoading</a> specifying that no value has been set yet.</em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.codeeditor.CodeEditor-class.html">camelot.view.controls.editors.codeeditor.CodeEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.coloreditor.ColorEditor-class.html">camelot.view.controls.editors.coloreditor.ColorEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor-class.html">camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.dateeditor.DateEditor-class.html">camelot.view.controls.editors.dateeditor.DateEditor</a></strong>:
      <em class="summary">Widget for editing date values</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.datetimeeditor.DateTimeEditor-class.html">camelot.view.controls.editors.datetimeeditor.DateTimeEditor</a></strong>:
      <em class="summary">Widget for editing date and time separated and with popups</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.fileeditor.FileEditor-class.html">camelot.view.controls.editors.fileeditor.FileEditor</a></strong>:
      <em class="summary">Widget for editing File fields</em>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.imageeditor.ImageEditor-class.html">camelot.view.controls.editors.imageeditor.ImageEditor</a></strong>:
      <em class="summary">Editor to view and edit image files, this is a customized implementation
of a FileEditor</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.floateditor.FloatEditor-class.html">camelot.view.controls.editors.floateditor.FloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.integereditor.IntegerEditor-class.html">camelot.view.controls.editors.integereditor.IntegerEditor</a></strong>:
      <em class="summary">Widget for editing an integer field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html">camelot.view.controls.editors.many2oneeditor.Many2OneEditor</a></strong>:
      <em class="summary">Widget for editing many 2 one relations</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html">camelot.view.controls.editors.richtexteditor.RichTextEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.smileyeditor.SmileyEditor-class.html">camelot.view.controls.editors.smileyeditor.SmileyEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.stareditor.StarEditor-class.html">camelot.view.controls.editors.stareditor.StarEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor-class.html">camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.customeditor.CustomEditor-class.html">Camelot.camelot.view.controls.editors.customeditor.CustomEditor</a></strong>:
      <em class="summary">Base class for implementing custom editor widgets.  This class provides
dual state functionality.  Each editor should have the posibility to have as
its value ValueLoading specifying that no value has been set yet.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.codeeditor.CodeEditor-class.html">Camelot.camelot.view.controls.editors.codeeditor.CodeEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.coloreditor.ColorEditor-class.html">Camelot.camelot.view.controls.editors.coloreditor.ColorEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor-class.html">Camelot.camelot.view.controls.editors.coloredfloateditor.ColoredFloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.dateeditor.DateEditor-class.html">Camelot.camelot.view.controls.editors.dateeditor.DateEditor</a></strong>:
      <em class="summary">Widget for editing date values</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.datetimeeditor.DateTimeEditor-class.html">Camelot.camelot.view.controls.editors.datetimeeditor.DateTimeEditor</a></strong>:
      <em class="summary">Widget for editing date and time separated and with popups</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor-class.html">Camelot.camelot.view.controls.editors.embeddedmany2oneeditor.EmbeddedMany2OneEditor</a></strong>:
      <em class="summary">Widget for editing a many 2 one relation a a form embedded in another
form.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.fileeditor.FileEditor-class.html">Camelot.camelot.view.controls.editors.fileeditor.FileEditor</a></strong>:
      <em class="summary">Widget for editing File fields</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.imageeditor.ImageEditor-class.html">Camelot.camelot.view.controls.editors.imageeditor.ImageEditor</a></strong>:
      <em class="summary">Editor to view and edit image files, this is a customized implementation
of a FileEditor</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.floateditor.FloatEditor-class.html">Camelot.camelot.view.controls.editors.floateditor.FloatEditor</a></strong>:
      <em class="summary">Widget for editing a float field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.integereditor.IntegerEditor-class.html">Camelot.camelot.view.controls.editors.integereditor.IntegerEditor</a></strong>:
      <em class="summary">Widget for editing an integer field, with a calculator</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor-class.html">Camelot.camelot.view.controls.editors.many2oneeditor.Many2OneEditor</a></strong>:
      <em class="summary">Widget for editing many 2 one relations</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor-class.html">Camelot.camelot.view.controls.editors.one2manyeditor.One2ManyEditor</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor-class.html">Camelot.camelot.view.controls.editors.manytomanyeditor.ManyToManyEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor-class.html">Camelot.camelot.view.controls.editors.richtexteditor.RichTextEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.smileyeditor.SmileyEditor-class.html">Camelot.camelot.view.controls.editors.smileyeditor.SmileyEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.stareditor.StarEditor-class.html">Camelot.camelot.view.controls.editors.stareditor.StarEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor-class.html">Camelot.camelot.view.controls.editors.virtualaddresseditor.VirtualAddressEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.formview.FormWidget-class.html">Camelot.camelot.view.controls.formview.FormWidget</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.tableview.HeaderWidget-class.html">Camelot.camelot.view.controls.tableview.HeaderWidget</a></strong>:
      <em class="summary">HeaderWidget for a tableview, containing the title, the search widget,
and the number of rows in the table</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.navpane.PaneButton-class.html">Camelot.camelot.view.controls.navpane.PaneButton</a></strong>:
      <em class="summary">Custom made navigation pane pushbutton</em>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QAbstractButton</strong>:
      <em class="summary">QAbstractButton(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QCheckBox</strong>:
      <em class="summary">QCheckBox(QWidget parent=None)
QCheckBox(QString, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.booleditor.BoolEditor-class.html">Camelot.camelot.view.controls.editors.booleditor.BoolEditor</a></strong>:
      <em class="summary">Widget for editing a boolean field</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.booleditor.BoolEditor-class.html">camelot.view.controls.editors.booleditor.BoolEditor</a></strong>:
      <em class="summary">Widget for editing a boolean field</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QPushButton</strong>:
      <em class="summary">QPushButton(QWidget parent=None)
QPushButton(QString, QWidget parent=None)
QPushButton(QIcon, QString, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.action_widget.ActionWidget-class.html">Camelot.camelot.view.controls.action_widget.ActionWidget</a></strong>:
      <em class="summary">A button that can be pushed to trigger an action</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QAbstractSpinBox</strong>:
      <em class="summary">QAbstractSpinBox(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QDateTimeEdit</strong>:
      <em class="summary">QDateTimeEdit(QWidget parent=None)
QDateTimeEdit(QDateTime, QWidget parent=None)
QDateTimeEdit(QDate, QWidget parent=None)
QDateTimeEdit(QTime, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QTimeEdit</strong>:
      <em class="summary">QTimeEdit(QWidget parent=None)
QTimeEdit(QTime, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.timeeditor.TimeEditor-class.html">Camelot.camelot.view.controls.editors.timeeditor.TimeEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.timeeditor.TimeEditor-class.html">camelot.view.controls.editors.timeeditor.TimeEditor</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QDoubleSpinBox</strong>:
      <em class="summary">QDoubleSpinBox(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.floateditor.CustomDoubleSpinBox-class.html">Camelot.camelot.view.controls.editors.floateditor.CustomDoubleSpinBox</a></strong>:
      <em class="summary">Spinbox that doesn't accept mouse scrolling as input</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.integereditor.CustomDoubleSpinBox-class.html">Camelot.camelot.view.controls.editors.integereditor.CustomDoubleSpinBox</a></strong>:
      <em class="summary">Spinbox that doesn't accept mouse scrolling as input</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QComboBox</strong>:
      <em class="summary">QComboBox(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.choiceseditor.ChoicesEditor-class.html">Camelot.camelot.view.controls.editors.choiceseditor.ChoicesEditor</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor-class.html">Camelot.camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.choiceseditor.ChoicesEditor-class.html">camelot.view.controls.editors.choiceseditor.ChoicesEditor</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor-class.html">camelot.view.controls.editors.onetomanychoiceseditor.OneToManyChoicesEditor</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QDialog</strong>:
      <em class="summary">QDialog(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.calculator.Calculator-class.html">Camelot.camelot.view.controls.calculator.Calculator</a></strong>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QProgressDialog</strong>:
      <em class="summary">QProgressDialog(QWidget parent=None, Qt.WindowFlags flags=0)
QProgressDialog(QString, QString, int, int, QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.storage.OpenFileProgressDialog-class.html">Camelot.camelot.view.storage.OpenFileProgressDialog</a></strong>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.progress_dialog.ProgressDialog</strong>:
      <em class="summary">A Progress Dialog to be used in combination with a post to the model thread:</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.admin.form_action.FormActionProgressDialog-class.html">Camelot.camelot.admin.form_action.FormActionProgressDialog</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.progress_dialog.ProgressDialog-class.html">Camelot.camelot.view.controls.progress_dialog.ProgressDialog</a></strong>:
      <em class="summary">A Progress Dialog to be used in combination with a post to the model thread:</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.storage.SaveFileProgressDialog-class.html">Camelot.camelot.view.storage.SaveFileProgressDialog</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QWizard</strong>:
      <em class="summary">QWizard(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.BackupWizard-class.html">Camelot.camelot.view.wizard.backup.BackupWizard</a></strong>:
      <em class="summary">Wizard to perform a backup using a BackupMechanism</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.ImportWizard-class.html">Camelot.camelot.view.wizard.importwizard.ImportWizard</a></strong>:
      <em class="summary">ImportWizard provides a two-step wizard for importing data as objects
into Camelot.  To create a custom wizard, subclass this ImportWizard and
overwrite its class attributes.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.new.NewObjectWizard-class.html">Camelot.camelot.view.wizard.new.NewObjectWizard</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.RestoreWizard-class.html">Camelot.camelot.view.wizard.backup.RestoreWizard</a></strong>:
      <em class="summary">Wizard to perform a restore using a BackupMechanism</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.update_value.UpdateValueWizard-class.html">Camelot.camelot.view.wizard.update_value.UpdateValueWizard</a></strong>:
      <em class="summary">This wizard presents the user with a selection of the possible fields to
update and a new value.  Then this field is changed for all objects in a given
collection</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.inheritance.SubclassDialog-class.html">Camelot.camelot.view.controls.inheritance.SubclassDialog</a></strong>:
      <em class="summary">A dialog requesting the user to select a subclass</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QDockWidget</strong>:
      <em class="summary">QDockWidget(QString, QWidget parent=None, Qt.WindowFlags flags=0)
QDockWidget(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.navpane.NavigationPane-class.html">Camelot.camelot.view.controls.navpane.NavigationPane</a></strong>:
      <em class="summary">ms office-like navigation pane in Qt</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QFrame</strong>:
      <em class="summary">QFrame(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.dashboard.BareFrame-class.html">Camelot.camelot.view.controls.dashboard.BareFrame</a></strong>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.dashboard.Dashboard-class.html">Camelot.camelot.view.controls.dashboard.Dashboard</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QAbstractScrollArea</strong>:
      <em class="summary">QAbstractScrollArea(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QAbstractItemView</strong>:
      <em class="summary">QAbstractItemView(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QTableView</strong>:
      <em class="summary">QTableView(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.tableview.TableWidget-class.html">Camelot.camelot.view.controls.tableview.TableWidget</a></strong>:
      <em class="summary">A widget displaying a table, to be used within a TableView</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QTreeView</strong>:
      <em class="summary">QTreeView(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">PyQt4.QtGui.QTreeWidget</strong>:
      <em class="summary">QTreeWidget(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink">camelot.view.controls.modeltree.ModelTree</strong>:
      <em class="summary">Custom tree widget</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.inheritance.SubclassTree-class.html">Camelot.camelot.view.controls.inheritance.SubclassTree</a></strong>:
      <em class="summary">Widget to select subclasses of a certain entity, where the
subclasses are represented in a tree</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.modeltree.ModelTree-class.html">Camelot.camelot.view.controls.modeltree.ModelTree</a></strong>:
      <em class="summary">Custom tree widget</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QGraphicsView</strong>:
      <em class="summary">QGraphicsView(QWidget parent=None)
QGraphicsView(QGraphicsScene, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.liteboxview.LiteBoxView-class.html">Camelot.camelot.view.controls.liteboxview.LiteBoxView</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QMdiArea</strong>:
      <em class="summary">QMdiArea(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.workspace.DesktopWorkspace-class.html">Camelot.camelot.view.workspace.DesktopWorkspace</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QScrollArea</strong>:
      <em class="summary">QScrollArea(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.filterlist.FilterList-class.html">Camelot.camelot.view.controls.filterlist.FilterList</a></strong>:
      <em class="summary">A list with filters that can be applied on a query in the tableview</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QTextEdit</strong>:
      <em class="summary">QTextEdit(QWidget parent=None)
QTextEdit(QString, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor-class.html">Camelot.camelot.view.controls.editors.textediteditor.TextEditEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.textediteditor.TextEditEditor-class.html">camelot.view.controls.editors.textediteditor.TextEditEditor</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QLabel</strong>:
      <em class="summary">QLabel(QWidget parent=None, Qt.WindowFlags flags=0)
QLabel(QString, QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.dashboard.CloseMark-class.html">Camelot.camelot.view.controls.dashboard.CloseMark</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.labeleditor.LabelEditor-class.html">camelot.view.controls.editors.labeleditor.LabelEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.labeleditor.LabelEditor-class.html">Camelot.camelot.view.controls.editors.labeleditor.LabelEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.noteeditor.NoteEditor-class.html">camelot.view.controls.editors.noteeditor.NoteEditor</a></strong>:
      <em class="summary">An editor that behaves like a note, the editor hides itself when
there is no text to display</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.noteeditor.NoteEditor-class.html">Camelot.camelot.view.controls.editors.noteeditor.NoteEditor</a></strong>:
      <em class="summary">An editor that behaves like a note, the editor hides itself when
there is no text to display</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.tableview.RowsWidget-class.html">Camelot.camelot.view.controls.tableview.RowsWidget</a></strong>:
      <em class="summary">Widget that is part of the header widget, displaying the number of rows
in the table view</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.booleditor.TextBoolEditor-class.html">camelot.view.controls.editors.booleditor.TextBoolEditor</a></strong>:
      <em class="summary">Widget for editing a boolean field</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.booleditor.TextBoolEditor-class.html">Camelot.camelot.view.controls.editors.booleditor.TextBoolEditor</a></strong>
    </li>
    <li> <strong class="uidlink">camelot.view.controls.user_translatable_label.UserTranslatableLabel</strong>:
      <em class="summary">A QLabel that allows the user to translate the text contained
within by right clicking on it and selecting the appropriate submenu.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.navpane.PaneCaption-class.html">Camelot.camelot.view.controls.navpane.PaneCaption</a></strong>:
      <em class="summary">Navigation pane Caption</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.user_translatable_label.UserTranslatableLabel-class.html">Camelot.camelot.view.controls.user_translatable_label.UserTranslatableLabel</a></strong>:
      <em class="summary">A QLabel that allows the user to translate the text contained
within by right clicking on it and selecting the appropriate submenu.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.field_label.FieldLabel-class.html">Camelot.camelot.view.controls.field_label.FieldLabel</a></strong>:
      <em class="summary">A Label widget used to display the name of a field on a form.
This label provides the user with the possibility to change the translation
of the label and review its field attributes.</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QGroupBox</strong>:
      <em class="summary">QGroupBox(QWidget parent=None)
QGroupBox(QString, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.actionsbox.ActionsBox-class.html">Camelot.camelot.view.controls.actionsbox.ActionsBox</a></strong>:
      <em class="summary">A box containing actions to be applied to a view</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.filter_operator.FilterOperator-class.html">Camelot.camelot.view.controls.filter_operator.FilterOperator</a></strong>:
      <em class="summary">Widget that allows applying various filter operators on a field</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QLineEdit</strong>:
      <em class="summary">QLineEdit(QWidget parent=None)
QLineEdit(QString, QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.decorated_line_edit.DecoratedLineEdit-class.html">Camelot.camelot.view.controls.decorated_line_edit.DecoratedLineEdit</a></strong>:
      <em class="summary">A QLineEdit with additional decorations :</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.codeeditor.PartEditor-class.html">Camelot.camelot.view.controls.editors.codeeditor.PartEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.controls.editors.textlineeditor.TextLineEditor-class.html">camelot.view.controls.editors.textlineeditor.TextLineEditor</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.editors.textlineeditor.TextLineEditor-class.html">Camelot.camelot.view.controls.editors.textlineeditor.TextLineEditor</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QMainWindow</strong>:
      <em class="summary">QMainWindow(QWidget parent=None, Qt.WindowFlags flags=0)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.mainwindow.MainWindow-class.html">Camelot.camelot.view.mainwindow.MainWindow</a></strong>:
      <em class="summary">Main window GUI</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QStatusBar</strong>:
      <em class="summary">QStatusBar(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.statusbar.StatusBar-class.html">Camelot.camelot.view.controls.statusbar.StatusBar</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QWizardPage</strong>:
      <em class="summary">QWizardPage(QWidget parent=None)</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.DataPreviewPage-class.html">Camelot.camelot.view.wizard.importwizard.DataPreviewPage</a></strong>:
      <em class="summary">DataPreviewPage is the previewing page for the import wizard</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.importwizard.FinalPage-class.html">Camelot.camelot.view.wizard.importwizard.FinalPage</a></strong>:
      <em class="summary">FinalPage is the final page in the import process</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.pages.form_page.FormPage-class.html">Camelot.camelot.view.wizard.pages.form_page.FormPage</a></strong>:
      <em class="summary">FormPage is a generic wizard page that displays a form for an object
in a wizard page, subclass this class to use it.  The class attribute 'Data'
should be the class of the object to be used to store the form information.</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.pages.progress_page.ProgressPage-class.html">Camelot.camelot.view.wizard.pages.progress_page.ProgressPage</a></strong>:
      <em class="summary">Generic progress page for a wizard.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.pages.update_entities_page.UpdateEntitiesPage-class.html">Camelot.camelot.view.wizard.pages.update_entities_page.UpdateEntitiesPage</a></strong>:
      <em class="summary">A progress page that updates each entity in a collection,
then flushes the entity, and informs all views that the entity
has been updated.  Subclass this page and implement update_entity
to make this page do something.</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">camelot.view.wizard.pages.progress_page.ProgressPage</strong>:
      <em class="summary">Generic progress page for a wizard.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.BackupPage-class.html">Camelot.camelot.view.wizard.backup.BackupPage</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.RestorePage-class.html">Camelot.camelot.view.wizard.backup.RestorePage</a></strong>
    </li>
    <li> <strong class="uidlink">camelot.view.wizard.pages.update_entities_page.UpdateEntitiesPage</strong>:
      <em class="summary">A progress page that updates each entity in a collection,
then flushes the entity, and informs all views that the entity
has been updated.  Subclass this page and implement update_entity
to make this page do something.</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.update_value.ReplaceContentsPage-class.html">Camelot.camelot.view.wizard.update_value.ReplaceContentsPage</a></strong>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.pages.select.SelectFilePage-class.html">Camelot.camelot.view.wizard.pages.select.SelectFilePage</a></strong>:
      <em class="summary">SelectFilePage is the file selection page of an import wizard</em>
    </li>
    <li> <strong class="uidlink"><a href="camelot.view.wizard.pages.select.SelectFilePage-class.html">camelot.view.wizard.pages.select.SelectFilePage</a></strong>:
      <em class="summary">SelectFilePage is the file selection page of an import wizard</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.SelectBackupFile-class.html">Camelot.camelot.view.wizard.backup.SelectBackupFile</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.backup.SelectRestoreFile-class.html">Camelot.camelot.view.wizard.backup.SelectRestoreFile</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.new.SelectSubclassPage-class.html">Camelot.camelot.view.wizard.new.SelectSubclassPage</a></strong>:
      <em class="summary">Page for a wizard that allows the selection of a subclass</em>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.wizard.update_value.SelectValuePage-class.html">Camelot.camelot.view.wizard.update_value.SelectValuePage</a></strong>:
      <em class="summary">Page to select a value to update</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.search.SimpleSearchControl-class.html">Camelot.camelot.view.controls.search.SimpleSearchControl</a></strong>:
      <em class="summary">A control that displays a single text field in which search keywords can
be typed</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.response_handler.ResponseHandler-class.html">Camelot.camelot.view.response_handler.ResponseHandler</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.remote_signals.SignalHandler-class.html">Camelot.camelot.view.remote_signals.SignalHandler</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.model_thread.signal_slot_model_thread.Task-class.html">Camelot.camelot.view.model_thread.signal_slot_model_thread.Task</a></strong>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.model_thread.signal_slot_model_thread.TaskHandler-class.html">Camelot.camelot.view.model_thread.signal_slot_model_thread.TaskHandler</a></strong>:
      <em class="summary">A task handler is an object that handles tasks that appear in a queue,
when its handle_task method is called, it will sequentially handle all tasks
that are in the queue.</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">PyQt4.QtGui.QTreeWidgetItem</strong>:
      <em class="summary">QTreeWidgetItem(int type=QTreeWidgetItem.Type)
QTreeWidgetItem(QStringList, int type=QTreeWidgetItem.Type)
QTreeWidgetItem(QTreeWidget, int type=QTreeWidgetItem.Type)
QTreeWidgetItem(QTreeWidget, QStringList, int type=QTreeWidgetItem.Type)
QTreeWidgetItem(QTreeWidget, QTreeWidgetItem, int type=QTreeWidgetItem.Type)
QTreeWidgetItem(QTreeWidgetItem, int type=QTreeWidgetItem.Type)
QTreeWidgetItem(QTreeWidgetItem, QStringList, int type=QTreeWidgetItem.Type)
QTreeWidgetItem(QTreeWidgetItem, QTreeWidgetItem, int type=QTreeWidgetItem.Type)
QTreeWidgetItem(QTreeWidgetItem)</em>
    <ul>
    <li> <strong class="uidlink">camelot.view.controls.modeltree.ModelItem</strong>:
      <em class="summary">Custom tree item widget</em>
    <ul>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.inheritance.SubclassItem-class.html">Camelot.camelot.view.controls.inheritance.SubclassItem</a></strong>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.view.controls.modeltree.ModelItem-class.html">Camelot.camelot.view.controls.modeltree.ModelItem</a></strong>:
      <em class="summary">Custom tree item widget</em>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink">type</strong>:
      <em class="summary">type(object) -&gt; the object's type
type(name, bases, dict) -&gt; a new type</em>
    <ul>
    <li> <strong class="uidlink"><a href="elixir.entity.EntityMeta-class.html">elixir.entity.EntityMeta</a></strong>:
      <em class="summary">Entity meta class.
You should only use it directly if you want to define your own base class
for your entities (ie you don't want to use the provided 'Entity' class).</em>
    </li>
    </ul>
    </li>
    <li> <strong class="uidlink"><a href="Camelot.camelot.core.utils.ugettext_lazy-class.html">Camelot.camelot.core.utils.ugettext_lazy</a></strong>
    </li>
    </ul>
    </li>
</ul>
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
       bgcolor="#a0c0ff" cellspacing="0">
  <tr valign="middle">
  <!-- Home link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="Camelot.camelot-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Tree link -->
      <th bgcolor="#70b0f0" class="navbar-select"
          >&nbsp;&nbsp;&nbsp;Trees&nbsp;&nbsp;&nbsp;</th>

  <!-- Index link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Help link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Project homepage -->
      <th class="navbar" align="right" width="100%">
        <table border="0" cellpadding="0" cellspacing="0">
          <tr><th class="navbar" align="center"
            ><a class="navbar" target="_top" href="http://www.python-camelot.com">Camelot</a></th>
          </tr></table></th>
  </tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
  <tr>
    <td align="left" class="footer">
    Generated by Epydoc 3.0.1 on Sat Jun 12 15:41:30 2010
    </td>
    <td align="right" class="footer">
      <a target="mainFrame" href="http://epydoc.sourceforge.net"
        >http://epydoc.sourceforge.net</a>
    </td>
  </tr>
</table>

<script type="text/javascript">
  <!--
  // Private objects are initially displayed (because if
  // javascript is turned off then we want them to be
  // visible); but by default, we want to hide them.  So hide
  // them unless we have a cookie that says to show them.
  checkCookie();
  // -->
</script>
</body>
</html>