1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.8"/>
<title>Dillo: dw::Table Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="https://www.dillo.org/dw/html/jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Dillo
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.8 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacedw.html">dw</a></li><li class="navelem"><a class="el" href="classdw_1_1Table.html">Table</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="classdw_1_1Table.html#nested-classes">Classes</a> |
<a href="classdw_1_1Table.html#pub-methods">Public Member Functions</a> |
<a href="classdw_1_1Table.html#pub-static-methods">Static Public Member Functions</a> |
<a href="classdw_1_1Table.html#pub-static-attribs">Static Public Attributes</a> |
<a href="classdw_1_1Table.html#pro-methods">Protected Member Functions</a> |
<a href="classdw_1_1Table.html#pri-types">Private Types</a> |
<a href="classdw_1_1Table.html#pri-methods">Private Member Functions</a> |
<a href="classdw_1_1Table.html#pri-attribs">Private Attributes</a> |
<a href="classdw_1_1Table.html#pri-static-attribs">Static Private Attributes</a> |
<a href="classdw_1_1Table.html#friends">Friends</a> |
<a href="classdw_1_1Table-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">dw::Table Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>A Widget for rendering tables.
<a href="classdw_1_1Table.html#details">More...</a></p>
<p><code>#include <<a class="el" href="table_8hh_source.html">table.hh</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct  </td><td class="memItemRight" valign="bottom"><a class="el" href="structdw_1_1Table_1_1Child.html">Child</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table_1_1TableIterator.html">TableIterator</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a308217e47398084ec529a605f8ac06fd"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a308217e47398084ec529a605f8ac06fd">Table</a> (bool <a class="el" href="classdw_1_1Table.html#ab8faad96d6e4bf0ab4c698e38d963b23">limitTextWidth</a>)</td></tr>
<tr class="separator:a308217e47398084ec529a605f8ac06fd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a23bf1cf3989ff2e56390f39d52813b51"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a23bf1cf3989ff2e56390f39d52813b51">~Table</a> ()</td></tr>
<tr class="separator:a23bf1cf3989ff2e56390f39d52813b51"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b0f23cf81aec08c818dd9744d2d1d72"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a4b0f23cf81aec08c818dd9744d2d1d72">applyPerWidth</a> (int containerWidth, <a class="el" href="namespacedw_1_1core_1_1style.html#a65610d57c89e5bee02e4e539fdc989de">core::style::Length</a> perWidth)</td></tr>
<tr class="separator:a4b0f23cf81aec08c818dd9744d2d1d72"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aea255f5e3837e98acfa9b81d36561d15"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#aea255f5e3837e98acfa9b81d36561d15">applyPerHeight</a> (int containerHeight, <a class="el" href="namespacedw_1_1core_1_1style.html#a65610d57c89e5bee02e4e539fdc989de">core::style::Length</a> perHeight)</td></tr>
<tr class="separator:aea255f5e3837e98acfa9b81d36561d15"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac1f869a883b502c0cdf7fba25c1c020f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Iterator.html">core::Iterator</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ac1f869a883b502c0cdf7fba25c1c020f">iterator</a> (<a class="el" href="structdw_1_1core_1_1Content.html#a41c29111b049db05a8de25b2e1ca4bd5">core::Content::Type</a> mask, bool atEnd)</td></tr>
<tr class="memdesc:ac1f869a883b502c0cdf7fba25c1c020f"><td class="mdescLeft"> </td><td class="mdescRight">Return an iterator for this widget. <a href="classdw_1_1Table.html#ac1f869a883b502c0cdf7fba25c1c020f">More...</a><br /></td></tr>
<tr class="separator:ac1f869a883b502c0cdf7fba25c1c020f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5bdf5604e05a2e118e0f8c71504a871d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a5bdf5604e05a2e118e0f8c71504a871d">addCell</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget, int colspan, int rowspan)</td></tr>
<tr class="separator:a5bdf5604e05a2e118e0f8c71504a871d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b3a6a8b0be46e3ebc7f0d40adfe2b1b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a7b3a6a8b0be46e3ebc7f0d40adfe2b1b">addRow</a> (<a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#abb5ca0d86f77aed08721e5e5b3d81dbc">style</a>)</td></tr>
<tr class="separator:a7b3a6a8b0be46e3ebc7f0d40adfe2b1b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a00e5b7d58bfc5f1db60c5b03cb8f7b65"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1AlignedTableCell.html">AlignedTableCell</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a00e5b7d58bfc5f1db60c5b03cb8f7b65">getCellRef</a> ()</td></tr>
<tr class="separator:a00e5b7d58bfc5f1db60c5b03cb8f7b65"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classdw_1_1oof_1_1OOFAwareWidget')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html">dw::oof::OOFAwareWidget</a></td></tr>
<tr class="memitem:a4422cf8fd0f981bbaa2099a5c2436da3 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a4422cf8fd0f981bbaa2099a5c2436da3">OOFAwareWidget</a> ()</td></tr>
<tr class="separator:a4422cf8fd0f981bbaa2099a5c2436da3 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a347b60848bb37e677102977726a671 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a4a347b60848bb37e677102977726a671">~OOFAwareWidget</a> ()</td></tr>
<tr class="separator:a4a347b60848bb37e677102977726a671 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8f0cc8138088d41caba53d69c72ab979 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structdw_1_1core_1_1Requisition.html">core::Requisition</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a8f0cc8138088d41caba53d69c72ab979">getRequisitionWithoutOOF</a> ()</td></tr>
<tr class="separator:a8f0cc8138088d41caba53d69c72ab979 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a71c15f48f27369ba42e21aa1ae738e9f inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a71c15f48f27369ba42e21aa1ae738e9f">doesWidgetOOFInterruptDrawing</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *widget)</td></tr>
<tr class="separator:a71c15f48f27369ba42e21aa1ae738e9f inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c2ad6fb6d90ab82e97f17ea0e7317b1 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a4c2ad6fb6d90ab82e97f17ea0e7317b1">draw</a> (<a class="el" href="classdw_1_1core_1_1View.html">core::View</a> *view, <a class="el" href="classdw_1_1core_1_1Rectangle.html">core::Rectangle</a> *area, <a class="el" href="classdw_1_1core_1_1DrawingContext.html">core::DrawingContext</a> *context)</td></tr>
<tr class="separator:a4c2ad6fb6d90ab82e97f17ea0e7317b1 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4718b989390328edbe72b1fdc78390a2 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a4718b989390328edbe72b1fdc78390a2">updateReference</a> (int ref)</td></tr>
<tr class="separator:a4718b989390328edbe72b1fdc78390a2 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa240f4bd7fbe852d68051234b9a45f02 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#aa240f4bd7fbe852d68051234b9a45f02">widgetRefSizeChanged</a> (int externalIndex)</td></tr>
<tr class="separator:aa240f4bd7fbe852d68051234b9a45f02 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaef38554bc5debab8fa0eff0f3c68e90 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#aaef38554bc5debab8fa0eff0f3c68e90">clearPositionChanged</a> ()</td></tr>
<tr class="separator:aaef38554bc5debab8fa0eff0f3c68e90 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a74557aabc463d2d19d0b13e85d5d2069 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a74557aabc463d2d19d0b13e85d5d2069">oofSizeChanged</a> (bool <a class="el" href="classdw_1_1core_1_1Widget.html#a79a7047c906d793d77412286fbfc4ea2">extremesChanged</a>)</td></tr>
<tr class="separator:a74557aabc463d2d19d0b13e85d5d2069 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3b6a659db0d924b35202a04479907352 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a3b6a659db0d924b35202a04479907352">getGeneratorX</a> (int oofmIndex)</td></tr>
<tr class="separator:a3b6a659db0d924b35202a04479907352 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af12703e84d4a38fde12125dd8914bd52 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#af12703e84d4a38fde12125dd8914bd52">getGeneratorY</a> (int oofmIndex)</td></tr>
<tr class="separator:af12703e84d4a38fde12125dd8914bd52 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a99cc8bf314d1c2309880a2c1ec439202 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a99cc8bf314d1c2309880a2c1ec439202">getGeneratorWidth</a> (int callerX, int callerWidth)</td></tr>
<tr class="separator:a99cc8bf314d1c2309880a2c1ec439202 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2824bc6771f6ff515476c765d789c1a9 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a2824bc6771f6ff515476c765d789c1a9">getMaxGeneratorWidth</a> ()</td></tr>
<tr class="separator:a2824bc6771f6ff515476c765d789c1a9 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:accec14aa2bac90eb9bc204f32c96c795 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#accec14aa2bac90eb9bc204f32c96c795">usesMaxGeneratorWidth</a> ()</td></tr>
<tr class="separator:accec14aa2bac90eb9bc204f32c96c795 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a87c19e2cc1ceebde6a96ccb993adfb inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a9a87c19e2cc1ceebde6a96ccb993adfb">isPossibleOOFContainer</a> (int oofmIndex)</td></tr>
<tr class="separator:a9a87c19e2cc1ceebde6a96ccb993adfb inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afb2916834079addae98529bd3f5c4e85 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#afb2916834079addae98529bd3f5c4e85">isPossibleOOFContainerParent</a> (int oofmIndex)</td></tr>
<tr class="separator:afb2916834079addae98529bd3f5c4e85 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classdw_1_1core_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classdw_1_1core_1_1Widget')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classdw_1_1core_1_1Widget.html">dw::core::Widget</a></td></tr>
<tr class="memitem:a33cf21f144b050637788b16bdd6dea4b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a33cf21f144b050637788b16bdd6dea4b">setDeleteCallback</a> (<a class="el" href="widget_8hh.html#aac1b073b90347f25b5c90cd13026cd63">DW_Callback_t</a> func, void *data)</td></tr>
<tr class="separator:a33cf21f144b050637788b16bdd6dea4b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c6b915525836850ed70736e394acc2a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> ()</td></tr>
<tr class="separator:a4c6b915525836850ed70736e394acc2a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afa654cec6369417221663a2583836496 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#afa654cec6369417221663a2583836496">~Widget</a> ()</td></tr>
<tr class="separator:afa654cec6369417221663a2583836496 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4d2799baf192d7e943c2a16eb73b6363 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a4d2799baf192d7e943c2a16eb73b6363">resizeQueued</a> ()</td></tr>
<tr class="separator:a4d2799baf192d7e943c2a16eb73b6363 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7647dfa4bb2a7881a0f1b17eef93f19b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a7647dfa4bb2a7881a0f1b17eef93f19b">extremesQueued</a> ()</td></tr>
<tr class="separator:a7647dfa4bb2a7881a0f1b17eef93f19b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b617e360e0291f339c73262e0d72594 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a9b617e360e0291f339c73262e0d72594">needsResize</a> ()</td></tr>
<tr class="separator:a9b617e360e0291f339c73262e0d72594 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a431e0fd9f74ecc6d7fe3cc68859e3887 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a431e0fd9f74ecc6d7fe3cc68859e3887">needsAllocate</a> ()</td></tr>
<tr class="separator:a431e0fd9f74ecc6d7fe3cc68859e3887 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae51a531d6c733be7bd48769260f4297a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ae51a531d6c733be7bd48769260f4297a">allocateQueued</a> ()</td></tr>
<tr class="separator:ae51a531d6c733be7bd48769260f4297a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a79a7047c906d793d77412286fbfc4ea2 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a79a7047c906d793d77412286fbfc4ea2">extremesChanged</a> ()</td></tr>
<tr class="separator:a79a7047c906d793d77412286fbfc4ea2 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acbf33664202d934d9fd5ac32fa9472d8 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#acbf33664202d934d9fd5ac32fa9472d8">wasAllocated</a> ()</td></tr>
<tr class="separator:acbf33664202d934d9fd5ac32fa9472d8 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8fc36b30df0304fca9d19979acaeca0e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a8fc36b30df0304fca9d19979acaeca0e">setParent</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#ab93cbba14db2dbf59e8b3ce481cd4dd4">parent</a>)</td></tr>
<tr class="separator:a8fc36b30df0304fca9d19979acaeca0e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a21eb3805f83ec5baa8b9bab98e5e99f8 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a21eb3805f83ec5baa8b9bab98e5e99f8">setQuasiParent</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#af4e988e3dfb94ef0d77f0c841b917c24">quasiParent</a>)</td></tr>
<tr class="separator:a21eb3805f83ec5baa8b9bab98e5e99f8 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a058ed5676673ab8784438e7a454f82d9 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a058ed5676673ab8784438e7a454f82d9">setGenerator</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a7f0cfc1577df8f038124ba02c34b3372">generator</a>)</td></tr>
<tr class="separator:a058ed5676673ab8784438e7a454f82d9 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1007f17997c8890c8adc4c5c3ceb70c6 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1style_1_1Style.html">style::Style</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a1007f17997c8890c8adc4c5c3ceb70c6">getStyle</a> ()</td></tr>
<tr class="separator:a1007f17997c8890c8adc4c5c3ceb70c6 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a64b3f0e0b905f041b813774ca1a0376b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structdw_1_1core_1_1Allocation.html">Allocation</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a64b3f0e0b905f041b813774ca1a0376b">getAllocation</a> ()</td></tr>
<tr class="separator:a64b3f0e0b905f041b813774ca1a0376b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70dd28fbfcf2969d13d67b87b554d2bd inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a70dd28fbfcf2969d13d67b87b554d2bd">inAllocation</a> (int x, int y)</td></tr>
<tr class="separator:a70dd28fbfcf2969d13d67b87b554d2bd inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6daed0c096729b81a627d3ebba70db4d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a6daed0c096729b81a627d3ebba70db4d">boxOffsetX</a> ()</td></tr>
<tr class="separator:a6daed0c096729b81a627d3ebba70db4d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a95e2e4e767fbe6928597949c49bfbfb3 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a95e2e4e767fbe6928597949c49bfbfb3">boxRestWidth</a> ()</td></tr>
<tr class="separator:a95e2e4e767fbe6928597949c49bfbfb3 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a39b952b02cd2700642e1912f5a94d077 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a39b952b02cd2700642e1912f5a94d077">boxDiffWidth</a> ()</td></tr>
<tr class="separator:a39b952b02cd2700642e1912f5a94d077 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a17d68170142e79ad0375f32ae6a8ac31 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a17d68170142e79ad0375f32ae6a8ac31">boxOffsetY</a> ()</td></tr>
<tr class="separator:a17d68170142e79ad0375f32ae6a8ac31 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e95222789c8f8633258fe3b325c182a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a9e95222789c8f8633258fe3b325c182a">boxRestHeight</a> ()</td></tr>
<tr class="separator:a9e95222789c8f8633258fe3b325c182a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad01cea0a34526be539c41ce8457a2dae inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ad01cea0a34526be539c41ce8457a2dae">boxDiffHeight</a> ()</td></tr>
<tr class="separator:ad01cea0a34526be539c41ce8457a2dae inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acc72d6e885356f570fa97c34f462c87d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#acc72d6e885356f570fa97c34f462c87d">numSizeRequestReferences</a> ()</td></tr>
<tr class="memdesc:acc72d6e885356f570fa97c34f462c87d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a> (or <a class="el" href="dw-size-request-pos.html">Size requisitions depending on positions</a>). <a href="classdw_1_1Table.html#acc72d6e885356f570fa97c34f462c87d">More...</a><br /></td></tr>
<tr class="separator:acc72d6e885356f570fa97c34f462c87d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab3eaa8ec73207079489f0509205a24a7 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ab3eaa8ec73207079489f0509205a24a7">sizeRequestReference</a> (int index)</td></tr>
<tr class="memdesc:ab3eaa8ec73207079489f0509205a24a7 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a> (or <a class="el" href="dw-size-request-pos.html">Size requisitions depending on positions</a>). <a href="classdw_1_1Table.html#ab3eaa8ec73207079489f0509205a24a7">More...</a><br /></td></tr>
<tr class="separator:ab3eaa8ec73207079489f0509205a24a7 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab1ad7db0e636133879a8c86cd5b8adc5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ab1ad7db0e636133879a8c86cd5b8adc5">numGetExtremesReferences</a> ()</td></tr>
<tr class="memdesc:ab1ad7db0e636133879a8c86cd5b8adc5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a> (or <a class="el" href="dw-size-request-pos.html">Size requisitions depending on positions</a>). <a href="classdw_1_1Table.html#ab1ad7db0e636133879a8c86cd5b8adc5">More...</a><br /></td></tr>
<tr class="separator:ab1ad7db0e636133879a8c86cd5b8adc5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acd3fcfd5499180df60794d11fd0de632 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#acd3fcfd5499180df60794d11fd0de632">getExtremesReference</a> (int index)</td></tr>
<tr class="memdesc:acd3fcfd5499180df60794d11fd0de632 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a> (or <a class="el" href="dw-size-request-pos.html">Size requisitions depending on positions</a>). <a href="classdw_1_1Table.html#acd3fcfd5499180df60794d11fd0de632">More...</a><br /></td></tr>
<tr class="separator:acd3fcfd5499180df60794d11fd0de632 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a34dcfd744c6eec49fa87baaa8591896e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a34dcfd744c6eec49fa87baaa8591896e">sizeRequest</a> (<a class="el" href="structdw_1_1core_1_1Requisition.html">Requisition</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a5c1423c3261dbaa0fc837d824db0dc99">requisition</a>, int numPos=0, <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> **references=NULL, int *x=NULL, int *y=NULL)</td></tr>
<tr class="memdesc:a34dcfd744c6eec49fa87baaa8591896e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This method is a wrapper for <a class="el" href="classdw_1_1core_1_1Widget.html#ac3764607155e58daee03db5cbb76d8e2" title="See Sizes of Dillo Widgets. ">Widget::sizeRequestImpl()</a>; it calls the latter only when needed. <a href="classdw_1_1Table.html#a34dcfd744c6eec49fa87baaa8591896e">More...</a><br /></td></tr>
<tr class="separator:a34dcfd744c6eec49fa87baaa8591896e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec23092b0cfe5624b9751a59671fe251 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#aec23092b0cfe5624b9751a59671fe251">getExtremes</a> (<a class="el" href="structdw_1_1core_1_1Extremes.html">Extremes</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a1a08dcfa5c228e2f31de9cea56cccaf1">extremes</a>, int numPos=0, <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> **references=NULL, int *x=NULL, int *y=NULL)</td></tr>
<tr class="memdesc:aec23092b0cfe5624b9751a59671fe251 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper for <a class="el" href="classdw_1_1core_1_1Widget.html#a984eb786b8d9c9bf63cfd24bdf465e6f" title="See Sizes of Dillo Widgets. ">Widget::getExtremesImpl()</a>. <a href="classdw_1_1Table.html#aec23092b0cfe5624b9751a59671fe251">More...</a><br /></td></tr>
<tr class="separator:aec23092b0cfe5624b9751a59671fe251 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0fa3284a21b20bd79f7de13bc0aca5e4 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a0fa3284a21b20bd79f7de13bc0aca5e4">sizeAllocate</a> (<a class="el" href="structdw_1_1core_1_1Allocation.html">Allocation</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a2212fc4b9b2b0e26c7345f1b4adb7d28">allocation</a>)</td></tr>
<tr class="memdesc:a0fa3284a21b20bd79f7de13bc0aca5e4 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Wrapper for <a class="el" href="classdw_1_1core_1_1Widget.html#a756379942a5254e22c087f6bb62a23a5" title="See Sizes of Dillo Widgets. ">Widget::sizeAllocateImpl</a>, calls the latter only when needed. <a href="classdw_1_1Table.html#a0fa3284a21b20bd79f7de13bc0aca5e4">More...</a><br /></td></tr>
<tr class="separator:a0fa3284a21b20bd79f7de13bc0aca5e4 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a461b61bd42a01e41ccf258db8673d82f inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a461b61bd42a01e41ccf258db8673d82f">calcExtraSpace</a> (int numPos, <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> **references, int *x, int *y)</td></tr>
<tr class="memdesc:a461b61bd42a01e41ccf258db8673d82f inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Calculates <a class="el" href="classdw_1_1core_1_1Widget.html#a608917a82e6f0ca6c8c4b404159cce23" title="Space around the margin box. Allocation is extraSpace + margin + border + padding + contents...">dw::core::Widget::extraSpace</a>. <a href="classdw_1_1Table.html#a461b61bd42a01e41ccf258db8673d82f">More...</a><br /></td></tr>
<tr class="separator:a461b61bd42a01e41ccf258db8673d82f inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3ba42e59fe74c112208193f7c2d7ee55 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a3ba42e59fe74c112208193f7c2d7ee55">getAvailWidth</a> (bool forceValue)</td></tr>
<tr class="separator:a3ba42e59fe74c112208193f7c2d7ee55 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab98b467cc0d194a6a65fe6f8fe9716b7 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ab98b467cc0d194a6a65fe6f8fe9716b7">getAvailHeight</a> (bool forceValue)</td></tr>
<tr class="separator:ab98b467cc0d194a6a65fe6f8fe9716b7 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a438574f0b74a6f43b6001995a9a466ef inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a438574f0b74a6f43b6001995a9a466ef">correctRequisition</a> (<a class="el" href="structdw_1_1core_1_1Requisition.html">Requisition</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a5c1423c3261dbaa0fc837d824db0dc99">requisition</a>, void(*splitHeightFun)(int, int *, int *), bool allowDecreaseWidth, bool allowDecreaseHeight)</td></tr>
<tr class="separator:a438574f0b74a6f43b6001995a9a466ef inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae3ecd16a384316494e55e1d5e4874ad9 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ae3ecd16a384316494e55e1d5e4874ad9">correctExtremes</a> (<a class="el" href="structdw_1_1core_1_1Extremes.html">Extremes</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a1a08dcfa5c228e2f31de9cea56cccaf1">extremes</a>, bool useAdjustmentWidth)</td></tr>
<tr class="separator:ae3ecd16a384316494e55e1d5e4874ad9 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a62d6ca0e43fb8b6f8b59f0af80b42784 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a62d6ca0e43fb8b6f8b59f0af80b42784">calcWidth</a> (<a class="el" href="namespacedw_1_1core_1_1style.html#a65610d57c89e5bee02e4e539fdc989de">style::Length</a> cssValue, int refWidth, <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *refWidget, int limitMinWidth, bool forceValue)</td></tr>
<tr class="separator:a62d6ca0e43fb8b6f8b59f0af80b42784 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f882323af3ca56c77e7da8ca5551c45 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a3f882323af3ca56c77e7da8ca5551c45">calcFinalWidth</a> (<a class="el" href="classdw_1_1core_1_1style_1_1Style.html">style::Style</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#abb5ca0d86f77aed08721e5e5b3d81dbc">style</a>, int refWidth, <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *refWidget, int limitMinWidth, bool forceValue, int *finalWidth)</td></tr>
<tr class="separator:a3f882323af3ca56c77e7da8ca5551c45 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa48c1ee918f3fa5cb105d7610add95aa inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#aa48c1ee918f3fa5cb105d7610add95aa">calcHeight</a> (<a class="el" href="namespacedw_1_1core_1_1style.html#a65610d57c89e5bee02e4e539fdc989de">style::Length</a> cssValue, bool usePercentage, int refHeight, <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *refWidget, bool forceValue)</td></tr>
<tr class="separator:aa48c1ee918f3fa5cb105d7610add95aa inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8587b68301900aecf91b6591aaab8eda inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a8587b68301900aecf91b6591aaab8eda">getMinWidth</a> (<a class="el" href="structdw_1_1core_1_1Extremes.html">Extremes</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a1a08dcfa5c228e2f31de9cea56cccaf1">extremes</a>, bool forceValue)</td></tr>
<tr class="memdesc:a8587b68301900aecf91b6591aaab8eda inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Used to evaluate <a class="el" href="classdw_1_1core_1_1Widget.html#abc0c51b18cdf8eed671d3c368757e739">Widget::adjustMinWidth</a>. <a href="classdw_1_1Table.html#a8587b68301900aecf91b6591aaab8eda">More...</a><br /></td></tr>
<tr class="separator:a8587b68301900aecf91b6591aaab8eda inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a913acf4555ef2aed132a76b01238a742 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a913acf4555ef2aed132a76b01238a742">isPossibleContainer</a> ()</td></tr>
<tr class="separator:a913acf4555ef2aed132a76b01238a742 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abcdd906439e6c2627372f8438e055480 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#abcdd906439e6c2627372f8438e055480">containerSizeChanged</a> ()</td></tr>
<tr class="separator:abcdd906439e6c2627372f8438e055480 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1e7825cca2c7caa025f33a80fc4aa5ed inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a1e7825cca2c7caa025f33a80fc4aa5ed">intersects</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *refWidget, <a class="el" href="classdw_1_1core_1_1Rectangle.html">Rectangle</a> *area, <a class="el" href="classdw_1_1core_1_1Rectangle.html">Rectangle</a> *intersection)</td></tr>
<tr class="memdesc:a1e7825cca2c7caa025f33a80fc4aa5ed inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Calculates the intersection of the visible allocation (i. e. the intersection with the visible parent allocation) and "area" (in widget coordinates referring to "refWidget"), returned in intersection (in widget coordinates). <a href="classdw_1_1Table.html#a1e7825cca2c7caa025f33a80fc4aa5ed">More...</a><br /></td></tr>
<tr class="separator:a1e7825cca2c7caa025f33a80fc4aa5ed inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaebe553117db0b7ba2cb0243d06311df inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#aaebe553117db0b7ba2cb0243d06311df">drawInterruption</a> (<a class="el" href="classdw_1_1core_1_1View.html">View</a> *view, <a class="el" href="classdw_1_1core_1_1Rectangle.html">Rectangle</a> *area, <a class="el" href="classdw_1_1core_1_1DrawingContext.html">DrawingContext</a> *context)</td></tr>
<tr class="separator:aaebe553117db0b7ba2cb0243d06311df inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e6a8e5dc70cdfacbe37a3b407e771dc inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a5e6a8e5dc70cdfacbe37a3b407e771dc">getWidgetAtPointInterrupted</a> (int x, int y, <a class="el" href="classdw_1_1core_1_1GettingWidgetAtPointContext.html">GettingWidgetAtPointContext</a> *context)</td></tr>
<tr class="separator:a5e6a8e5dc70cdfacbe37a3b407e771dc inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac44deda1bda16a6e3193e5bbe119c683 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ac44deda1bda16a6e3193e5bbe119c683">buttonPress</a> (<a class="el" href="classdw_1_1core_1_1EventButton.html">EventButton</a> *event)</td></tr>
<tr class="separator:ac44deda1bda16a6e3193e5bbe119c683 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a51a90035fd722667d931bf18909aa847 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a51a90035fd722667d931bf18909aa847">buttonRelease</a> (<a class="el" href="classdw_1_1core_1_1EventButton.html">EventButton</a> *event)</td></tr>
<tr class="separator:a51a90035fd722667d931bf18909aa847 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a122d13ab14c734fc528c62038c387c1d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a122d13ab14c734fc528c62038c387c1d">motionNotify</a> (<a class="el" href="classdw_1_1core_1_1EventMotion.html">EventMotion</a> *event)</td></tr>
<tr class="separator:a122d13ab14c734fc528c62038c387c1d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f5d10ed0a3e0cbd1b156dceac75cb68 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a3f5d10ed0a3e0cbd1b156dceac75cb68">enterNotify</a> (<a class="el" href="classdw_1_1core_1_1EventCrossing.html">EventCrossing</a> *event)</td></tr>
<tr class="separator:a3f5d10ed0a3e0cbd1b156dceac75cb68 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaab70d1e0c51dbca2f677a3f80a7b0ac inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#aaab70d1e0c51dbca2f677a3f80a7b0ac">leaveNotify</a> (<a class="el" href="classdw_1_1core_1_1EventCrossing.html">EventCrossing</a> *event)</td></tr>
<tr class="separator:aaab70d1e0c51dbca2f677a3f80a7b0ac inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a04ccf6979d3289a6ba8298ce5a1f570b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a04ccf6979d3289a6ba8298ce5a1f570b">setStyle</a> (<a class="el" href="classdw_1_1core_1_1style_1_1Style.html">style::Style</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#abb5ca0d86f77aed08721e5e5b3d81dbc">style</a>)</td></tr>
<tr class="memdesc:a04ccf6979d3289a6ba8298ce5a1f570b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Change the style of a widget. <a href="classdw_1_1Table.html#a04ccf6979d3289a6ba8298ce5a1f570b">More...</a><br /></td></tr>
<tr class="separator:a04ccf6979d3289a6ba8298ce5a1f570b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad19935d3edd15314426251e06f5daf0e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ad19935d3edd15314426251e06f5daf0e">setBgColor</a> (<a class="el" href="classdw_1_1core_1_1style_1_1Color.html">style::Color</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a5a6a21ae5724f284e085baee120becf4">bgColor</a>)</td></tr>
<tr class="memdesc:ad19935d3edd15314426251e06f5daf0e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Set the background "behind" the widget, if it is not the background of the parent widget, e.g. the background of a table row. <a href="classdw_1_1Table.html#ad19935d3edd15314426251e06f5daf0e">More...</a><br /></td></tr>
<tr class="separator:ad19935d3edd15314426251e06f5daf0e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aca7bc16d8f4debdaddfc2bf96922538f inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1style_1_1Color.html">style::Color</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#aca7bc16d8f4debdaddfc2bf96922538f">getBgColor</a> ()</td></tr>
<tr class="memdesc:aca7bc16d8f4debdaddfc2bf96922538f inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the actual background of a widget. <a href="classdw_1_1Table.html#aca7bc16d8f4debdaddfc2bf96922538f">More...</a><br /></td></tr>
<tr class="separator:aca7bc16d8f4debdaddfc2bf96922538f inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aef48f52db329c961daed586d291461d5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#aef48f52db329c961daed586d291461d5">drawBox</a> (<a class="el" href="classdw_1_1core_1_1View.html">View</a> *view, <a class="el" href="classdw_1_1core_1_1style_1_1Style.html">style::Style</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#abb5ca0d86f77aed08721e5e5b3d81dbc">style</a>, <a class="el" href="classdw_1_1core_1_1Rectangle.html">Rectangle</a> *area, int x, int y, int width, int height, bool inverse)</td></tr>
<tr class="memdesc:aef48f52db329c961daed586d291461d5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Draw borders and background of a widget part, which allocation is given by (x, y, width, height) (widget coordinates). <a href="classdw_1_1Table.html#aef48f52db329c961daed586d291461d5">More...</a><br /></td></tr>
<tr class="separator:aef48f52db329c961daed586d291461d5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4097299c4294edf611c76259df7fa035 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a4097299c4294edf611c76259df7fa035">drawWidgetBox</a> (<a class="el" href="classdw_1_1core_1_1View.html">View</a> *view, <a class="el" href="classdw_1_1core_1_1Rectangle.html">Rectangle</a> *area, bool inverse)</td></tr>
<tr class="memdesc:a4097299c4294edf611c76259df7fa035 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Draw borders and background of a widget. <a href="classdw_1_1Table.html#a4097299c4294edf611c76259df7fa035">More...</a><br /></td></tr>
<tr class="separator:a4097299c4294edf611c76259df7fa035 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a45c5a9db0d5c14cffb2f733a262a06cc inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a45c5a9db0d5c14cffb2f733a262a06cc">drawSelected</a> (<a class="el" href="classdw_1_1core_1_1View.html">View</a> *view, <a class="el" href="classdw_1_1core_1_1Rectangle.html">Rectangle</a> *area)</td></tr>
<tr class="separator:a45c5a9db0d5c14cffb2f733a262a06cc inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2eb6b505d88f2c77b98c6c686aedc906 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a2eb6b505d88f2c77b98c6c686aedc906">setButtonSensitive</a> (bool <a class="el" href="classdw_1_1core_1_1Widget.html#af8b089bcf5978b65767381ca4afc28f2">buttonSensitive</a>)</td></tr>
<tr class="separator:a2eb6b505d88f2c77b98c6c686aedc906 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70d34f33dbff64e3199b013269461be9 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a70d34f33dbff64e3199b013269461be9">isButtonSensitive</a> ()</td></tr>
<tr class="separator:a70d34f33dbff64e3199b013269461be9 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afdbd0e08c8670979ae587f6924391473 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#afdbd0e08c8670979ae587f6924391473">getParent</a> ()</td></tr>
<tr class="separator:afdbd0e08c8670979ae587f6924391473 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab3799ae9e52b6955da68ff3f01705155 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ab3799ae9e52b6955da68ff3f01705155">getContainer</a> ()</td></tr>
<tr class="separator:ab3799ae9e52b6955da68ff3f01705155 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8f1ca49de779217bf12a03ae657ef26 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ac8f1ca49de779217bf12a03ae657ef26">getTopLevel</a> ()</td></tr>
<tr class="memdesc:ac8f1ca49de779217bf12a03ae657ef26 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the widget at the root of the tree, this widget is part from. <a href="classdw_1_1Table.html#ac8f1ca49de779217bf12a03ae657ef26">More...</a><br /></td></tr>
<tr class="separator:ac8f1ca49de779217bf12a03ae657ef26 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4bb3a16ac278ca8ba50ae94d7c568f0b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a4bb3a16ac278ca8ba50ae94d7c568f0b">getLevel</a> ()</td></tr>
<tr class="memdesc:a4bb3a16ac278ca8ba50ae94d7c568f0b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the level of the widget within the tree. <a href="classdw_1_1Table.html#a4bb3a16ac278ca8ba50ae94d7c568f0b">More...</a><br /></td></tr>
<tr class="separator:a4bb3a16ac278ca8ba50ae94d7c568f0b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abdb9da7f91398140aced170d6e760312 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#abdb9da7f91398140aced170d6e760312">getGeneratorLevel</a> ()</td></tr>
<tr class="memdesc:abdb9da7f91398140aced170d6e760312 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the level of the widget within the tree, regarting the generators, not the parents. <a href="classdw_1_1Table.html#abdb9da7f91398140aced170d6e760312">More...</a><br /></td></tr>
<tr class="separator:abdb9da7f91398140aced170d6e760312 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7310d9275c81fc669f21ba4f26081c31 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a7310d9275c81fc669f21ba4f26081c31">getNearestCommonAncestor</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *otherWidget)</td></tr>
<tr class="memdesc:a7310d9275c81fc669f21ba4f26081c31 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Get the widget with the highest level, which is a direct ancestor of widget1 and widget2. <a href="classdw_1_1Table.html#a7310d9275c81fc669f21ba4f26081c31">More...</a><br /></td></tr>
<tr class="separator:a7310d9275c81fc669f21ba4f26081c31 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a989b7583b4eec614377195ef852c3549 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1WidgetReference.html">WidgetReference</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a989b7583b4eec614377195ef852c3549">getWidgetReference</a> ()</td></tr>
<tr class="separator:a989b7583b4eec614377195ef852c3549 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15cfabfaaabbd95e4ef327477cf43578 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a15cfabfaaabbd95e4ef327477cf43578">setWidgetReference</a> (<a class="el" href="classdw_1_1core_1_1WidgetReference.html">WidgetReference</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#adb87cbcf94666e7561df5d134ae6be78">widgetReference</a>)</td></tr>
<tr class="separator:a15cfabfaaabbd95e4ef327477cf43578 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a25b997d3778a8ea39caa4228eeceaeb8 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a25b997d3778a8ea39caa4228eeceaeb8">getGenerator</a> ()</td></tr>
<tr class="separator:a25b997d3778a8ea39caa4228eeceaeb8 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad988f06fb2005ce210f9fbe29f30e1c6 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Layout.html">Layout</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ad988f06fb2005ce210f9fbe29f30e1c6">getLayout</a> ()</td></tr>
<tr class="separator:ad988f06fb2005ce210f9fbe29f30e1c6 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9d35ab9f8422a4d63978955ae0e710d7 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a9d35ab9f8422a4d63978955ae0e710d7">scrollTo</a> (<a class="el" href="namespacedw_1_1core.html#adcc37c8d91f2adaaa594858f052aa1bf">HPosition</a> hpos, <a class="el" href="namespacedw_1_1core.html#ac4eb3a2c80b4b3ce37c6908623efa2ab">VPosition</a> vpos, int x, int y, int width, int height)</td></tr>
<tr class="separator:a9d35ab9f8422a4d63978955ae0e710d7 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae464dfc3063ce882f4e5e5cea68c0739 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ae464dfc3063ce882f4e5e5cea68c0739">getMarginArea</a> (int *xMar, int *yMar, int *widthMar, int *heightMar)</td></tr>
<tr class="separator:ae464dfc3063ce882f4e5e5cea68c0739 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acd9c3aefebbcfa00b53a73c6a8af3216 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#acd9c3aefebbcfa00b53a73c6a8af3216">getBorderArea</a> (int *xBor, int *yBor, int *widthBor, int *heightBor)</td></tr>
<tr class="separator:acd9c3aefebbcfa00b53a73c6a8af3216 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae5f5dc5c77540895ac665d383c9edfe5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ae5f5dc5c77540895ac665d383c9edfe5">getPaddingArea</a> (int *xPad, int *yPad, int *widthPad, int *heightPad)</td></tr>
<tr class="memdesc:ae5f5dc5c77540895ac665d383c9edfe5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Return the padding area (content plus padding). <a href="classdw_1_1Table.html#ae5f5dc5c77540895ac665d383c9edfe5">More...</a><br /></td></tr>
<tr class="separator:ae5f5dc5c77540895ac665d383c9edfe5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e271977073883800712027a93f08e1d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a4e271977073883800712027a93f08e1d">removeChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *child)</td></tr>
<tr class="separator:a4e271977073883800712027a93f08e1d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classlout_1_1identity_1_1IdentifiableObject')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html">lout::identity::IdentifiableObject</a></td></tr>
<tr class="memitem:a31c98db27c4bc38ba30ba0e4e1a23066 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html#a31c98db27c4bc38ba30ba0e4e1a23066">IdentifiableObject</a> ()</td></tr>
<tr class="separator:a31c98db27c4bc38ba30ba0e4e1a23066 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec2a59a4bf234606c2eb5231d1f048d5 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html#aec2a59a4bf234606c2eb5231d1f048d5">intoStringBuffer</a> (<a class="el" href="classlout_1_1misc_1_1StringBuffer.html">misc::StringBuffer</a> *sb)</td></tr>
<tr class="memdesc:aec2a59a4bf234606c2eb5231d1f048d5 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="mdescLeft"> </td><td class="mdescRight">Store a textual representation of the object in a <a class="el" href="classlout_1_1misc_1_1StringBuffer.html" title="A class for fast concatenation of a large number of strings. ">misc::StringBuffer</a>. <a href="classdw_1_1Table.html#aec2a59a4bf234606c2eb5231d1f048d5">More...</a><br /></td></tr>
<tr class="separator:aec2a59a4bf234606c2eb5231d1f048d5 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a491c1367ff6783a0647522f0a68ae054 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html#a491c1367ff6783a0647522f0a68ae054">getClassId</a> ()</td></tr>
<tr class="memdesc:a491c1367ff6783a0647522f0a68ae054 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="mdescLeft"> </td><td class="mdescRight">Returns the class identifier. <a href="classdw_1_1Table.html#a491c1367ff6783a0647522f0a68ae054">More...</a><br /></td></tr>
<tr class="separator:a491c1367ff6783a0647522f0a68ae054 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e862eb04821e4bbf0cee0d5d58b7752 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memItemLeft" align="right" valign="top">const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html#a6e862eb04821e4bbf0cee0d5d58b7752">getClassName</a> ()</td></tr>
<tr class="memdesc:a6e862eb04821e4bbf0cee0d5d58b7752 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="mdescLeft"> </td><td class="mdescRight">Return the name, under which the class of this object was registered. <a href="classdw_1_1Table.html#a6e862eb04821e4bbf0cee0d5d58b7752">More...</a><br /></td></tr>
<tr class="separator:a6e862eb04821e4bbf0cee0d5d58b7752 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c838c41d8044c9eeffa790592f85ce9 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html#a4c838c41d8044c9eeffa790592f85ce9">instanceOf</a> (int otherClassId)</td></tr>
<tr class="memdesc:a4c838c41d8044c9eeffa790592f85ce9 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="mdescLeft"> </td><td class="mdescRight">Returns, whether this class is an instance of the class, given by <em>otherClassId</em>, or of a sub class of this class. <a href="classdw_1_1Table.html#a4c838c41d8044c9eeffa790592f85ce9">More...</a><br /></td></tr>
<tr class="separator:a4c838c41d8044c9eeffa790592f85ce9 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classlout_1_1object_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classlout_1_1object_1_1Object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classlout_1_1object_1_1Object.html">lout::object::Object</a></td></tr>
<tr class="memitem:a9fef8a29a41124cb0370f4dc0410fb5b inherit pub_methods_classlout_1_1object_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1object_1_1Object.html#a9fef8a29a41124cb0370f4dc0410fb5b">~Object</a> ()</td></tr>
<tr class="memdesc:a9fef8a29a41124cb0370f4dc0410fb5b inherit pub_methods_classlout_1_1object_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">The destructor is defined as virtual (but not abstract), so that destruction of <a class="el" href="classlout_1_1object_1_1Object.html" title="This is the base class for many other classes, which defines very common virtual methods. ">Object</a>'s works properly. <a href="classdw_1_1Table.html#a9fef8a29a41124cb0370f4dc0410fb5b">More...</a><br /></td></tr>
<tr class="separator:a9fef8a29a41124cb0370f4dc0410fb5b inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af4bc95cee49a71d32c7b24505ccc9397 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1object_1_1Object.html#af4bc95cee49a71d32c7b24505ccc9397">equals</a> (<a class="el" href="classlout_1_1object_1_1Object.html">Object</a> *other)</td></tr>
<tr class="memdesc:af4bc95cee49a71d32c7b24505ccc9397 inherit pub_methods_classlout_1_1object_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Returns, whether two objects are equal. <a href="classdw_1_1Table.html#af4bc95cee49a71d32c7b24505ccc9397">More...</a><br /></td></tr>
<tr class="separator:af4bc95cee49a71d32c7b24505ccc9397 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad81c4136418c9b44253568f9ae069006 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1object_1_1Object.html#ad81c4136418c9b44253568f9ae069006">hashValue</a> ()</td></tr>
<tr class="memdesc:ad81c4136418c9b44253568f9ae069006 inherit pub_methods_classlout_1_1object_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Return a hash value for the object. <a href="classdw_1_1Table.html#ad81c4136418c9b44253568f9ae069006">More...</a><br /></td></tr>
<tr class="separator:ad81c4136418c9b44253568f9ae069006 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7ab36efad0df9a036b9252a9564a8cd4 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classlout_1_1object_1_1Object.html">Object</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1object_1_1Object.html#a7ab36efad0df9a036b9252a9564a8cd4">clone</a> ()</td></tr>
<tr class="memdesc:a7ab36efad0df9a036b9252a9564a8cd4 inherit pub_methods_classlout_1_1object_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Return an exact copy of the object. <a href="classdw_1_1Table.html#a7ab36efad0df9a036b9252a9564a8cd4">More...</a><br /></td></tr>
<tr class="separator:a7ab36efad0df9a036b9252a9564a8cd4 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad7aeadc7934293197110d550abda81ff inherit pub_methods_classlout_1_1object_1_1Object"><td class="memItemLeft" align="right" valign="top">const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1object_1_1Object.html#ad7aeadc7934293197110d550abda81ff">toString</a> ()</td></tr>
<tr class="memdesc:ad7aeadc7934293197110d550abda81ff inherit pub_methods_classlout_1_1object_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Use <a class="el" href="classlout_1_1object_1_1Object.html#ad1ad2f2b36fc7a7bead883caa64b0082" title="Store a textual representation of the object in a misc::StringBuffer. ">object::Object::intoStringBuffer</a> to return a textual representation of the object. <a href="classdw_1_1Table.html#ad7aeadc7934293197110d550abda81ff">More...</a><br /></td></tr>
<tr class="separator:ad7aeadc7934293197110d550abda81ff inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8b53443ca61b25e794157792f5d3a956 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1object_1_1Object.html#a8b53443ca61b25e794157792f5d3a956">sizeOf</a> ()</td></tr>
<tr class="memdesc:a8b53443ca61b25e794157792f5d3a956 inherit pub_methods_classlout_1_1object_1_1Object"><td class="mdescLeft"> </td><td class="mdescRight">Return the number of bytes, this object totally uses. <a href="classdw_1_1Table.html#a8b53443ca61b25e794157792f5d3a956">More...</a><br /></td></tr>
<tr class="separator:a8b53443ca61b25e794157792f5d3a956 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a1bed5f2e41e7a7e6c8ba8cec5e93c997"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a1bed5f2e41e7a7e6c8ba8cec5e93c997">setAdjustTableMinWidth</a> (bool <a class="el" href="classdw_1_1Table.html#af7a2279449b6964b3c27cef827ad47b0">adjustTableMinWidth</a>)</td></tr>
<tr class="separator:a1bed5f2e41e7a7e6c8ba8cec5e93c997"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8ee5cd231d2d3467e7195cb7828a961"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ac8ee5cd231d2d3467e7195cb7828a961">getAdjustTableMinWidth</a> ()</td></tr>
<tr class="separator:ac8ee5cd231d2d3467e7195cb7828a961"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html">dw::oof::OOFAwareWidget</a></td></tr>
<tr class="memitem:a7f248e0657464123352245e6ee46a60f inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a7f248e0657464123352245e6ee46a60f">stackingLevelText</a> (int level)</td></tr>
<tr class="separator:a7f248e0657464123352245e6ee46a60f inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abd766d3bfcd7078a78c629f2aa54a091 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#abd766d3bfcd7078a78c629f2aa54a091">testStyleFloat</a> (<a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#abb5ca0d86f77aed08721e5e5b3d81dbc">style</a>)</td></tr>
<tr class="separator:abd766d3bfcd7078a78c629f2aa54a091 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af930c2269b2018998a2535e943ee0707 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#af930c2269b2018998a2535e943ee0707">testStyleAbsolutelyPositioned</a> (<a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#abb5ca0d86f77aed08721e5e5b3d81dbc">style</a>)</td></tr>
<tr class="separator:af930c2269b2018998a2535e943ee0707 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abec17b4f531a430deddb7b2adc49fcc3 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#abec17b4f531a430deddb7b2adc49fcc3">testStyleFixedlyPositioned</a> (<a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#abb5ca0d86f77aed08721e5e5b3d81dbc">style</a>)</td></tr>
<tr class="separator:abec17b4f531a430deddb7b2adc49fcc3 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a06cd5e52541d8dee58e386a15231cd3b inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a06cd5e52541d8dee58e386a15231cd3b">testStyleRelativelyPositioned</a> (<a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#abb5ca0d86f77aed08721e5e5b3d81dbc">style</a>)</td></tr>
<tr class="separator:a06cd5e52541d8dee58e386a15231cd3b inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a84ed65e7461dad0546c81a111cf3ed3e inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a84ed65e7461dad0546c81a111cf3ed3e">testStylePositioned</a> (<a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#abb5ca0d86f77aed08721e5e5b3d81dbc">style</a>)</td></tr>
<tr class="separator:a84ed65e7461dad0546c81a111cf3ed3e inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8da3b20edce48f87728c61bede1ad4e inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#ac8da3b20edce48f87728c61bede1ad4e">testStyleOutOfFlow</a> (<a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#abb5ca0d86f77aed08721e5e5b3d81dbc">style</a>)</td></tr>
<tr class="separator:ac8da3b20edce48f87728c61bede1ad4e inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abcb32d0039fe2a39383f03bf81a3248a inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#abcb32d0039fe2a39383f03bf81a3248a">testWidgetFloat</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:abcb32d0039fe2a39383f03bf81a3248a inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a77fec38bc6502c4a18fc5d68d574a012 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a77fec38bc6502c4a18fc5d68d574a012">testWidgetAbsolutelyPositioned</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:a77fec38bc6502c4a18fc5d68d574a012 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2295bf174533205abf059474341533cf inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a2295bf174533205abf059474341533cf">testWidgetFixedlyPositioned</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:a2295bf174533205abf059474341533cf inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afdd795ef92ad4e91dc8bf8083a51faee inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#afdd795ef92ad4e91dc8bf8083a51faee">testWidgetRelativelyPositioned</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:afdd795ef92ad4e91dc8bf8083a51faee inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ace62b899aeac256a67a1600379b7f0f7 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#ace62b899aeac256a67a1600379b7f0f7">testWidgetPositioned</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:ace62b899aeac256a67a1600379b7f0f7 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad01e4ce15487f3ad2d8791f3ca67cf90 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#ad01e4ce15487f3ad2d8791f3ca67cf90">testWidgetOutOfFlow</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:ad01e4ce15487f3ad2d8791f3ca67cf90 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_methods_classdw_1_1core_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classdw_1_1core_1_1Widget')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classdw_1_1core_1_1Widget.html">dw::core::Widget</a></td></tr>
<tr class="memitem:a3db6aafbbabd4b9f6fa0fbe1293974cb inherit pub_static_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a3db6aafbbabd4b9f6fa0fbe1293974cb">setAdjustMinWidth</a> (bool <a class="el" href="classdw_1_1core_1_1Widget.html#abc0c51b18cdf8eed671d3c368757e739">adjustMinWidth</a>)</td></tr>
<tr class="separator:a3db6aafbbabd4b9f6fa0fbe1293974cb inherit pub_static_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a223626296db0bbe70517acc812e27180 inherit pub_static_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a223626296db0bbe70517acc812e27180">adjustHeight</a> (int *height, bool allowDecreaseHeight, int ascent, int descent)</td></tr>
<tr class="separator:a223626296db0bbe70517acc812e27180 inherit pub_static_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr class="memitem:af80da934c916aaa03d2a5a47cd125c13"><td class="memItemLeft" align="right" valign="top">static int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#af80da934c916aaa03d2a5a47cd125c13">CLASS_ID</a> = -1</td></tr>
<tr class="separator:af80da934c916aaa03d2a5a47cd125c13"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td colspan="2" onclick="javascript:toggleInherit('pub_static_attribs_classdw_1_1oof_1_1OOFAwareWidget')"><img src="closed.png" alt="-"/> Static Public Attributes inherited from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html">dw::oof::OOFAwareWidget</a></td></tr>
<tr class="memitem:a66a9fe1db949dde6087c5c4df2a17643 inherit pub_static_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a66a9fe1db949dde6087c5c4df2a17643">CLASS_ID</a> = -1</td></tr>
<tr class="separator:a66a9fe1db949dde6087c5c4df2a17643 inherit pub_static_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_attribs_classdw_1_1core_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('pub_static_attribs_classdw_1_1core_1_1Widget')"><img src="closed.png" alt="-"/> Static Public Attributes inherited from <a class="el" href="classdw_1_1core_1_1Widget.html">dw::core::Widget</a></td></tr>
<tr class="memitem:af660683743dd7683a4c72474c996488d inherit pub_static_attribs_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">static int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#af660683743dd7683a4c72474c996488d">CLASS_ID</a> = -1</td></tr>
<tr class="separator:af660683743dd7683a4c72474c996488d inherit pub_static_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:ab9009c3a7a381d36bb1daea8d50d8499"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ab9009c3a7a381d36bb1daea8d50d8499">sizeRequestSimpl</a> (<a class="el" href="structdw_1_1core_1_1Requisition.html">core::Requisition</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a5c1423c3261dbaa0fc837d824db0dc99">requisition</a>)</td></tr>
<tr class="memdesc:ab9009c3a7a381d36bb1daea8d50d8499"><td class="mdescLeft"> </td><td class="mdescRight">Simple variant, to be implemented by widgets with sizes not depending on positions. <a href="classdw_1_1Table.html#ab9009c3a7a381d36bb1daea8d50d8499">More...</a><br /></td></tr>
<tr class="separator:ab9009c3a7a381d36bb1daea8d50d8499"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e874140c2d53dae0ef1355677d4bec7"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a5e874140c2d53dae0ef1355677d4bec7">getExtremesSimpl</a> (<a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a1a08dcfa5c228e2f31de9cea56cccaf1">extremes</a>)</td></tr>
<tr class="memdesc:a5e874140c2d53dae0ef1355677d4bec7"><td class="mdescLeft"> </td><td class="mdescRight">Simple variant, to be implemented by widgets with extremes not depending on positions. <a href="classdw_1_1Table.html#a5e874140c2d53dae0ef1355677d4bec7">More...</a><br /></td></tr>
<tr class="separator:a5e874140c2d53dae0ef1355677d4bec7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaf88b2bd82f86aa9c66ef30a730a3551"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#aaf88b2bd82f86aa9c66ef30a730a3551">sizeAllocateImpl</a> (<a class="el" href="structdw_1_1core_1_1Allocation.html">core::Allocation</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a2212fc4b9b2b0e26c7345f1b4adb7d28">allocation</a>)</td></tr>
<tr class="memdesc:aaf88b2bd82f86aa9c66ef30a730a3551"><td class="mdescLeft"> </td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>. <a href="classdw_1_1Table.html#aaf88b2bd82f86aa9c66ef30a730a3551">More...</a><br /></td></tr>
<tr class="separator:aaf88b2bd82f86aa9c66ef30a730a3551"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5376efa257fb6d20443bf59d41dd0078"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a5376efa257fb6d20443bf59d41dd0078">resizeDrawImpl</a> ()</td></tr>
<tr class="memdesc:a5376efa257fb6d20443bf59d41dd0078"><td class="mdescLeft"> </td><td class="mdescRight">Called after <a class="el" href="classdw_1_1Table.html#aaf88b2bd82f86aa9c66ef30a730a3551" title="See Sizes of Dillo Widgets. ">sizeAllocateImpl()</a> to redraw necessary areas. By default the whole widget is redrawn. <a href="classdw_1_1Table.html#a5376efa257fb6d20443bf59d41dd0078">More...</a><br /></td></tr>
<tr class="separator:a5376efa257fb6d20443bf59d41dd0078"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61c6915a97ca6ae8b4436adfabe1c7cc"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a61c6915a97ca6ae8b4436adfabe1c7cc">getAdjustMinWidth</a> ()</td></tr>
<tr class="separator:a61c6915a97ca6ae8b4436adfabe1c7cc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4f089dc3de0b64a7c6509da0e3460938"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a4f089dc3de0b64a7c6509da0e3460938">getAvailWidthOfChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *child, bool forceValue)</td></tr>
<tr class="separator:a4f089dc3de0b64a7c6509da0e3460938"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7473e594367c7a70d37ff86868e1201b"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a7473e594367c7a70d37ff86868e1201b">containerSizeChangedForChildren</a> ()</td></tr>
<tr class="separator:a7473e594367c7a70d37ff86868e1201b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a558ec91106835fa469df75894b23a0eb"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a558ec91106835fa469df75894b23a0eb">affectsSizeChangeContainerChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *child)</td></tr>
<tr class="separator:a558ec91106835fa469df75894b23a0eb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7dd4facfe080a1507657442ee3280ce5"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a7dd4facfe080a1507657442ee3280ce5">usesAvailWidth</a> ()</td></tr>
<tr class="memdesc:a7dd4facfe080a1507657442ee3280ce5"><td class="mdescLeft"> </td><td class="mdescRight">Must be implemengted by a method returning true, when <a class="el" href="classdw_1_1core_1_1Widget.html#a3ba42e59fe74c112208193f7c2d7ee55">getAvailWidth()</a> is called. <a href="classdw_1_1Table.html#a7dd4facfe080a1507657442ee3280ce5">More...</a><br /></td></tr>
<tr class="separator:a7dd4facfe080a1507657442ee3280ce5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7e1663a45d19f48066fc7b5d65a2dbad"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a7e1663a45d19f48066fc7b5d65a2dbad">isBlockLevel</a> ()</td></tr>
<tr class="separator:a7e1663a45d19f48066fc7b5d65a2dbad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1665a638507b5474b6d81e00c0cea356"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a1665a638507b5474b6d81e00c0cea356">drawLevel</a> (<a class="el" href="classdw_1_1core_1_1View.html">core::View</a> *view, <a class="el" href="classdw_1_1core_1_1Rectangle.html">core::Rectangle</a> *area, int level, <a class="el" href="classdw_1_1core_1_1DrawingContext.html">core::DrawingContext</a> *context)</td></tr>
<tr class="separator:a1665a638507b5474b6d81e00c0cea356"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af156af1e842b6b7f4680c7e6cf933d8a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#af156af1e842b6b7f4680c7e6cf933d8a">getWidgetAtPointLevel</a> (int x, int y, int level, <a class="el" href="classdw_1_1core_1_1GettingWidgetAtPointContext.html">core::GettingWidgetAtPointContext</a> *context)</td></tr>
<tr class="separator:af156af1e842b6b7f4680c7e6cf933d8a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abf1e4db621501297d349f221ded9394f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#abf1e4db621501297d349f221ded9394f">removeChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *child)</td></tr>
<tr class="separator:abf1e4db621501297d349f221ded9394f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classdw_1_1oof_1_1OOFAwareWidget')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html">dw::oof::OOFAwareWidget</a></td></tr>
<tr class="memitem:a7efaf1e7a789cbf18647109d977c94fa inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a7efaf1e7a789cbf18647109d977c94fa">isParentRefOOF</a> (int <a class="el" href="classdw_1_1core_1_1Widget.html#a3a8324c1cc6859bd9bab133b44096f1b">parentRef</a>)</td></tr>
<tr class="separator:a7efaf1e7a789cbf18647109d977c94fa inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad888fb19825458c3a7347a4b9f70172f inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#ad888fb19825458c3a7347a4b9f70172f">makeParentRefInFlow</a> (int inFlowSubRef)</td></tr>
<tr class="separator:ad888fb19825458c3a7347a4b9f70172f inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a431899dbb0b81b66a61485448c02808d inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a431899dbb0b81b66a61485448c02808d">getParentRefInFlowSubRef</a> (int <a class="el" href="classdw_1_1core_1_1Widget.html#a3a8324c1cc6859bd9bab133b44096f1b">parentRef</a>)</td></tr>
<tr class="separator:a431899dbb0b81b66a61485448c02808d inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaa2320159b7efdabb7d1369b01eb3b11 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#aaa2320159b7efdabb7d1369b01eb3b11">makeParentRefOOF</a> (int oofmIndex, int oofmSubRef)</td></tr>
<tr class="separator:aaa2320159b7efdabb7d1369b01eb3b11 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a940cfc53e7c58eab71289c0507ec02f3 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a940cfc53e7c58eab71289c0507ec02f3">getParentRefOOFSubRef</a> (int <a class="el" href="classdw_1_1core_1_1Widget.html#a3a8324c1cc6859bd9bab133b44096f1b">parentRef</a>)</td></tr>
<tr class="separator:a940cfc53e7c58eab71289c0507ec02f3 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9c39d54a5ada592d8a50dd1d2f534c40 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a9c39d54a5ada592d8a50dd1d2f534c40">getParentRefOOFIndex</a> (int <a class="el" href="classdw_1_1core_1_1Widget.html#a3a8324c1cc6859bd9bab133b44096f1b">parentRef</a>)</td></tr>
<tr class="separator:a9c39d54a5ada592d8a50dd1d2f534c40 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afb21a1d102cb51d7b4d55f71ecaf5dd1 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1oof_1_1OutOfFlowMgr.html">oof::OutOfFlowMgr</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#afb21a1d102cb51d7b4d55f71ecaf5dd1">getParentRefOutOfFlowMgr</a> (int <a class="el" href="classdw_1_1core_1_1Widget.html#a3a8324c1cc6859bd9bab133b44096f1b">parentRef</a>)</td></tr>
<tr class="separator:afb21a1d102cb51d7b4d55f71ecaf5dd1 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6b600efb55d6d7d48ebc882999f14af8 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a6b600efb55d6d7d48ebc882999f14af8">isWidgetOOF</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:a6b600efb55d6d7d48ebc882999f14af8 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae28b8aa40e73eff1cb1cc0dbdc8dc7db inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#ae28b8aa40e73eff1cb1cc0dbdc8dc7db">getWidgetInFlowSubRef</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:ae28b8aa40e73eff1cb1cc0dbdc8dc7db inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab521646c5373736ecb9daae1aa5783d0 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#ab521646c5373736ecb9daae1aa5783d0">getWidgetOOFSubRef</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:ab521646c5373736ecb9daae1aa5783d0 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af098bcfd061eea8e3b89df34f8af2f14 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#af098bcfd061eea8e3b89df34f8af2f14">getWidgetOOFIndex</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:af098bcfd061eea8e3b89df34f8af2f14 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aef06e8c71163ca33a8901c899a779918 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1oof_1_1OutOfFlowMgr.html">oof::OutOfFlowMgr</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#aef06e8c71163ca33a8901c899a779918">getWidgetOutOfFlowMgr</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget)</td></tr>
<tr class="separator:aef06e8c71163ca33a8901c899a779918 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab73e2a3f9d8c3075fc775e1fb0f0bf79 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1oof_1_1OutOfFlowMgr.html">OutOfFlowMgr</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#ab73e2a3f9d8c3075fc775e1fb0f0bf79">searchOutOfFlowMgr</a> (int oofmIndex)</td></tr>
<tr class="separator:ab73e2a3f9d8c3075fc775e1fb0f0bf79 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac6ced072cd6f8248cf5ad05493c45705 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#ac6ced072cd6f8248cf5ad05493c45705">initOutOfFlowMgrs</a> ()</td></tr>
<tr class="separator:ac6ced072cd6f8248cf5ad05493c45705 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9224eff0982592eb440f7c70facd710e inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a9224eff0982592eb440f7c70facd710e">correctRequisitionByOOF</a> (<a class="el" href="structdw_1_1core_1_1Requisition.html">core::Requisition</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a5c1423c3261dbaa0fc837d824db0dc99">requisition</a>, void(*splitHeightFun)(int, int *, int *))</td></tr>
<tr class="separator:a9224eff0982592eb440f7c70facd710e inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aacf5ecb4096a432ce2cd08353a1be1ac inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#aacf5ecb4096a432ce2cd08353a1be1ac">correctExtremesByOOF</a> (<a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a1a08dcfa5c228e2f31de9cea56cccaf1">extremes</a>)</td></tr>
<tr class="separator:aacf5ecb4096a432ce2cd08353a1be1ac inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50f6746fb3619731a5d9e4a19c3279f0 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a50f6746fb3619731a5d9e4a19c3279f0">sizeAllocateStart</a> (<a class="el" href="structdw_1_1core_1_1Allocation.html">core::Allocation</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a2212fc4b9b2b0e26c7345f1b4adb7d28">allocation</a>)</td></tr>
<tr class="separator:a50f6746fb3619731a5d9e4a19c3279f0 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abd0bb25e655439118b02793a33bf8690 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#abd0bb25e655439118b02793a33bf8690">sizeAllocateEnd</a> ()</td></tr>
<tr class="separator:abd0bb25e655439118b02793a33bf8690 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a248f2c2293fb041cbb529160bcbf4967 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a248f2c2293fb041cbb529160bcbf4967">containerSizeChangedForChildrenOOF</a> ()</td></tr>
<tr class="separator:a248f2c2293fb041cbb529160bcbf4967 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af00de9105bb5ba2a0f88c3c8daba20a0 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#af00de9105bb5ba2a0f88c3c8daba20a0">drawOOF</a> (<a class="el" href="classdw_1_1core_1_1View.html">core::View</a> *view, <a class="el" href="classdw_1_1core_1_1Rectangle.html">core::Rectangle</a> *area, <a class="el" href="classdw_1_1core_1_1DrawingContext.html">core::DrawingContext</a> *context)</td></tr>
<tr class="separator:af00de9105bb5ba2a0f88c3c8daba20a0 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6483f089749d7b31b3fe238d8087e3ac inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a6483f089749d7b31b3fe238d8087e3ac">getWidgetAtPoint</a> (int x, int y, <a class="el" href="classdw_1_1core_1_1GettingWidgetAtPointContext.html">core::GettingWidgetAtPointContext</a> *context)</td></tr>
<tr class="separator:a6483f089749d7b31b3fe238d8087e3ac inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a26b40025daf7ae24d748b967d74a6f14 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a26b40025daf7ae24d748b967d74a6f14">getWidgetOOFAtPoint</a> (int x, int y, <a class="el" href="classdw_1_1core_1_1GettingWidgetAtPointContext.html">core::GettingWidgetAtPointContext</a> *context)</td></tr>
<tr class="separator:a26b40025daf7ae24d748b967d74a6f14 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a01bb96a958280f2139df01ce02f01fc7 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a01bb96a958280f2139df01ce02f01fc7">notifySetAsTopLevel</a> ()</td></tr>
<tr class="memdesc:a01bb96a958280f2139df01ce02f01fc7 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="mdescLeft"> </td><td class="mdescRight">This method is called after a widget has been set as the top of a widget tree. <a href="classdw_1_1Table.html#a01bb96a958280f2139df01ce02f01fc7">More...</a><br /></td></tr>
<tr class="separator:a01bb96a958280f2139df01ce02f01fc7 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a9399d2b5e9925a356230f374049018 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a9a9399d2b5e9925a356230f374049018">notifySetParent</a> ()</td></tr>
<tr class="memdesc:a9a9399d2b5e9925a356230f374049018 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="mdescLeft"> </td><td class="mdescRight">This method is called after a widget has been added to a parent. <a href="classdw_1_1Table.html#a9a9399d2b5e9925a356230f374049018">More...</a><br /></td></tr>
<tr class="separator:a9a9399d2b5e9925a356230f374049018 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a929e10ef010bbd6bbdab03888e376984 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a929e10ef010bbd6bbdab03888e376984">removeChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *child)</td></tr>
<tr class="separator:a929e10ef010bbd6bbdab03888e376984 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a83883de46b609f8f978f8a61ebdef39b inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a83883de46b609f8f978f8a61ebdef39b">adjustExtraSpaceWhenCorrectingRequisitionByOOF</a> ()</td></tr>
<tr class="separator:a83883de46b609f8f978f8a61ebdef39b inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classdw_1_1core_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classdw_1_1core_1_1Widget')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classdw_1_1core_1_1Widget.html">dw::core::Widget</a></td></tr>
<tr class="memitem:a095e0153ccfb0f3ff936fba33d27716e inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a095e0153ccfb0f3ff936fba33d27716e">getHeight</a> ()</td></tr>
<tr class="separator:a095e0153ccfb0f3ff936fba33d27716e inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afc4789174e7bbcdf445b62995e0403e8 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#afc4789174e7bbcdf445b62995e0403e8">getContentWidth</a> ()</td></tr>
<tr class="separator:afc4789174e7bbcdf445b62995e0403e8 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b29a499b5b0db61062fadc1f6039877 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a9b29a499b5b0db61062fadc1f6039877">getContentHeight</a> ()</td></tr>
<tr class="separator:a9b29a499b5b0db61062fadc1f6039877 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a22e02257127973d9d701bb6ae9aba692 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1StackingContextMgr.html">StackingContextMgr</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a22e02257127973d9d701bb6ae9aba692">getNextStackingContextMgr</a> ()</td></tr>
<tr class="separator:a22e02257127973d9d701bb6ae9aba692 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acfc863870a22e3f3e82048d01a8d891d inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#acfc863870a22e3f3e82048d01a8d891d">printFlag</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cb">Flags</a> f)</td></tr>
<tr class="separator:acfc863870a22e3f3e82048d01a8d891d inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8ee6e9cf388a37ec28ee159c3b731f2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ae8ee6e9cf388a37ec28ee159c3b731f2">setFlags</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cb">Flags</a> f)</td></tr>
<tr class="separator:ae8ee6e9cf388a37ec28ee159c3b731f2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abff6900b333d79e08e2c9699c80a70fd inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#abff6900b333d79e08e2c9699c80a70fd">unsetFlags</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cb">Flags</a> f)</td></tr>
<tr class="separator:abff6900b333d79e08e2c9699c80a70fd inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad29af9bf2a21855596fbc26214aed57b inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ad29af9bf2a21855596fbc26214aed57b">queueDraw</a> ()</td></tr>
<tr class="separator:ad29af9bf2a21855596fbc26214aed57b inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a68e995505b0885143024e3254253f2d8 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a68e995505b0885143024e3254253f2d8">queueDrawArea</a> (int x, int y, int width, int height)</td></tr>
<tr class="separator:a68e995505b0885143024e3254253f2d8 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae6471fad0c622453aae0eb6f3712ba68 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ae6471fad0c622453aae0eb6f3712ba68">queueResize</a> (int ref, bool <a class="el" href="classdw_1_1core_1_1Widget.html#a79a7047c906d793d77412286fbfc4ea2">extremesChanged</a>)</td></tr>
<tr class="separator:ae6471fad0c622453aae0eb6f3712ba68 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac3764607155e58daee03db5cbb76d8e2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ac3764607155e58daee03db5cbb76d8e2">sizeRequestImpl</a> (<a class="el" href="structdw_1_1core_1_1Requisition.html">Requisition</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a5c1423c3261dbaa0fc837d824db0dc99">requisition</a>, int numPos, <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> **references, int *x, int *y)</td></tr>
<tr class="memdesc:ac3764607155e58daee03db5cbb76d8e2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>. <a href="classdw_1_1Table.html#ac3764607155e58daee03db5cbb76d8e2">More...</a><br /></td></tr>
<tr class="separator:ac3764607155e58daee03db5cbb76d8e2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a984eb786b8d9c9bf63cfd24bdf465e6f inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a984eb786b8d9c9bf63cfd24bdf465e6f">getExtremesImpl</a> (<a class="el" href="structdw_1_1core_1_1Extremes.html">Extremes</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a1a08dcfa5c228e2f31de9cea56cccaf1">extremes</a>, int numPos, <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> **references, int *x, int *y)</td></tr>
<tr class="memdesc:a984eb786b8d9c9bf63cfd24bdf465e6f inherit pro_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>. <a href="classdw_1_1Table.html#a984eb786b8d9c9bf63cfd24bdf465e6f">More...</a><br /></td></tr>
<tr class="separator:a984eb786b8d9c9bf63cfd24bdf465e6f inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a87e7d6f31595a2628cab9253c241191d inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a87e7d6f31595a2628cab9253c241191d">calcExtraSpaceImpl</a> (int numPos, <a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> **references, int *x, int *y)</td></tr>
<tr class="memdesc:a87e7d6f31595a2628cab9253c241191d inherit pro_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The actual implementation for calculating <a class="el" href="classdw_1_1core_1_1Widget.html#a608917a82e6f0ca6c8c4b404159cce23" title="Space around the margin box. Allocation is extraSpace + margin + border + padding + contents...">dw::core::Widget::extraSpace</a>. <a href="classdw_1_1Table.html#a87e7d6f31595a2628cab9253c241191d">More...</a><br /></td></tr>
<tr class="separator:a87e7d6f31595a2628cab9253c241191d inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8b5d6fd4fe3868a154c638e66ad75a2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ac8b5d6fd4fe3868a154c638e66ad75a2">markSizeChange</a> (int ref)</td></tr>
<tr class="memdesc:ac8b5d6fd4fe3868a154c638e66ad75a2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>. <a href="classdw_1_1Table.html#ac8b5d6fd4fe3868a154c638e66ad75a2">More...</a><br /></td></tr>
<tr class="separator:ac8b5d6fd4fe3868a154c638e66ad75a2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a30cb906a0382c1034bb398e7ea30a4a3 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a30cb906a0382c1034bb398e7ea30a4a3">markExtremesChange</a> (int ref)</td></tr>
<tr class="memdesc:a30cb906a0382c1034bb398e7ea30a4a3 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>. <a href="classdw_1_1Table.html#a30cb906a0382c1034bb398e7ea30a4a3">More...</a><br /></td></tr>
<tr class="separator:a30cb906a0382c1034bb398e7ea30a4a3 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a32de61d3d5fdd66f953f7613f3f9c514 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a32de61d3d5fdd66f953f7613f3f9c514">getAvailWidthOfChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *child, bool forceValue)</td></tr>
<tr class="separator:a32de61d3d5fdd66f953f7613f3f9c514 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6a1f938ff0aae3eb16b6c535a3266815 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a6a1f938ff0aae3eb16b6c535a3266815">getAvailHeightOfChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *child, bool forceValue)</td></tr>
<tr class="separator:a6a1f938ff0aae3eb16b6c535a3266815 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70fc538e0cf4acdcb8e7b88ce1d405d2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a70fc538e0cf4acdcb8e7b88ce1d405d2">correctRequisitionOfChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *child, <a class="el" href="structdw_1_1core_1_1Requisition.html">Requisition</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a5c1423c3261dbaa0fc837d824db0dc99">requisition</a>, void(*splitHeightFun)(int, int *, int *), bool allowDecreaseWidth, bool allowDecreaseHeight)</td></tr>
<tr class="separator:a70fc538e0cf4acdcb8e7b88ce1d405d2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb2f49c44369a17f8037ae9a4586c6de inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#aeb2f49c44369a17f8037ae9a4586c6de">correctReqWidthOfChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *child, <a class="el" href="structdw_1_1core_1_1Requisition.html">Requisition</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a5c1423c3261dbaa0fc837d824db0dc99">requisition</a>, bool allowDecreaseWidth)</td></tr>
<tr class="separator:aeb2f49c44369a17f8037ae9a4586c6de inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac730b4522f2f0ca256a3aa90dbf3d6e6 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ac730b4522f2f0ca256a3aa90dbf3d6e6">correctReqHeightOfChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *child, <a class="el" href="structdw_1_1core_1_1Requisition.html">Requisition</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a5c1423c3261dbaa0fc837d824db0dc99">requisition</a>, void(*splitHeightFun)(int, int *, int *), bool allowDecreaseHeight)</td></tr>
<tr class="separator:ac730b4522f2f0ca256a3aa90dbf3d6e6 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a79a9be8c5f31ee5936ae4916112be046 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a79a9be8c5f31ee5936ae4916112be046">correctExtremesOfChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *child, <a class="el" href="structdw_1_1core_1_1Extremes.html">Extremes</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a1a08dcfa5c228e2f31de9cea56cccaf1">extremes</a>, bool useAdjustmentWidth)</td></tr>
<tr class="separator:a79a9be8c5f31ee5936ae4916112be046 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2249630dd2b84a7670600990bd8311b3 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a2249630dd2b84a7670600990bd8311b3">affectedByContainerSizeChange</a> ()</td></tr>
<tr class="separator:a2249630dd2b84a7670600990bd8311b3 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a33f2e8c29b80074a6bf366c4d2633349 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a33f2e8c29b80074a6bf366c4d2633349">affectsSizeChangeContainerChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *child)</td></tr>
<tr class="separator:a33f2e8c29b80074a6bf366c4d2633349 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac73f4795954e264d7678fc0968f4cbfb inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ac73f4795954e264d7678fc0968f4cbfb">usesAvailHeight</a> ()</td></tr>
<tr class="memdesc:ac73f4795954e264d7678fc0968f4cbfb inherit pro_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Must be implemengted by a method returning true, when <a class="el" href="classdw_1_1core_1_1Widget.html#ab98b467cc0d194a6a65fe6f8fe9716b7">getAvailHeight()</a> is called. <a href="classdw_1_1Table.html#ac73f4795954e264d7678fc0968f4cbfb">More...</a><br /></td></tr>
<tr class="separator:ac73f4795954e264d7678fc0968f4cbfb inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8f80526115c77c5278dd2a55908ddafc inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a8f80526115c77c5278dd2a55908ddafc">buttonPressImpl</a> (<a class="el" href="classdw_1_1core_1_1EventButton.html">EventButton</a> *event)</td></tr>
<tr class="separator:a8f80526115c77c5278dd2a55908ddafc inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae678879143710922e300ef84469db06c inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#ae678879143710922e300ef84469db06c">buttonReleaseImpl</a> (<a class="el" href="classdw_1_1core_1_1EventButton.html">EventButton</a> *event)</td></tr>
<tr class="separator:ae678879143710922e300ef84469db06c inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a503758ba435032d5099012677b547c18 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a503758ba435032d5099012677b547c18">motionNotifyImpl</a> (<a class="el" href="classdw_1_1core_1_1EventMotion.html">EventMotion</a> *event)</td></tr>
<tr class="separator:a503758ba435032d5099012677b547c18 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6047114d9f01dd62c722f97fa24d6307 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a6047114d9f01dd62c722f97fa24d6307">enterNotifyImpl</a> (<a class="el" href="classdw_1_1core_1_1EventCrossing.html">EventCrossing</a> *event)</td></tr>
<tr class="separator:a6047114d9f01dd62c722f97fa24d6307 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e1921ae635435b9cd1a55da7b0c0e09 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a0e1921ae635435b9cd1a55da7b0c0e09">leaveNotifyImpl</a> (<a class="el" href="classdw_1_1core_1_1EventCrossing.html">EventCrossing</a> *event)</td></tr>
<tr class="separator:a0e1921ae635435b9cd1a55da7b0c0e09 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a70dfa18448d79453d468b4946ac97e35 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a70dfa18448d79453d468b4946ac97e35">addAnchor</a> (const char *name)</td></tr>
<tr class="separator:a70dfa18448d79453d468b4946ac97e35 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af6e27ab130e707e8bcf5ac1462dcd2fa inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#af6e27ab130e707e8bcf5ac1462dcd2fa">addAnchor</a> (const char *name, int y)</td></tr>
<tr class="separator:af6e27ab130e707e8bcf5ac1462dcd2fa inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7da6906a643cd93d893dbfa902f17065 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a7da6906a643cd93d893dbfa902f17065">changeAnchor</a> (char *name, int y)</td></tr>
<tr class="separator:a7da6906a643cd93d893dbfa902f17065 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc3f28fc5dd2cdb76118c2d39fe7b5f5 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#adc3f28fc5dd2cdb76118c2d39fe7b5f5">removeAnchor</a> (char *name)</td></tr>
<tr class="separator:adc3f28fc5dd2cdb76118c2d39fe7b5f5 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a761535b4f71744668c78a81914002bd1 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a761535b4f71744668c78a81914002bd1">setCursor</a> (<a class="el" href="namespacedw_1_1core_1_1style.html#a907541d0ef9d9f5e0ac4a47fc4a5e3a1">style::Cursor</a> cursor)</td></tr>
<tr class="separator:a761535b4f71744668c78a81914002bd1 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6c93fc0c85a18bb555643c9e2218c3bf inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a6c93fc0c85a18bb555643c9e2218c3bf">selectionHandleEvent</a> (<a class="el" href="classdw_1_1core_1_1SelectionState.html#a70da27736e4e5927125ec1f7c4a0da92">SelectionState::EventType</a> eventType, <a class="el" href="classdw_1_1core_1_1Iterator.html">Iterator</a> *it, int charPos, int linkNo, <a class="el" href="classdw_1_1core_1_1MousePositionEvent.html">MousePositionEvent</a> *event)</td></tr>
<tr class="separator:a6c93fc0c85a18bb555643c9e2218c3bf inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classlout_1_1identity_1_1IdentifiableObject"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classlout_1_1identity_1_1IdentifiableObject')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html">lout::identity::IdentifiableObject</a></td></tr>
<tr class="memitem:aeb1a57d39e3e06c92433e81457661185 inherit pro_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html#aeb1a57d39e3e06c92433e81457661185">registerName</a> (const char *className, int *<a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html#ab501458f58f97a1c14f335270a1d25d1">classId</a>)</td></tr>
<tr class="memdesc:aeb1a57d39e3e06c92433e81457661185 inherit pro_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="mdescLeft"> </td><td class="mdescRight">This method must be called in the constructor for the sub class. See class comment for details. <a href="classdw_1_1Table.html#aeb1a57d39e3e06c92433e81457661185">More...</a><br /></td></tr>
<tr class="separator:aeb1a57d39e3e06c92433e81457661185 inherit pro_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pri-types"></a>
Private Types</h2></td></tr>
<tr class="memitem:a6e08d13f149e73c6466f76360001580d"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> { <br />
  <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580daddcfedbb6fee7cb0580ee2f5cf8d0248">MIN</a>,
<a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580da330f9b65760f20477af219e903a5e36b">MIN_INTR</a>,
<a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580da99e9376d3ad328ffccd6001dbc1fb01d">MIN_MIN</a>,
<a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580da5953080f92b9b131c1bb4cf7d3230b88">MAX_MIN</a>,
<br />
  <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580dae804e9aaed3be01f18a9abbb39e891c3">MAX</a>,
<a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580daab0b10495d4ee0f4a4fdc17bd024898d">MAX_INTR</a>,
<a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580da1e43181db3c0eb29bbcdecc4cc55106b">DATA</a>
<br />
}</td></tr>
<tr class="separator:a6e08d13f149e73c6466f76360001580d"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr class="memitem:af7c99497b2cb98c33b109e1b0bf07c3c"><td class="memItemLeft" align="right" valign="top">const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#af7c99497b2cb98c33b109e1b0bf07c3c">getExtrModName</a> (<a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> mod)</td></tr>
<tr class="separator:af7c99497b2cb98c33b109e1b0bf07c3c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1d8e5bd08e46d3b1e0d66a9753147799"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a1d8e5bd08e46d3b1e0d66a9753147799">getExtreme</a> (<a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a1a08dcfa5c228e2f31de9cea56cccaf1">extremes</a>, <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> mod)</td></tr>
<tr class="separator:a1d8e5bd08e46d3b1e0d66a9753147799"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acf84d43e9fd39ef0380e3930ef800735"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#acf84d43e9fd39ef0380e3930ef800735">setExtreme</a> (<a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> *<a class="el" href="classdw_1_1core_1_1Widget.html#a1a08dcfa5c228e2f31de9cea56cccaf1">extremes</a>, <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> mod, int value)</td></tr>
<tr class="separator:acf84d43e9fd39ef0380e3930ef800735"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3832b3bd848f8b3030148bf61773c83e"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a3832b3bd848f8b3030148bf61773c83e">getColExtreme</a> (int col, <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> mod, void *data)</td></tr>
<tr class="separator:a3832b3bd848f8b3030148bf61773c83e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac629a5e56d2e895408d4482e82705d3a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ac629a5e56d2e895408d4482e82705d3a">setColExtreme</a> (int col, <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> mod, void *data, int value)</td></tr>
<tr class="separator:ac629a5e56d2e895408d4482e82705d3a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae945c30526ccd77ccd60976c7f0ad6b9"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ae945c30526ccd77ccd60976c7f0ad6b9">childDefined</a> (int n)</td></tr>
<tr class="separator:ae945c30526ccd77ccd60976c7f0ad6b9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e5ff9565b8ae6a35f6aeaf874848353"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a2e5ff9565b8ae6a35f6aeaf874848353">calcAvailWidthForDescendant</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *child)</td></tr>
<tr class="separator:a2e5ff9565b8ae6a35f6aeaf874848353"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad54ad4b8f0c5a6615bea09dcfeebdfd5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ad54ad4b8f0c5a6615bea09dcfeebdfd5">reallocChildren</a> (int newNumCols, int newNumRows)</td></tr>
<tr class="separator:ad54ad4b8f0c5a6615bea09dcfeebdfd5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a40283100384e20cac9d2c0ce4150d4fe"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a40283100384e20cac9d2c0ce4150d4fe">calcCellSizes</a> (bool calcHeights)</td></tr>
<tr class="separator:a40283100384e20cac9d2c0ce4150d4fe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a42587c01297075332dd57f345d4b4ccd"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a42587c01297075332dd57f345d4b4ccd">forceCalcCellSizes</a> (bool calcHeights)</td></tr>
<tr class="separator:a42587c01297075332dd57f345d4b4ccd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaed8ed3dc646d39742a56aa6b51379a1"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#aaed8ed3dc646d39742a56aa6b51379a1">actuallyCalcCellSizes</a> (bool calcHeights)</td></tr>
<tr class="separator:aaed8ed3dc646d39742a56aa6b51379a1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a344fd019c228a7fa42464d4ee5ab4331"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a344fd019c228a7fa42464d4ee5ab4331">apportionRowSpan</a> ()</td></tr>
<tr class="separator:a344fd019c228a7fa42464d4ee5ab4331"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3fa26238318cd982fe7ea2ea5971d8aa"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a3fa26238318cd982fe7ea2ea5971d8aa">forceCalcColumnExtremes</a> ()</td></tr>
<tr class="memdesc:a3fa26238318cd982fe7ea2ea5971d8aa"><td class="mdescLeft"> </td><td class="mdescRight">Fills <a class="el" href="classdw_1_1Table.html#a9e7fe7db5f7853aa6c374190af778b32" title="The extremes of all columns. ">dw::Table::colExtremes</a> in all cases. <a href="classdw_1_1Table.html#a3fa26238318cd982fe7ea2ea5971d8aa">More...</a><br /></td></tr>
<tr class="separator:a3fa26238318cd982fe7ea2ea5971d8aa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3eecc3a8b39c5e80428d137c1ffc64cc"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a3eecc3a8b39c5e80428d137c1ffc64cc">calcExtremesSpanMultiCols</a> (int col, int cs, <a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> *cellExtremes, <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> minExtrMod, <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> maxExtrMod, void *extrData)</td></tr>
<tr class="separator:a3eecc3a8b39c5e80428d137c1ffc64cc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a343d1d70a35b08509bff5533e333167d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a343d1d70a35b08509bff5533e333167d">calcAdjustmentWidthSpanMultiCols</a> (int col, int cs, <a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> *cellExtremes)</td></tr>
<tr class="separator:a343d1d70a35b08509bff5533e333167d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adf78bcf69a3313fd3afc947b1c5d29c9"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#adf78bcf69a3313fd3afc947b1c5d29c9">apportion2</a> (int totalWidth, int firstCol, int lastCol, <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> minExtrMod, <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> maxExtrMod, void *extrData, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a>< int > *dest, int destOffset)</td></tr>
<tr class="memdesc:adf78bcf69a3313fd3afc947b1c5d29c9"><td class="mdescLeft"> </td><td class="mdescRight">Actual apportionment function. <a href="classdw_1_1Table.html#adf78bcf69a3313fd3afc947b1c5d29c9">More...</a><br /></td></tr>
<tr class="separator:adf78bcf69a3313fd3afc947b1c5d29c9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a21fc703d867b76abe706d467376443f0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a21fc703d867b76abe706d467376443f0">setCumHeight</a> (int row, int value)</td></tr>
<tr class="separator:a21fc703d867b76abe706d467376443f0"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pri-attribs"></a>
Private Attributes</h2></td></tr>
<tr class="memitem:ab8faad96d6e4bf0ab4c698e38d963b23"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ab8faad96d6e4bf0ab4c698e38d963b23">limitTextWidth</a></td></tr>
<tr class="separator:ab8faad96d6e4bf0ab4c698e38d963b23"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae471b755388e739e3f1fb766606d8bdc"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ae471b755388e739e3f1fb766606d8bdc">rowClosed</a></td></tr>
<tr class="separator:ae471b755388e739e3f1fb766606d8bdc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9373e5cc88111b085ece895e6db06da7"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a9373e5cc88111b085ece895e6db06da7">numRows</a></td></tr>
<tr class="separator:a9373e5cc88111b085ece895e6db06da7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a607ebf37f96c0b6469195776581215b3"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a607ebf37f96c0b6469195776581215b3">numCols</a></td></tr>
<tr class="separator:a607ebf37f96c0b6469195776581215b3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a72fee2a79ec5b87e27bc5b55905ddbda"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a72fee2a79ec5b87e27bc5b55905ddbda">curRow</a></td></tr>
<tr class="separator:a72fee2a79ec5b87e27bc5b55905ddbda"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa35b947f88fd454430ebe9cd5ecc9645"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#aa35b947f88fd454430ebe9cd5ecc9645">curCol</a></td></tr>
<tr class="separator:aa35b947f88fd454430ebe9cd5ecc9645"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa71bc9f95a4e283f039ffe3801fb488c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><br class="typebreak" />
< <a class="el" href="structdw_1_1Table_1_1Child.html">Child</a> * > * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#aa71bc9f95a4e283f039ffe3801fb488c">children</a></td></tr>
<tr class="separator:aa71bc9f95a4e283f039ffe3801fb488c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6196579a76b5d384f62d647abb933e3a"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a6196579a76b5d384f62d647abb933e3a">redrawX</a></td></tr>
<tr class="separator:a6196579a76b5d384f62d647abb933e3a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:affd67258beff190bb0ae5d78bd2d2a4e"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#affd67258beff190bb0ae5d78bd2d2a4e">redrawY</a></td></tr>
<tr class="separator:affd67258beff190bb0ae5d78bd2d2a4e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e7fe7db5f7853aa6c374190af778b32"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><br class="typebreak" />
< <a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> > * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a9e7fe7db5f7853aa6c374190af778b32">colExtremes</a></td></tr>
<tr class="memdesc:a9e7fe7db5f7853aa6c374190af778b32"><td class="mdescLeft"> </td><td class="mdescRight">The extremes of all columns. <a href="classdw_1_1Table.html#a9e7fe7db5f7853aa6c374190af778b32">More...</a><br /></td></tr>
<tr class="separator:a9e7fe7db5f7853aa6c374190af778b32"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af581fc87fcb0f8eb5c377ed5bf922ba2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a>< bool > * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#af581fc87fcb0f8eb5c377ed5bf922ba2">colWidthSpecified</a></td></tr>
<tr class="memdesc:af581fc87fcb0f8eb5c377ed5bf922ba2"><td class="mdescLeft"> </td><td class="mdescRight">Wether the column itself (in the future?) or at least one cell in this column or spanning over this column has CSS 'width' specified. <a href="classdw_1_1Table.html#af581fc87fcb0f8eb5c377ed5bf922ba2">More...</a><br /></td></tr>
<tr class="separator:af581fc87fcb0f8eb5c377ed5bf922ba2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af0cf2c317c9b9f62a16fe68729e7fdc5"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#af0cf2c317c9b9f62a16fe68729e7fdc5">numColWidthSpecified</a></td></tr>
<tr class="separator:af0cf2c317c9b9f62a16fe68729e7fdc5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad13dbff5ac66454cecfc3b7d2cbc7ee5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a>< bool > * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ad13dbff5ac66454cecfc3b7d2cbc7ee5">colWidthPercentage</a></td></tr>
<tr class="memdesc:ad13dbff5ac66454cecfc3b7d2cbc7ee5"><td class="mdescLeft"> </td><td class="mdescRight">Wether the column itself (in the future?) or at least one cell in this column or spanning over this column has CSS 'width' specified <em>as percentage value</em>. <a href="classdw_1_1Table.html#ad13dbff5ac66454cecfc3b7d2cbc7ee5">More...</a><br /></td></tr>
<tr class="separator:ad13dbff5ac66454cecfc3b7d2cbc7ee5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abf3950d292d248cb6d0835347b02405b"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#abf3950d292d248cb6d0835347b02405b">numColWidthPercentage</a></td></tr>
<tr class="separator:abf3950d292d248cb6d0835347b02405b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a438af6d107ce8a0b8709cab72a4df38c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a>< int > * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a438af6d107ce8a0b8709cab72a4df38c">colWidths</a></td></tr>
<tr class="memdesc:a438af6d107ce8a0b8709cab72a4df38c"><td class="mdescLeft"> </td><td class="mdescRight">The widths of all columns. <a href="classdw_1_1Table.html#a438af6d107ce8a0b8709cab72a4df38c">More...</a><br /></td></tr>
<tr class="separator:a438af6d107ce8a0b8709cab72a4df38c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac9d685829c34a1038005b533ef1da00d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a>< int > * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ac9d685829c34a1038005b533ef1da00d">cumHeight</a></td></tr>
<tr class="separator:ac9d685829c34a1038005b533ef1da00d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9f55a68caaa52e19d75ecc01814d3580"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a>< int > * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a9f55a68caaa52e19d75ecc01814d3580">rowSpanCells</a></td></tr>
<tr class="separator:a9f55a68caaa52e19d75ecc01814d3580"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3cffbdc94d68e622c122677fd76856cd"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a>< int > * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a3cffbdc94d68e622c122677fd76856cd">baseline</a></td></tr>
<tr class="separator:a3cffbdc94d68e622c122677fd76856cd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2b8e380ca415bb751ce96232409f9ef9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><br class="typebreak" />
< <a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> * > * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#a2b8e380ca415bb751ce96232409f9ef9">rowStyle</a></td></tr>
<tr class="separator:a2b8e380ca415bb751ce96232409f9ef9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab78d08c9a462589c442f139468b41ed7"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ab78d08c9a462589c442f139468b41ed7">colWidthsUpToDateWidthColExtremes</a></td></tr>
<tr class="separator:ab78d08c9a462589c442f139468b41ed7"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pri-static-attribs"></a>
Static Private Attributes</h2></td></tr>
<tr class="memitem:af7a2279449b6964b3c27cef827ad47b0"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#af7a2279449b6964b3c27cef827ad47b0">adjustTableMinWidth</a> = true</td></tr>
<tr class="separator:af7a2279449b6964b3c27cef827ad47b0"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="friends"></a>
Friends</h2></td></tr>
<tr class="memitem:ab0165532e287d023758cc64c24e40fb7"><td class="memItemLeft" align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Table.html#ab0165532e287d023758cc64c24e40fb7">TableIterator</a></td></tr>
<tr class="separator:ab0165532e287d023758cc64c24e40fb7"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_types_classdw_1_1oof_1_1OOFAwareWidget"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classdw_1_1oof_1_1OOFAwareWidget')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html">dw::oof::OOFAwareWidget</a></td></tr>
<tr class="memitem:a33469bebe37c7c14dd5b99163d332f9e inherit pub_types_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom">{ <br />
  <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a33469bebe37c7c14dd5b99163d332f9ea0d2ed3bf6476776fc85a01831fc786c2">SL_START</a>,
<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a33469bebe37c7c14dd5b99163d332f9ea17bbe020ddd42d6af87aee1ec416d708">SL_BACKGROUND</a>,
<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a33469bebe37c7c14dd5b99163d332f9ea5e713b90269b122dde4ea2d3b3a3f75b">SL_SC_BOTTOM</a>,
<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a33469bebe37c7c14dd5b99163d332f9ea3e1e89febee56779ba54ba6f6c2e8fbe">SL_IN_FLOW</a>,
<br />
  <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a33469bebe37c7c14dd5b99163d332f9eafb025c592c0382ee2dd49bfea7743639">SL_OOF_REF</a>,
<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a33469bebe37c7c14dd5b99163d332f9eab2c1753664bc12db6e7778fa3318581a">SL_OOF_CONT</a>,
<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a33469bebe37c7c14dd5b99163d332f9ea8a297e996fc7e2c4028ba82fedddf051">SL_SC_TOP</a>,
<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a33469bebe37c7c14dd5b99163d332f9ea4c4778414181b6059071e8054fde1b1a">SL_END</a>
<br />
}</td></tr>
<tr class="separator:a33469bebe37c7c14dd5b99163d332f9e inherit pub_types_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_attribs_classdw_1_1core_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('pub_attribs_classdw_1_1core_1_1Widget')"><img src="closed.png" alt="-"/> Public Attributes inherited from <a class="el" href="classdw_1_1core_1_1Widget.html">dw::core::Widget</a></td></tr>
<tr class="memitem:a3a8324c1cc6859bd9bab133b44096f1b inherit pub_attribs_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a3a8324c1cc6859bd9bab133b44096f1b">parentRef</a></td></tr>
<tr class="memdesc:a3a8324c1cc6859bd9bab133b44096f1b inherit pub_attribs_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">This value is defined by the parent widget, and used for incremential resizing. <a href="classdw_1_1Table.html#a3a8324c1cc6859bd9bab133b44096f1b">More...</a><br /></td></tr>
<tr class="separator:a3a8324c1cc6859bd9bab133b44096f1b inherit pub_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_types_classdw_1_1oof_1_1OOFAwareWidget"><td colspan="2" onclick="javascript:toggleInherit('pro_types_classdw_1_1oof_1_1OOFAwareWidget')"><img src="closed.png" alt="-"/> Protected Types inherited from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html">dw::oof::OOFAwareWidget</a></td></tr>
<tr class="memitem:a602541b7d777e92855fd93bee5e9a638 inherit pro_types_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom">{ <br />
  <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a602541b7d777e92855fd93bee5e9a638a6d9a651354339a199c5a985ffa065976">OOFM_FLOATS</a>,
<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a602541b7d777e92855fd93bee5e9a638a2bb410d12438d618871e20b5a72054e7">OOFM_ABSOLUTE</a>,
<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a602541b7d777e92855fd93bee5e9a638a5d04ad4d15e1a41d5815cc37629156b5">OOFM_RELATIVE</a>,
<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a602541b7d777e92855fd93bee5e9a638a73c846e111d19d004524f950b4813782">OOFM_FIXED</a>,
<br />
  <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a602541b7d777e92855fd93bee5e9a638a832ad919a5912833a12254c9c4b88a4d">NUM_OOFM</a>
<br />
}</td></tr>
<tr class="separator:a602541b7d777e92855fd93bee5e9a638 inherit pro_types_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba795cad854cc67abb83a9141dd98e11 inherit pro_types_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom">{ <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#aba795cad854cc67abb83a9141dd98e11ae2949023b8357225979770915165df0e">PARENT_REF_OOFM_BITS</a> = 3,
<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#aba795cad854cc67abb83a9141dd98e11a616d90573974615aa1d83125cf0bb54a">PARENT_REF_OOFM_MASK</a> = (1 << PARENT_REF_OOFM_BITS) - 1
}</td></tr>
<tr class="separator:aba795cad854cc67abb83a9141dd98e11 inherit pro_types_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_types_classdw_1_1core_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('pro_types_classdw_1_1core_1_1Widget')"><img src="closed.png" alt="-"/> Protected Types inherited from <a class="el" href="classdw_1_1core_1_1Widget.html">dw::core::Widget</a></td></tr>
<tr class="memitem:a32b232b3a6f815cabbf9bf9f736258cb inherit pro_types_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cb">Flags</a> { <br />
  <a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cba091e39c3bc818a420fd19c637ca78847">RESIZE_QUEUED</a> = 1 << 0,
<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cba90cb722f5ea44d3d5df3785d715e251c">EXTREMES_QUEUED</a> = 1 << 1,
<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cbaf83c9031fd220ccdebced9bdb37ebe35">NEEDS_RESIZE</a> = 1 << 2,
<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cba1a41409afb7bc3ad8f4a67267848f3b4">NEEDS_ALLOCATE</a> = 1 << 3,
<br />
  <a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cba25e03d174216386eba200eece2d12cd0">ALLOCATE_QUEUED</a> = 1 << 4,
<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cbaf4fc04158929ec9a0d8b8eea8e034073">EXTREMES_CHANGED</a> = 1 << 5,
<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cbadff5490d79fec016501bb79593c9ef5f">WAS_ALLOCATED</a> = 1 << 6
<br />
}</td></tr>
<tr class="separator:a32b232b3a6f815cabbf9bf9f736258cb inherit pro_types_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td colspan="2" onclick="javascript:toggleInherit('pro_static_methods_classdw_1_1oof_1_1OOFAwareWidget')"><img src="closed.png" alt="-"/> Static Protected Member Functions inherited from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html">dw::oof::OOFAwareWidget</a></td></tr>
<tr class="memitem:ab20d70bb4dbb6a39df99e9e74d4b237d inherit pro_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static int </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#ab20d70bb4dbb6a39df99e9e74d4b237d">getOOFMIndex</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *widget)</td></tr>
<tr class="separator:ab20d70bb4dbb6a39df99e9e74d4b237d inherit pro_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a846ff9ee00a453ad3cf64a0cf6e105b7 inherit pro_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a846ff9ee00a453ad3cf64a0cf6e105b7">isOOFContainer</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> *widget, int oofmIndex)</td></tr>
<tr class="separator:a846ff9ee00a453ad3cf64a0cf6e105b7 inherit pro_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classdw_1_1oof_1_1OOFAwareWidget')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html">dw::oof::OOFAwareWidget</a></td></tr>
<tr class="memitem:a82207791442ed5765dcb7e21b2130270 inherit pro_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html">OOFAwareWidget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a82207791442ed5765dcb7e21b2130270">oofContainer</a> [<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a602541b7d777e92855fd93bee5e9a638a832ad919a5912833a12254c9c4b88a4d">NUM_OOFM</a>]</td></tr>
<tr class="separator:a82207791442ed5765dcb7e21b2130270 inherit pro_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2c786190fdba74e1233f0b7f913f1953 inherit pro_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1oof_1_1OutOfFlowMgr.html">OutOfFlowMgr</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a2c786190fdba74e1233f0b7f913f1953">outOfFlowMgr</a> [<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a602541b7d777e92855fd93bee5e9a638a832ad919a5912833a12254c9c4b88a4d">NUM_OOFM</a>]</td></tr>
<tr class="separator:a2c786190fdba74e1233f0b7f913f1953 inherit pro_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aba6dcc1acf7b4b0651bca63587360a33 inherit pro_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structdw_1_1core_1_1Requisition.html">core::Requisition</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#aba6dcc1acf7b4b0651bca63587360a33">requisitionWithoutOOF</a></td></tr>
<tr class="separator:aba6dcc1acf7b4b0651bca63587360a33 inherit pro_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classdw_1_1core_1_1Widget"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classdw_1_1core_1_1Widget')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classdw_1_1core_1_1Widget.html">dw::core::Widget</a></td></tr>
<tr class="memitem:a0c3d2edea7a634c11e95138859920069 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget_1_1WidgetImgRenderer.html">WidgetImgRenderer</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a0c3d2edea7a634c11e95138859920069">widgetImgRenderer</a></td></tr>
<tr class="separator:a0c3d2edea7a634c11e95138859920069 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2212fc4b9b2b0e26c7345f1b4adb7d28 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structdw_1_1core_1_1Allocation.html">Allocation</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a2212fc4b9b2b0e26c7345f1b4adb7d28">allocation</a></td></tr>
<tr class="memdesc:a2212fc4b9b2b0e26c7345f1b4adb7d28 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The current allocation: size and position, always relative to the canvas. <a href="classdw_1_1Table.html#a2212fc4b9b2b0e26c7345f1b4adb7d28">More...</a><br /></td></tr>
<tr class="separator:a2212fc4b9b2b0e26c7345f1b4adb7d28 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1af003d9825d4a5fefa5a2ca6b71454f inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Layout.html">Layout</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a1af003d9825d4a5fefa5a2ca6b71454f">layout</a></td></tr>
<tr class="separator:a1af003d9825d4a5fefa5a2ca6b71454f inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a608917a82e6f0ca6c8c4b404159cce23 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1style_1_1Box.html">style::Box</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a608917a82e6f0ca6c8c4b404159cce23">extraSpace</a></td></tr>
<tr class="memdesc:a608917a82e6f0ca6c8c4b404159cce23 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Space around the margin box. <a class="el" href="structdw_1_1core_1_1Allocation.html" title="Represents the allocation, i.e. actual position and size of a dw::core::Widget. ">Allocation</a> is extraSpace + margin + border + padding + contents. <a href="classdw_1_1Table.html#a608917a82e6f0ca6c8c4b404159cce23">More...</a><br /></td></tr>
<tr class="separator:a608917a82e6f0ca6c8c4b404159cce23 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5bb08f358ea6ae74922b9e664beaf69a inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1StackingContextMgr.html">StackingContextMgr</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a5bb08f358ea6ae74922b9e664beaf69a">stackingContextMgr</a></td></tr>
<tr class="memdesc:a5bb08f358ea6ae74922b9e664beaf69a inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">Set iff this widget constitutes a stacking context, as defined by CSS. <a href="classdw_1_1Table.html#a5bb08f358ea6ae74922b9e664beaf69a">More...</a><br /></td></tr>
<tr class="separator:a5bb08f358ea6ae74922b9e664beaf69a inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a56884cc526ad669c6478d84c856b0aa1 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html">Widget</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a56884cc526ad669c6478d84c856b0aa1">stackingContextWidget</a></td></tr>
<tr class="memdesc:a56884cc526ad669c6478d84c856b0aa1 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="mdescLeft"> </td><td class="mdescRight">The bottom-most ancestor (or this) for which stackingContextMgr is set. <a href="classdw_1_1Table.html#a56884cc526ad669c6478d84c856b0aa1">More...</a><br /></td></tr>
<tr class="separator:a56884cc526ad669c6478d84c856b0aa1 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_static_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td colspan="2" onclick="javascript:toggleInherit('pro_static_attribs_classdw_1_1oof_1_1OOFAwareWidget')"><img src="closed.png" alt="-"/> Static Protected Attributes inherited from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html">dw::oof::OOFAwareWidget</a></td></tr>
<tr class="memitem:aae0afb84a9f50f440612d7cc33011650 inherit pro_static_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#aae0afb84a9f50f440612d7cc33011650">OOFM_NAME</a> [<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a602541b7d777e92855fd93bee5e9a638a832ad919a5912833a12254c9c4b88a4d">NUM_OOFM</a>]</td></tr>
<tr class="separator:aae0afb84a9f50f440612d7cc33011650 inherit pro_static_attribs_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>A Widget for rendering tables. </p>
<div style="border: 2px solid #ff0000; margin-top: 0.5em;
margin-bottom: 0.5em; padding: 0.5em 1em;
background-color: #ffefe0"><b>Warning:</b> Some parts of this description are outdated since <a class="el" href="dw-grows.html">GROWS - Grand Redesign Of Widget Sizes</a>.</div><h3>Introduction</h3>
<p>The <a class="el" href="classdw_1_1Table.html" title="A Widget for rendering tables. ">dw::Table</a> widget is used to render HTML tables.</p>
<p>Each cell is itself a separate widget. Any widget may be used, however, in dillo, only instances of <a class="el" href="classdw_1_1Textblock.html" title="A Widget for rendering text blocks, i.e. paragraphs or sequences of paragraphs. ">dw::Textblock</a> and dw::TableCell are used as children of <a class="el" href="classdw_1_1Table.html" title="A Widget for rendering tables. ">dw::Table</a>.</p>
<h3>Sizes</h3>
<h4>General</h4>
<p>The following diagram shows the dependencies between the different functions, which are related to size calculation. Click on the boxes for more information.</p>
<div align="center">
<img src="dot_inline_dotgraph_14.png" alt="dot_inline_dotgraph_14.png" border="0" usemap="#dot_inline_dotgraph_14.map"/>
<map name="dot_inline_dotgraph_14.map" id="dot_inline_dotgraph_14.map"><area shape="rect" id="node1" href="classdw_1_1core_1_1Widget.html#ac3764607155e58daee03db5cbb76d8e2" title="\N" alt="" coords="20,117,140,167"/><area shape="rect" id="node6" href="classdw_1_1Table.html#a42587c01297075332dd57f345d4b4ccd" title="forceCalcCellSizes (calcHeights = true)" alt="" coords="13,229,267,279"/><area shape="rect" id="node2" href="classdw_1_1Table.html#aaf88b2bd82f86aa9c66ef30a730a3551" title="\N" alt="" coords="215,5,334,55"/><area shape="rect" id="node5" href="classdw_1_1Table.html#a40283100384e20cac9d2c0ce4150d4fe" title="calcCellSizes (calcHeights = true)" alt="" coords="164,117,385,167"/><area shape="rect" id="node3" href="classdw_1_1core_1_1Widget.html#aec23092b0cfe5624b9751a59671fe251" title="\N" alt="" coords="92,427,188,476"/><area shape="rect" id="node4" href="classdw_1_1core_1_1Widget.html#a984eb786b8d9c9bf63cfd24bdf465e6f" title="\N" alt="" coords="79,539,201,588"/><area shape="rect" id="node8" href="classdw_1_1Table.html#a3fa26238318cd982fe7ea2ea5971d8aa" title="\N" alt="" coords="51,651,229,700"/><area shape="rect" id="node7" href="classdw_1_1Table.html#aaed8ed3dc646d39742a56aa6b51379a1" title="actuallyCalcCellSizes (calcHeights = true)" alt="" coords="5,328,275,377"/></map>
</div>
<p>[A] In this case, the new calculation is <em>not</em> forced, but only done, when necessary.</p>
<p>[B] In this case, the new calculation is allways necessary, since [C] is the case.</p>
<p>[C] Whether this function is called, depends on NEEDS_RESIZE / RESIZE_QUEUED / EXTREMES_CHANGED / EXTREMES_QUEUED.</p>
<p><b>TODO:</b></p>
<ul>
<li>Are <code>*[cC]alcCellSizes (calcHeights = <em>false</em>)</code> not necessary anymore?</li>
<li>Calculating available sizes (<a class="el" href="classdw_1_1Table.html#a4f089dc3de0b64a7c6509da0e3460938">Table::getAvailWidthOfChild</a>) should be documented in this diagram, too.</li>
</ul>
<h4>Apportionment</h4>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="rounding-errors.html">How to Avoid Rounding Errors</a></dd></dl>
<p>Given two array <img class="formulaInl" alt="$e_{i,\min}$" src="form_54.png"/> and <img class="formulaInl" alt="$e_{i,\max}$" src="form_55.png"/>, which represent the column minima and maxima, and a total width <img class="formulaInl" alt="$W$" src="form_56.png"/>, <em>apportionment</em> means to calculate column widths <img class="formulaInl" alt="$w_{i}$" src="form_57.png"/>, with</p>
<p class="formulaDsp">
<img class="formulaDsp" alt="\[e_{i,\min} \le w_{i} \le e_{i,\max}\]" src="form_58.png"/>
</p>
<p>and</p>
<p class="formulaDsp">
<img class="formulaDsp" alt="\[\sum w_{i} = W\]" src="form_59.png"/>
</p>
<p>There are different algorithms for apportionment, a simple one is recommended in the HTML 4.0.1 specification (<a href="http://www.w3.org/TR/REC-html40/appendix/notes.html#h-B.5.2.2">http://www.w3.org/TR/REC-html40/appendix/notes.html#h-B.5.2.2</a>):</p>
<p class="formulaDsp">
<img class="formulaDsp" alt="\[w_{i} = e_{i,\min} + {e_{i,\max} - e_{i,\min}\over\sum e_{i,\max} - \sum e_{i,\min}} (W - \sum e_{i,\min})\]" src="form_60.png"/>
</p>
<p>This one is used currently, but another one will be used soon, which is described below. The rest of this chapter is independent of the exact apportionment algorithm.</p>
<p>When referring to the apportionment function, we will call it <img class="formulaInl" alt="$a_i (W, (e_{i,\min}), (e_{i,\min}))$" src="form_61.png"/> and write something like this:</p>
<p class="formulaDsp">
<img class="formulaDsp" alt="\[w_{i} = a_i (W, (e_{i,\min}), (e_{i,\max})) \]" src="form_62.png"/>
</p>
<p>It is implemented by dw::Table::apportion.</p>
<h4>Column Extremes</h4>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="rounding-errors.html">How to Avoid Rounding Errors</a></dd></dl>
<p>The sizes, which all other sizes depend on, are column extremes, which define, how wide a column may be at min and at max. They are calculated in the following way:</p>
<ol>
<li>
<p class="startli">First, only cells with colspan = 1 are regarded: </p><p class="formulaDsp">
<img class="formulaDsp" alt="\[ e_{\hbox{base},i,\min} = \max \{ e_{\hbox{cell},i,j,\min} \} \]" src="form_63.png"/>
</p>
<p class="formulaDsp">
<img class="formulaDsp" alt="\[ e_{\hbox{base},i,\max} = \max \{ e_{\hbox{cell},i,j,\max} \} \]" src="form_64.png"/>
</p>
<p> only for cells <img class="formulaInl" alt="$(i, j)$" src="form_65.png"/> with colspan = 1.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">Then, <img class="formulaInl" alt="$e_{\hbox{span},i,\min}$" src="form_66.png"/> (but not <img class="formulaInl" alt="$e_{\hbox{span},i,\max}$" src="form_67.png"/>) are calculated from cells with colspan > 1. (In the following formulas, the cell at <img class="formulaInl" alt="$(i_1, j)$" src="form_68.png"/> always span from <img class="formulaInl" alt="$i_1$" src="form_69.png"/> to <img class="formulaInl" alt="$i_2$" src="form_70.png"/>.) If the minimal width of the column exceeds the sum of the column minima calculated in the last step: </p><p class="formulaDsp">
<img class="formulaDsp" alt="\[e_{\hbox{cell},i_1,j,\min} > \sum_{i=i_1}^{i=i_2} e_{\hbox{base},i,\min}\]" src="form_71.png"/>
</p>
<p> then the minimal width of this cell is apportioned to the columns:</p>
<ul>
<li>
If the minimal width of this cell also exceeds the sum of the column maxima: <p class="formulaDsp">
<img class="formulaDsp" alt="\[e_{\hbox{cell},i_1,j,\min} > \sum_{i=i_1}^{i=i_2} e_{\hbox{base},i,\max}\]" src="form_72.png"/>
</p>
then <img class="formulaInl" alt="$e_{\hbox{cell},i_1,j,\min}$" src="form_73.png"/> is apportioned in a simple way: <p class="formulaDsp">
<img class="formulaDsp" alt="\[e_{\hbox{span},i,j,\min} = e_{\hbox{base},i,\max} {e_{\hbox{span},i,j,\min} \over \sum_{i=i_1}^{i=i_2} e_{\hbox{base},i,\max}}\]" src="form_74.png"/>
</p>
</li>
<li>
Otherwise, the apportionment function is used: <p class="formulaDsp">
<img class="formulaDsp" alt="\[e_{\hbox{span},i,j,\min} = a_i (e_{\hbox{cell},i_1,j,\min}, (e_{\hbox{cell},i_1,j,\min} \ldots e_{\hbox{cell},i_2,j,\min}), (e_{\hbox{cell},i_1,j,\max} \ldots e_{\hbox{cell},i_2,j,\max}))\]" src="form_75.png"/>
</p>
</li>
</ul>
<p>After this, <img class="formulaInl" alt="$e_{\hbox{span},i,\min}$" src="form_66.png"/> is then the maximum of all <img class="formulaInl" alt="$e_{\hbox{span},i,j,\min}$" src="form_76.png"/>.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">Finally, the maximum of both is used. </p><p class="formulaDsp">
<img class="formulaDsp" alt="\[ e_{i,\min} = \max \{ e_{\hbox{base},i,\min}, e_{\hbox{span},i,\min} \} \]" src="form_77.png"/>
</p>
<p class="formulaDsp">
<img class="formulaDsp" alt="\[ e_{i,\max} = \max \{ e_{\hbox{base},i,\max}, e_{i,\min} \} \]" src="form_78.png"/>
</p>
<p> For the maxima, there is no <img class="formulaInl" alt="$e_{\hbox{span},i,\max}$" src="form_67.png"/>, but it has to be assured, that the maximum is always greater than or equal to the minimum.</p>
<p class="endli"></p>
</li>
</ol>
<p>Generally, if absolute widths are specified, they are, instead of the results of <a class="el" href="classdw_1_1core_1_1Widget.html#aec23092b0cfe5624b9751a59671fe251" title="Wrapper for Widget::getExtremesImpl(). ">dw::core::Widget::getExtremes</a>, taken for the minimal and maximal width of a cell (minus the box difference, i.e. the difference between content size and widget size). If the content width specification is smaller than the minimal content width of the widget (determined by <a class="el" href="classdw_1_1core_1_1Widget.html#aec23092b0cfe5624b9751a59671fe251" title="Wrapper for Widget::getExtremesImpl(). ">dw::core::Widget::getExtremes</a>), the latter is used instead.</p>
<p>If percentage widths are specified, they are also collected, as column maxima. A similar method as for the extremes is used, for cells with colspan > 1:</p>
<p class="formulaDsp">
<img class="formulaDsp" alt="\[w_{\hbox{span},i,j,\%} = a_i (w_{\hbox{cell},i_1,j,\%}, (e_{\hbox{cell},i_1,j,\min} \ldots e_{\hbox{cell},i_2,j,\min}), (e_{\hbox{cell},i_1,j,\max} \ldots e_{\hbox{cell},i_2,j,\max}))\]" src="form_79.png"/>
</p>
<h4>Cell Sizes</h4>
<h5>Determining the Width of the <a class="el" href="classdw_1_1Table.html" title="A Widget for rendering tables. ">Table</a></h5>
<p>The total width is</p>
<ul>
<li>
the specified absolute width of the table, when given, or </li>
<li>
the available width (set by dw::Table::setWidth [TODO outdated]) times the specified percentage width of t(at max 100%), if the latter is given, or </li>
<li>
otherwise the available width. </li>
</ul>
<p>In any case, it is corrected, if it is less than the minimal width (but not if it is greater than the maximal width).</p>
<dl class="bug"><dt><b><a class="el" href="bug.html#_bug000016">Bug:</a></b></dt><dd>The parentheses is not fully clear, look at the old code.</dd></dl>
<p>Details on differences because of styles are omitted. Below, this total width is called <img class="formulaInl" alt="$W$" src="form_56.png"/>.</p>
<h5>Evaluating percentages</h5>
<p>The following algorithms are used to solve collisions between different size specifications (absolute and percentage). Generally, inherent sizes and specified absolute sizes are preferred.</p>
<ol>
<li>
<p class="startli">First, calculate the sum of the minimal widths, for columns, where no percentage width has been specified. The difference to the total width is at max available to the columns with percentage width specifications: </p><p class="formulaDsp">
<img class="formulaDsp" alt="\[W_{\hbox{columns}_\%,\hbox{available}} = W - \sum e_{i,\min}\]" src="form_80.png"/>
</p>
<p> with only those columns <img class="formulaInl" alt="$i$" src="form_0.png"/> with no percentage width specification.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">Then, calculate the sum of the widths, which the columns with percentage width specification would allocate, when fully adhering to them: </p><p class="formulaDsp">
<img class="formulaDsp" alt="\[W_{\hbox{columns}_\%,\hbox{best}} = W \sum w_{i,\%}\]" src="form_81.png"/>
</p>
<p> with only those columns <img class="formulaInl" alt="$i$" src="form_0.png"/> with a percentage width specification.</p>
<p class="endli"></p>
</li>
<li>
<p class="startli">Two cases are distinguished:</p>
<ul>
<li>
<p class="startli"><img class="formulaInl" alt="$W_{\hbox{columns}_\%,\hbox{available}} \ge W_{\hbox{columns}_\%,\hbox{best}}$" src="form_82.png"/>: In this case, the percentage widths can be used without any modification, by setting the extremes: </p><p class="formulaDsp">
<img class="formulaDsp" alt="\[e_{i,\min} = e_{i,\max} = W w_{i,\%}\]" src="form_83.png"/>
</p>
<p> for only those columns <img class="formulaInl" alt="$i$" src="form_0.png"/> with a percentage width specification.</p>
<p class="endli"></p>
</li>
<li>
<img class="formulaInl" alt="$W_{\hbox{columns}_\%,\hbox{available}} < W_{\hbox{columns}_\%,\hbox{best}}$" src="form_84.png"/>: In this case, the widths for these columns must be cut down: <p class="formulaDsp">
<img class="formulaDsp" alt="\[e_{i,\min} = e_{i,\max} = w_{i,\%} {W_{\hbox{columns}_\%,\hbox{available}} \over w_{\hbox{total},\%}}\]" src="form_85.png"/>
</p>
with <p class="formulaDsp">
<img class="formulaDsp" alt="\[w_{\hbox{total},\%} = \sum w_{i,\%}\]" src="form_86.png"/>
</p>
in both cases for only those columns <img class="formulaInl" alt="$i$" src="form_0.png"/> with a percentage width specification. </li>
</ul>
</li>
</ol>
<p>( <img class="formulaInl" alt="$e_{i,\min}$" src="form_54.png"/> and <img class="formulaInl" alt="$e_{i,\max}$" src="form_55.png"/> are set <em>temporarily</em> here, the notation should be a bit clearer.)</p>
<h5>Column Widths</h5>
<p>The column widths are now simply calculated by applying the apportionment function.</p>
<h5>Row Heights</h5>
<p>...</p>
<h3>Alternative Apportionment Algorithm</h3>
<p>The algorithm described here tends to result in more homogeneous column widths.</p>
<p>The following rule leads to well-defined <img class="formulaInl" alt="$w_{i}$" src="form_57.png"/>: All columns <img class="formulaInl" alt="$i$" src="form_0.png"/> have have the same width <img class="formulaInl" alt="$w$" src="form_87.png"/>, except: </p><ul>
<li>
<img class="formulaInl" alt="$w < e_{i,\min}$" src="form_88.png"/>, or </li>
<li>
<img class="formulaInl" alt="$w > e_{i,\max}$" src="form_89.png"/>. </li>
</ul>
<p>Furthermore, <img class="formulaInl" alt="$w$" src="form_87.png"/> is </p><ul>
<li>
less than all <img class="formulaInl" alt="$e_{i,\min}$" src="form_54.png"/> of columns not having <img class="formulaInl" alt="$w$" src="form_87.png"/> as width, and </li>
<li>
greater than all <img class="formulaInl" alt="$e_{i,\min}$" src="form_54.png"/> of columns not having <img class="formulaInl" alt="$w$" src="form_87.png"/> as width. </li>
</ul>
<p>Of course, <img class="formulaInl" alt="$\sum w_{i} = W$" src="form_90.png"/> must be the case.</p>
<p>Based on an initial value <img class="formulaInl" alt="$w = {W\over n}$" src="form_91.png"/>, <img class="formulaInl" alt="$w$" src="form_87.png"/> can iteratively adjusted, based on these rules.</p>
<h3>Borders, Paddings, Spacing</h3>
<p>Currently, DwTable supports only the separated borders model (see CSS specification). Borders, paddings, spacing is done by creating <a class="el" href="classdw_1_1core_1_1style_1_1Style.html">dw::core::style::Style</a> structures with values equivalent to following CSS:</p>
<pre>
TABLE {
border: outset <em>table-border</em>;
border-collapse: separate;
border-spacing: <em>table-cellspacing</em>;
background-color: <em>table-bgcolor</em>;
}</pre><pre>TD TH {
border: inset <em>table-border</em>;
padding: <em>table-cellspacing</em>;
background-color: <em>td/th-bgcolor</em>;
}
</pre><p>Here, <em>foo-bar</em> refers to the attribute <em>bar</em> of the tag <em>foo</em> foo. Look at the HTML parser for more details. </p>
</div><h2 class="groupheader">Member Enumeration Documentation</h2>
<a class="anchor" id="a6e08d13f149e73c6466f76360001580d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">dw::Table::ExtrMod</a></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<table class="fieldtable">
<tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><a class="anchor" id="a6e08d13f149e73c6466f76360001580daddcfedbb6fee7cb0580ee2f5cf8d0248"></a>MIN </td><td class="fielddoc">
</td></tr>
<tr><td class="fieldname"><a class="anchor" id="a6e08d13f149e73c6466f76360001580da330f9b65760f20477af219e903a5e36b"></a>MIN_INTR </td><td class="fielddoc">
</td></tr>
<tr><td class="fieldname"><a class="anchor" id="a6e08d13f149e73c6466f76360001580da99e9376d3ad328ffccd6001dbc1fb01d"></a>MIN_MIN </td><td class="fielddoc">
</td></tr>
<tr><td class="fieldname"><a class="anchor" id="a6e08d13f149e73c6466f76360001580da5953080f92b9b131c1bb4cf7d3230b88"></a>MAX_MIN </td><td class="fielddoc">
</td></tr>
<tr><td class="fieldname"><a class="anchor" id="a6e08d13f149e73c6466f76360001580dae804e9aaed3be01f18a9abbb39e891c3"></a>MAX </td><td class="fielddoc">
</td></tr>
<tr><td class="fieldname"><a class="anchor" id="a6e08d13f149e73c6466f76360001580daab0b10495d4ee0f4a4fdc17bd024898d"></a>MAX_INTR </td><td class="fielddoc">
</td></tr>
<tr><td class="fieldname"><a class="anchor" id="a6e08d13f149e73c6466f76360001580da1e43181db3c0eb29bbcdecc4cc55106b"></a>DATA </td><td class="fielddoc">
</td></tr>
</table>
</div>
</div>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a308217e47398084ec529a605f8ac06fd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">dw::Table::Table </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>limitTextWidth</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="debug__rtfl_8hh.html#a25c125b618655652ac04cd9228badca8">DBG_OBJ_CREATE</a>, <a class="el" href="debug__rtfl_8hh.html#a28ea40bfba03bcd80699a34735319282">DBG_OBJ_SET_BOOL</a>, and <a class="el" href="debug__rtfl_8hh.html#a523aa15ab2423ead7b4b9b38dd37ccb1">DBG_OBJ_SET_NUM</a>.</p>
</div>
</div>
<a class="anchor" id="a23bf1cf3989ff2e56390f39d52813b51"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">dw::Table::~Table </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="debug__rtfl_8hh.html#a2104cbf69f71194098e78715c21a4d8d">DBG_OBJ_DELETE</a>.</p>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="aaed8ed3dc646d39742a56aa6b51379a1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::actuallyCalcCellSizes </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>calcHeights</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<dl class="bug"><dt><b><a class="el" href="bug.html#_bug000015">Bug:</a></b></dt><dd><a class="el" href="classdw_1_1Table.html#a3cffbdc94d68e622c122677fd76856cd">dw::Table::baseline</a> is not filled. </dd></dl>
<p>References <a class="el" href="structdw_1_1core_1_1Extremes.html#aed8913a17ee5e36affb57f3fb320c973">dw::core::Extremes::adjustmentWidth</a>, <a class="el" href="structdw_1_1core_1_1Requisition.html#a883b8e875b47c30e61fa47b2b0501ed8">dw::core::Requisition::ascent</a>, <a class="el" href="debug_8hh.html#a0d32863123f8362ceee2fb3e7b0f9458">DBG_IF_RTFL</a>, <a class="el" href="debug__rtfl_8hh.html#a6b09588978d0a92de1b617dd67b00963">DBG_OBJ_ARRSET_NUM</a>, <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="debug__rtfl_8hh.html#a5290e91a26ea84b38b25bc6dcb5f57c3">DBG_OBJ_MSG</a>, <a class="el" href="debug__rtfl_8hh.html#a49c1609558b9377bae03a8bd4010a807">DBG_OBJ_MSG_END</a>, <a class="el" href="debug__rtfl_8hh.html#a83eb24efb556fde2ba3803303c4591c9">DBG_OBJ_MSG_START</a>, <a class="el" href="debug__rtfl_8hh.html#a4d8de916c55232779c4df76726f36092">DBG_OBJ_MSGF</a>, <a class="el" href="debug__rtfl_8hh.html#a28ea40bfba03bcd80699a34735319282">DBG_OBJ_SET_BOOL</a>, <a class="el" href="debug__rtfl_8hh.html#a523aa15ab2423ead7b4b9b38dd37ccb1">DBG_OBJ_SET_NUM</a>, <a class="el" href="structdw_1_1core_1_1Requisition.html#a8471d49d1dddd6ece5b59d638f692ad1">dw::core::Requisition::descent</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a3ea78251f42d13b22c44281b45046f7c">lout::misc::SimpleVector< T >::get()</a>, <a class="el" href="namespacedw_1_1core_1_1style.html#aac24f6d004950902b4230f10d6ab390fa21f69922bfe70562a6ebe62b70e75ad4">dw::core::style::LENGTH_AUTO</a>, <a class="el" href="namespacelout_1_1misc.html#a25154cdeb39b9ee3ef491670b3652dd3">lout::misc::max()</a>, <a class="el" href="namespacelout_1_1misc.html#a091b14f612d8e40414de6af75497c37e">lout::misc::min()</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a82134068b61bb0e83274da82b14f937d">lout::misc::SimpleVector< T >::set()</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a2f191fffa85c0faf31246e559d85adff">lout::misc::SimpleVector< T >::setSize()</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#aa09f6bae037bb2789d11f9c5df19af4c">lout::misc::SimpleVector< T >::size()</a>, <a class="el" href="namespacedw_1_1core.html#a3592a7c3af5fbcdd5040d63aae058399">dw::core::splitHeightPreserveDescent()</a>, and <a class="el" href="structdw_1_1core_1_1Requisition.html#ae7679b7938c08d836c398edd9823667a">dw::core::Requisition::width</a>.</p>
</div>
</div>
<a class="anchor" id="a5bdf5604e05a2e118e0f8c71504a871d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void dw::Table::addCell </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> * </td>
<td class="paramname"><em>widget</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>colspan</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>rowspan</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="structdw_1_1Table_1_1Child.html#abfb812486d5f07a4d737419374642fea">dw::Table::Child::cell</a>, <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="debug__rtfl_8hh.html#acba50aa3b17440531e3306df1dd45f98">DBG_OBJ_SET_NUM_O</a>, <a class="el" href="namespacelout_1_1misc.html#a25154cdeb39b9ee3ef491670b3652dd3">lout::misc::max()</a>, <a class="el" href="structdw_1_1Table_1_1Child.html#ab2b9c53435987c83a1d628e537fd0bd4">dw::Table::Child::spanSpace</a>, and <a class="el" href="structdw_1_1Table_1_1Child.html#a9cdf813285729547e9f6b71c93e0e99d">dw::Table::Child::type</a>.</p>
<p>Referenced by <a class="el" href="dw__table_8cc.html#a3c04138a5bfe5d72780bb7e82a18e627">main()</a>.</p>
</div>
</div>
<a class="anchor" id="a7b3a6a8b0be46e3ebc7f0d40adfe2b1b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void dw::Table::addRow </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> * </td>
<td class="paramname"><em>style</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="classdw_1_1core_1_1style_1_1Style.html#af49929c5779c391942c2135dfae7b894">dw::core::style::Style::ref()</a>.</p>
<p>Referenced by <a class="el" href="dw__table_8cc.html#a3c04138a5bfe5d72780bb7e82a18e627">main()</a>.</p>
</div>
</div>
<a class="anchor" id="a558ec91106835fa469df75894b23a0eb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool dw::Table::affectsSizeChangeContainerChild </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> * </td>
<td class="paramname"><em>child</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, and <a class="el" href="debug__rtfl_8hh.html#a4d8de916c55232779c4df76726f36092">DBG_OBJ_MSGF</a>.</p>
</div>
</div>
<a class="anchor" id="aea255f5e3837e98acfa9b81d36561d15"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::applyPerHeight </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>containerHeight</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="namespacedw_1_1core_1_1style.html#a65610d57c89e5bee02e4e539fdc989de">core::style::Length</a> </td>
<td class="paramname"><em>perHeight</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Reimplemented from <a class="el" href="classdw_1_1core_1_1Widget.html#aa682f1a87efd93050bc28be57403ddae">dw::core::Widget</a>.</p>
<p>References <a class="el" href="namespacedw_1_1core_1_1style.html#a1302e8692f594c43acd4e0d4f80d4e58">dw::core::style::multiplyWithPerLength()</a>.</p>
</div>
</div>
<a class="anchor" id="a4b0f23cf81aec08c818dd9744d2d1d72"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::applyPerWidth </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>containerWidth</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="namespacedw_1_1core_1_1style.html#a65610d57c89e5bee02e4e539fdc989de">core::style::Length</a> </td>
<td class="paramname"><em>perWidth</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Reimplemented from <a class="el" href="classdw_1_1core_1_1Widget.html#adcecdbeccbc5e4b23f99372cba241222">dw::core::Widget</a>.</p>
<p>References <a class="el" href="namespacedw_1_1core_1_1style.html#a1302e8692f594c43acd4e0d4f80d4e58">dw::core::style::multiplyWithPerLength()</a>.</p>
</div>
</div>
<a class="anchor" id="adf78bcf69a3313fd3afc947b1c5d29c9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::apportion2 </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>totalWidth</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>firstCol</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>lastCol</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> </td>
<td class="paramname"><em>minExtrMod</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> </td>
<td class="paramname"><em>maxExtrMod</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">void * </td>
<td class="paramname"><em>extrData</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a>< int > * </td>
<td class="paramname"><em>dest</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>destOffset</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Actual apportionment function. </p>
<p>References <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="debug__rtfl_8hh.html#a5290e91a26ea84b38b25bc6dcb5f57c3">DBG_OBJ_MSG</a>, <a class="el" href="debug__rtfl_8hh.html#a4d8de916c55232779c4df76726f36092">DBG_OBJ_MSGF</a>, <a class="el" href="namespacelout_1_1misc.html#a25154cdeb39b9ee3ef491670b3652dd3">lout::misc::max()</a>, <a class="el" href="namespacelout_1_1misc.html#a091b14f612d8e40414de6af75497c37e">lout::misc::min()</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a82134068b61bb0e83274da82b14f937d">lout::misc::SimpleVector< T >::set()</a>, and <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a2f191fffa85c0faf31246e559d85adff">lout::misc::SimpleVector< T >::setSize()</a>.</p>
</div>
</div>
<a class="anchor" id="a344fd019c228a7fa42464d4ee5ab4331"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::apportionRowSpan </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="structdw_1_1core_1_1Requisition.html#a883b8e875b47c30e61fa47b2b0501ed8">dw::core::Requisition::ascent</a>, <a class="el" href="debug__rtfl_8hh.html#a0f67d617ff8d0ec41aaba5eceed38847">DBG_OBJ_ENTER0</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, and <a class="el" href="structdw_1_1core_1_1Requisition.html#a8471d49d1dddd6ece5b59d638f692ad1">dw::core::Requisition::descent</a>.</p>
</div>
</div>
<a class="anchor" id="a343d1d70a35b08509bff5533e333167d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::calcAdjustmentWidthSpanMultiCols </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>col</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>cs</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> * </td>
<td class="paramname"><em>cellExtremes</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="structdw_1_1core_1_1Extremes.html#aed8913a17ee5e36affb57f3fb320c973">dw::core::Extremes::adjustmentWidth</a>, <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, and <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a3ea78251f42d13b22c44281b45046f7c">lout::misc::SimpleVector< T >::get()</a>.</p>
</div>
</div>
<a class="anchor" id="a2e5ff9565b8ae6a35f6aeaf874848353"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::calcAvailWidthForDescendant </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> * </td>
<td class="paramname"><em>child</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="debug__rtfl_8hh.html#a4d8de916c55232779c4df76726f36092">DBG_OBJ_MSGF</a>, <a class="el" href="namespacelout_1_1misc.html#a25154cdeb39b9ee3ef491670b3652dd3">lout::misc::max()</a>, and <a class="el" href="namespacelout_1_1misc.html#a091b14f612d8e40414de6af75497c37e">lout::misc::min()</a>.</p>
</div>
</div>
<a class="anchor" id="a40283100384e20cac9d2c0ce4150d4fe"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::calcCellSizes </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>calcHeights</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, and <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>.</p>
</div>
</div>
<a class="anchor" id="a3eecc3a8b39c5e80428d137c1ffc64cc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::calcExtremesSpanMultiCols </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>col</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>cs</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> * </td>
<td class="paramname"><em>cellExtremes</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> </td>
<td class="paramname"><em>minExtrMod</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> </td>
<td class="paramname"><em>maxExtrMod</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">void * </td>
<td class="paramname"><em>extrData</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="debug__rtfl_8hh.html#a4d8de916c55232779c4df76726f36092">DBG_OBJ_MSGF</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a3ea78251f42d13b22c44281b45046f7c">lout::misc::SimpleVector< T >::get()</a>, and <a class="el" href="namespacelout_1_1misc.html#a25154cdeb39b9ee3ef491670b3652dd3">lout::misc::max()</a>.</p>
</div>
</div>
<a class="anchor" id="ae945c30526ccd77ccd60976c7f0ad6b9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool dw::Table::childDefined </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>n</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a3ea78251f42d13b22c44281b45046f7c">lout::misc::SimpleVector< T >::get()</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#aa09f6bae037bb2789d11f9c5df19af4c">lout::misc::SimpleVector< T >::size()</a>, <a class="el" href="structdw_1_1Table_1_1Child.html#a0b5569c33af736bc84ccd4853d1a5490a5acecdb7b638ee8a91e408c6c103d777">dw::Table::Child::SPAN_SPACE</a>, and <a class="el" href="structdw_1_1Table_1_1Child.html#a9cdf813285729547e9f6b71c93e0e99d">dw::Table::Child::type</a>.</p>
</div>
</div>
<a class="anchor" id="a7473e594367c7a70d37ff86868e1201b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::containerSizeChangedForChildren </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Reimplemented from <a class="el" href="classdw_1_1core_1_1Widget.html#a9bacdca836b513ad76f2c5fc95a6c1e0">dw::core::Widget</a>.</p>
<p>References <a class="el" href="debug__rtfl_8hh.html#a0f67d617ff8d0ec41aaba5eceed38847">DBG_OBJ_ENTER0</a>, and <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>.</p>
</div>
</div>
<a class="anchor" id="a1665a638507b5474b6d81e00c0cea356"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::drawLevel </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classdw_1_1core_1_1View.html">core::View</a> * </td>
<td class="paramname"><em>view</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1core_1_1Rectangle.html">core::Rectangle</a> * </td>
<td class="paramname"><em>area</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>level</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1core_1_1DrawingContext.html">core::DrawingContext</a> * </td>
<td class="paramname"><em>context</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Reimplemented from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a444b0f6120c42d13ab35c1b71b6dad59">dw::oof::OOFAwareWidget</a>.</p>
<p>References <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="classdw_1_1core_1_1Rectangle.html#a499c5b7e4acaf3afa2cee3d71b2152df">dw::core::Rectangle::draw()</a>, <a class="el" href="classdw_1_1core_1_1Rectangle.html#aefe44831a25fdb7426fd1f859f9ee159">dw::core::Rectangle::height</a>, <a class="el" href="classdw_1_1core_1_1Rectangle.html#a830e684aa11e7debc5a1c39a61e70c74">dw::core::Rectangle::width</a>, <a class="el" href="classdw_1_1core_1_1Rectangle.html#ae625fa4bd33e00f61a8502f9947c90b2">dw::core::Rectangle::x</a>, and <a class="el" href="classdw_1_1core_1_1Rectangle.html#a74a3b465c9248d61317c89f477535eb8">dw::core::Rectangle::y</a>.</p>
</div>
</div>
<a class="anchor" id="a42587c01297075332dd57f345d4b4ccd"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::forceCalcCellSizes </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>calcHeights</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="namespacelout_1_1misc.html#af12c41294c3892aa63cd1cf87030c1ad">lout::misc::assertNotReached()</a>, <a class="el" href="structdw_1_1Table_1_1Child.html#abfb812486d5f07a4d737419374642fea">dw::Table::Child::cell</a>, <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a3ea78251f42d13b22c44281b45046f7c">lout::misc::SimpleVector< T >::get()</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a2f191fffa85c0faf31246e559d85adff">lout::misc::SimpleVector< T >::setSize()</a>, and <a class="el" href="structdw_1_1Table_1_1Child.html#a9cdf813285729547e9f6b71c93e0e99d">dw::Table::Child::type</a>.</p>
</div>
</div>
<a class="anchor" id="a3fa26238318cd982fe7ea2ea5971d8aa"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::forceCalcColumnExtremes </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Fills <a class="el" href="classdw_1_1Table.html#a9e7fe7db5f7853aa6c374190af778b32" title="The extremes of all columns. ">dw::Table::colExtremes</a> in all cases. </p>
<p>References <a class="el" href="structdw_1_1core_1_1Extremes.html#aed8913a17ee5e36affb57f3fb320c973">dw::core::Extremes::adjustmentWidth</a>, <a class="el" href="debug_8hh.html#a0d32863123f8362ceee2fb3e7b0f9458">DBG_IF_RTFL</a>, <a class="el" href="debug__rtfl_8hh.html#aba0095539047730ee4d5d4c569f98d6d">DBG_OBJ_ARRATTRSET_NUM</a>, <a class="el" href="debug__rtfl_8hh.html#a1933467007fe546e1efe3cd954d8520f">DBG_OBJ_ARRSET_BOOL</a>, <a class="el" href="debug__rtfl_8hh.html#a0f67d617ff8d0ec41aaba5eceed38847">DBG_OBJ_ENTER0</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="debug__rtfl_8hh.html#a49c1609558b9377bae03a8bd4010a807">DBG_OBJ_MSG_END</a>, <a class="el" href="debug__rtfl_8hh.html#a83eb24efb556fde2ba3803303c4591c9">DBG_OBJ_MSG_START</a>, <a class="el" href="debug__rtfl_8hh.html#a4d8de916c55232779c4df76726f36092">DBG_OBJ_MSGF</a>, <a class="el" href="debug__rtfl_8hh.html#a28ea40bfba03bcd80699a34735319282">DBG_OBJ_SET_BOOL</a>, <a class="el" href="debug__rtfl_8hh.html#a523aa15ab2423ead7b4b9b38dd37ccb1">DBG_OBJ_SET_NUM</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a3ea78251f42d13b22c44281b45046f7c">lout::misc::SimpleVector< T >::get()</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a43fc8b84f4ddef479450eac301c70e3f">lout::misc::SimpleVector< T >::increase()</a>, <a class="el" href="namespacedw_1_1core_1_1style.html#acd3f933fa144e3a67650fbad8a8461d4">dw::core::style::isPerLength()</a>, <a class="el" href="namespacedw_1_1core_1_1style.html#aac24f6d004950902b4230f10d6ab390fa21f69922bfe70562a6ebe62b70e75ad4">dw::core::style::LENGTH_AUTO</a>, <a class="el" href="namespacelout_1_1misc.html#a25154cdeb39b9ee3ef491670b3652dd3">lout::misc::max()</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a20d74184e64b17eae4e2a8901539543c">dw::core::Extremes::maxWidth</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a572ea67b8c9f5ff3c6b72e730f552401">dw::core::Extremes::maxWidthIntrinsic</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a743de2619d9d62cefb8e2bb0f3a19fb1">dw::core::Extremes::minWidth</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a2c513c4504d52a97af035e1f094d648b">dw::core::Extremes::minWidthIntrinsic</a>, <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#aedf24b1f47e19d3e8a756f4a00c4b6f3">lout::misc::SimpleVector< T >::setLast()</a>, and <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#aa09f6bae037bb2789d11f9c5df19af4c">lout::misc::SimpleVector< T >::size()</a>.</p>
</div>
</div>
<a class="anchor" id="a61c6915a97ca6ae8b4436adfabe1c7cc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool dw::Table::getAdjustMinWidth </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Reimplemented from <a class="el" href="classdw_1_1core_1_1Widget.html#a4846c32c57b66d2e2cf6c93519852a7a">dw::core::Widget</a>.</p>
<p>References <a class="el" href="classdw_1_1Table.html#af7a2279449b6964b3c27cef827ad47b0">adjustTableMinWidth</a>.</p>
</div>
</div>
<a class="anchor" id="ac8ee5cd231d2d3467e7195cb7828a961"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static bool dw::Table::getAdjustTableMinWidth </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="classdw_1_1Table.html#af7a2279449b6964b3c27cef827ad47b0">adjustTableMinWidth</a>.</p>
</div>
</div>
<a class="anchor" id="a4f089dc3de0b64a7c6509da0e3460938"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::getAvailWidthOfChild </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> * </td>
<td class="paramname"><em>child</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>forceValue</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="debug__rtfl_8hh.html#a4d8de916c55232779c4df76726f36092">DBG_OBJ_MSGF</a>, <a class="el" href="classdw_1_1oof_1_1OutOfFlowMgr.html#ad6446e11862e871625e2a36bf1d4bde8">dw::oof::OutOfFlowMgr::dealingWithSizeOfChild()</a>, and <a class="el" href="classdw_1_1oof_1_1OutOfFlowMgr.html#aafec4d2dd63d7a88582ba8a77b1a46da">dw::oof::OutOfFlowMgr::getAvailWidthOfChild()</a>.</p>
</div>
</div>
<a class="anchor" id="a00e5b7d58bfc5f1db60c5b03cb8f7b65"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classdw_1_1AlignedTableCell.html">AlignedTableCell</a> * dw::Table::getCellRef </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html#a4c838c41d8044c9eeffa790592f85ce9">lout::identity::IdentifiableObject::instanceOf()</a>.</p>
</div>
</div>
<a class="anchor" id="a3832b3bd848f8b3030148bf61773c83e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::getColExtreme </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>col</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> </td>
<td class="paramname"><em>mod</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">void * </td>
<td class="paramname"><em>data</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a1d8e5bd08e46d3b1e0d66a9753147799"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::getExtreme </td>
<td>(</td>
<td class="paramtype"><a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> * </td>
<td class="paramname"><em>extremes</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> </td>
<td class="paramname"><em>mod</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="namespacelout_1_1misc.html#af12c41294c3892aa63cd1cf87030c1ad">lout::misc::assertNotReached()</a>, <a class="el" href="namespacelout_1_1misc.html#a25154cdeb39b9ee3ef491670b3652dd3">lout::misc::max()</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a20d74184e64b17eae4e2a8901539543c">dw::core::Extremes::maxWidth</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a572ea67b8c9f5ff3c6b72e730f552401">dw::core::Extremes::maxWidthIntrinsic</a>, <a class="el" href="namespacelout_1_1misc.html#a091b14f612d8e40414de6af75497c37e">lout::misc::min()</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a743de2619d9d62cefb8e2bb0f3a19fb1">dw::core::Extremes::minWidth</a>, and <a class="el" href="structdw_1_1core_1_1Extremes.html#a2c513c4504d52a97af035e1f094d648b">dw::core::Extremes::minWidthIntrinsic</a>.</p>
</div>
</div>
<a class="anchor" id="a5e874140c2d53dae0ef1355677d4bec7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::getExtremesSimpl </td>
<td>(</td>
<td class="paramtype"><a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> * </td>
<td class="paramname"><em>extremes</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Simple variant, to be implemented by widgets with extremes not depending on positions. </p>
<p>Reimplemented from <a class="el" href="classdw_1_1core_1_1Widget.html#a66e960e43b7d50302e91e1bebb52e840">dw::core::Widget</a>.</p>
<p>References <a class="el" href="structdw_1_1core_1_1Extremes.html#aed8913a17ee5e36affb57f3fb320c973">dw::core::Extremes::adjustmentWidth</a>, <a class="el" href="debug__rtfl_8hh.html#a0f67d617ff8d0ec41aaba5eceed38847">DBG_OBJ_ENTER0</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a20d74184e64b17eae4e2a8901539543c">dw::core::Extremes::maxWidth</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a572ea67b8c9f5ff3c6b72e730f552401">dw::core::Extremes::maxWidthIntrinsic</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a743de2619d9d62cefb8e2bb0f3a19fb1">dw::core::Extremes::minWidth</a>, and <a class="el" href="structdw_1_1core_1_1Extremes.html#a2c513c4504d52a97af035e1f094d648b">dw::core::Extremes::minWidthIntrinsic</a>.</p>
</div>
</div>
<a class="anchor" id="af7c99497b2cb98c33b109e1b0bf07c3c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const char * dw::Table::getExtrModName </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> </td>
<td class="paramname"><em>mod</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="namespacelout_1_1misc.html#af12c41294c3892aa63cd1cf87030c1ad">lout::misc::assertNotReached()</a>.</p>
</div>
</div>
<a class="anchor" id="af156af1e842b6b7f4680c7e6cf933d8a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classdw_1_1core_1_1Widget.html">core::Widget</a> * dw::Table::getWidgetAtPointLevel </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>x</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>y</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>level</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1core_1_1GettingWidgetAtPointContext.html">core::GettingWidgetAtPointContext</a> * </td>
<td class="paramname"><em>context</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Reimplemented from <a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a38eede43a591c99f33e94c34b12796e7">dw::oof::OOFAwareWidget</a>.</p>
<p>References <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, and <a class="el" href="debug__rtfl_8hh.html#a4d8de916c55232779c4df76726f36092">DBG_OBJ_MSGF</a>.</p>
</div>
</div>
<a class="anchor" id="a7e1663a45d19f48066fc7b5d65a2dbad"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool dw::Table::isBlockLevel </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Reimplemented from <a class="el" href="classdw_1_1core_1_1Widget.html#aff5c7f94d11cba78f0df1948f138989d">dw::core::Widget</a>.</p>
</div>
</div>
<a class="anchor" id="ac1f869a883b502c0cdf7fba25c1c020f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classdw_1_1core_1_1Iterator.html">core::Iterator</a> * dw::Table::iterator </td>
<td>(</td>
<td class="paramtype"><a class="el" href="structdw_1_1core_1_1Content.html#a41c29111b049db05a8de25b2e1ca4bd5">core::Content::Type</a> </td>
<td class="paramname"><em>mask</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>atEnd</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Return an iterator for this widget. </p>
<p><em>mask</em> can narrow the types returned by the iterator, this can enhance performance quite much, e.g. when only searching for child widgets.</p>
<p>With <em>atEnd</em> == false, the iterator starts <em>before</em> the beginning, i.e. the first call of <a class="el" href="classdw_1_1core_1_1Iterator.html#a72f475e2c830ed8ef3b437f23a37c976" title="Move iterator forward and store content it. ">dw::core::Iterator::next</a> will let the iterator point on the first piece of contents. Likewise, With <em>atEnd</em> == true, the iterator starts <em>after</em> the last piece of contents, call <a class="el" href="classdw_1_1core_1_1Iterator.html#a8c64db1acab3349ba787396392bbe4d5" title="Move iterator backward and store content it. ">dw::core::Iterator::prev</a> in this case. </p>
<p>Implements <a class="el" href="classdw_1_1core_1_1Widget.html#ab66387121a56322ea6e4168db857e013">dw::core::Widget</a>.</p>
</div>
</div>
<a class="anchor" id="ad54ad4b8f0c5a6615bea09dcfeebdfd5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::reallocChildren </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>newNumCols</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>newNumRows</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="structdw_1_1Table_1_1Child.html#abfb812486d5f07a4d737419374642fea">dw::Table::Child::cell</a>, <a class="el" href="debug_8hh.html#a0d32863123f8362ceee2fb3e7b0f9458">DBG_IF_RTFL</a>, <a class="el" href="debug__rtfl_8hh.html#a6b09588978d0a92de1b617dd67b00963">DBG_OBJ_ARRSET_NUM</a>, <a class="el" href="debug__rtfl_8hh.html#a523aa15ab2423ead7b4b9b38dd37ccb1">DBG_OBJ_SET_NUM</a>, <a class="el" href="debug__rtfl_8hh.html#acba50aa3b17440531e3306df1dd45f98">DBG_OBJ_SET_NUM_O</a>, <a class="el" href="structdw_1_1Table_1_1Child.html#ab2b9c53435987c83a1d628e537fd0bd4">dw::Table::Child::spanSpace</a>, and <a class="el" href="structdw_1_1Table_1_1Child.html#a9cdf813285729547e9f6b71c93e0e99d">dw::Table::Child::type</a>.</p>
</div>
</div>
<a class="anchor" id="abf1e4db621501297d349f221ded9394f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::removeChild </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> * </td>
<td class="paramname"><em>child</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<dl class="bug"><dt><b><a class="el" href="bug.html#_bug000014">Bug:</a></b></dt><dd>Not implemented. </dd></dl>
</div>
</div>
<a class="anchor" id="a5376efa257fb6d20443bf59d41dd0078"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::resizeDrawImpl </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called after <a class="el" href="classdw_1_1Table.html#aaf88b2bd82f86aa9c66ef30a730a3551" title="See Sizes of Dillo Widgets. ">sizeAllocateImpl()</a> to redraw necessary areas. By default the whole widget is redrawn. </p>
<p>Reimplemented from <a class="el" href="classdw_1_1core_1_1Widget.html#a8c46a6f8c8a1e12047474f5f4695c440">dw::core::Widget</a>.</p>
</div>
</div>
<a class="anchor" id="a1bed5f2e41e7a7e6c8ba8cec5e93c997"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static void dw::Table::setAdjustTableMinWidth </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>adjustTableMinWidth</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="classdw_1_1Table.html#af7a2279449b6964b3c27cef827ad47b0">adjustTableMinWidth</a>.</p>
</div>
</div>
<a class="anchor" id="ac629a5e56d2e895408d4482e82705d3a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::setColExtreme </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>col</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> </td>
<td class="paramname"><em>mod</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">void * </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a21fc703d867b76abe706d467376443f0"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::setCumHeight </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>row</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a3ea78251f42d13b22c44281b45046f7c">lout::misc::SimpleVector< T >::get()</a>, <a class="el" href="namespacelout_1_1misc.html#a091b14f612d8e40414de6af75497c37e">lout::misc::min()</a>, and <a class="el" href="classlout_1_1misc_1_1SimpleVector.html#a82134068b61bb0e83274da82b14f937d">lout::misc::SimpleVector< T >::set()</a>.</p>
</div>
</div>
<a class="anchor" id="acf84d43e9fd39ef0380e3930ef800735"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::setExtreme </td>
<td>(</td>
<td class="paramtype"><a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a> * </td>
<td class="paramname"><em>extremes</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classdw_1_1Table.html#a6e08d13f149e73c6466f76360001580d">ExtrMod</a> </td>
<td class="paramname"><em>mod</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>References <a class="el" href="namespacelout_1_1misc.html#af12c41294c3892aa63cd1cf87030c1ad">lout::misc::assertNotReached()</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a20d74184e64b17eae4e2a8901539543c">dw::core::Extremes::maxWidth</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a572ea67b8c9f5ff3c6b72e730f552401">dw::core::Extremes::maxWidthIntrinsic</a>, <a class="el" href="structdw_1_1core_1_1Extremes.html#a743de2619d9d62cefb8e2bb0f3a19fb1">dw::core::Extremes::minWidth</a>, and <a class="el" href="structdw_1_1core_1_1Extremes.html#a2c513c4504d52a97af035e1f094d648b">dw::core::Extremes::minWidthIntrinsic</a>.</p>
</div>
</div>
<a class="anchor" id="aaf88b2bd82f86aa9c66ef30a730a3551"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::sizeAllocateImpl </td>
<td>(</td>
<td class="paramtype"><a class="el" href="structdw_1_1core_1_1Allocation.html">core::Allocation</a> * </td>
<td class="paramname"><em>allocation</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>. </p>
<dl class="bug"><dt><b><a class="el" href="bug.html#_bug000013">Bug:</a></b></dt><dd>Baselines are not regarded here. </dd></dl>
<p>Reimplemented from <a class="el" href="classdw_1_1core_1_1Widget.html#a756379942a5254e22c087f6bb62a23a5">dw::core::Widget</a>.</p>
<p>References <a class="el" href="structdw_1_1core_1_1Allocation.html#a5b0264e0d382c4dc2bbe36af5e000526">dw::core::Allocation::ascent</a>, <a class="el" href="structdw_1_1core_1_1Requisition.html#a883b8e875b47c30e61fa47b2b0501ed8">dw::core::Requisition::ascent</a>, <a class="el" href="debug__rtfl_8hh.html#a75de7a7649a7d132223bfec01794726e">DBG_OBJ_ENTER</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="structdw_1_1core_1_1Allocation.html#a72b2823c3874bdae95d9629beffde732">dw::core::Allocation::descent</a>, <a class="el" href="structdw_1_1core_1_1Allocation.html#a04f260254a44347e497b3e8ab8a7bd4d">dw::core::Allocation::width</a>, <a class="el" href="structdw_1_1core_1_1Allocation.html#ad2b91302ac192522882a8e1e1e7c2866">dw::core::Allocation::x</a>, and <a class="el" href="structdw_1_1core_1_1Allocation.html#a1f6b8c6bd3b5d3cd72a65c638c062a98">dw::core::Allocation::y</a>.</p>
</div>
</div>
<a class="anchor" id="ab9009c3a7a381d36bb1daea8d50d8499"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void dw::Table::sizeRequestSimpl </td>
<td>(</td>
<td class="paramtype"><a class="el" href="structdw_1_1core_1_1Requisition.html">core::Requisition</a> * </td>
<td class="paramname"><em>requisition</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Simple variant, to be implemented by widgets with sizes not depending on positions. </p>
<dl class="bug"><dt><b><a class="el" href="bug.html#_bug000012">Bug:</a></b></dt><dd>Baselines are not regarded here. </dd></dl>
<p>Reimplemented from <a class="el" href="classdw_1_1core_1_1Widget.html#a80bff37480606bf9ff8f3d913e16c8b4">dw::core::Widget</a>.</p>
<p>References <a class="el" href="structdw_1_1core_1_1Requisition.html#a883b8e875b47c30e61fa47b2b0501ed8">dw::core::Requisition::ascent</a>, <a class="el" href="debug__rtfl_8hh.html#a0f67d617ff8d0ec41aaba5eceed38847">DBG_OBJ_ENTER0</a>, <a class="el" href="debug__rtfl_8hh.html#a7cdf2094f22d257c701e1cc31e69cfa4">DBG_OBJ_LEAVE</a>, <a class="el" href="structdw_1_1core_1_1Requisition.html#a8471d49d1dddd6ece5b59d638f692ad1">dw::core::Requisition::descent</a>, <a class="el" href="namespacedw_1_1core.html#a3592a7c3af5fbcdd5040d63aae058399">dw::core::splitHeightPreserveDescent()</a>, and <a class="el" href="structdw_1_1core_1_1Requisition.html#ae7679b7938c08d836c398edd9823667a">dw::core::Requisition::width</a>.</p>
</div>
</div>
<a class="anchor" id="a7dd4facfe080a1507657442ee3280ce5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool dw::Table::usesAvailWidth </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Must be implemengted by a method returning true, when <a class="el" href="classdw_1_1core_1_1Widget.html#a3ba42e59fe74c112208193f7c2d7ee55">getAvailWidth()</a> is called. </p>
<p>Reimplemented from <a class="el" href="classdw_1_1core_1_1Widget.html#a1e281906e54633462b1c3d61a4f5d71b">dw::core::Widget</a>.</p>
</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="ab0165532e287d023758cc64c24e40fb7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">friend class <a class="el" href="classdw_1_1Table_1_1TableIterator.html">TableIterator</a></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">friend</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classdw_1_1Table_1_1TableIterator.html#aba0cd13f918ff2bd0aad2c01ef0b22bc">dw::Table::TableIterator::clone()</a>.</p>
</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a class="anchor" id="af7a2279449b6964b3c27cef827ad47b0"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool dw::Table::adjustTableMinWidth = true</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classdw_1_1Table.html#a61c6915a97ca6ae8b4436adfabe1c7cc">getAdjustMinWidth()</a>, <a class="el" href="classdw_1_1Table.html#ac8ee5cd231d2d3467e7195cb7828a961">getAdjustTableMinWidth()</a>, and <a class="el" href="classdw_1_1Table.html#a1bed5f2e41e7a7e6c8ba8cec5e93c997">setAdjustTableMinWidth()</a>.</p>
</div>
</div>
<a class="anchor" id="a3cffbdc94d68e622c122677fd76856cd"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><int>* dw::Table::baseline</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="aa71bc9f95a4e283f039ffe3801fb488c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><<a class="el" href="structdw_1_1Table_1_1Child.html">Child</a>*>* dw::Table::children</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Referenced by <a class="el" href="classdw_1_1Table_1_1TableIterator.html#ad2f030bf6536e84dd66ede09b495aa9d">dw::Table::TableIterator::getContentInFlow()</a>.</p>
</div>
</div>
<a class="anchor" id="af80da934c916aaa03d2a5a47cd125c13"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::CLASS_ID = -1</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a9e7fe7db5f7853aa6c374190af778b32"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><<a class="el" href="structdw_1_1core_1_1Extremes.html">core::Extremes</a>>* dw::Table::colExtremes</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>The extremes of all columns. </p>
</div>
</div>
<a class="anchor" id="ad13dbff5ac66454cecfc3b7d2cbc7ee5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><bool>* dw::Table::colWidthPercentage</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Wether the column itself (in the future?) or at least one cell in this column or spanning over this column has CSS 'width' specified <em>as percentage value</em>. </p>
<p>Filled by <a class="el" href="classdw_1_1Table.html#a3fa26238318cd982fe7ea2ea5971d8aa" title="Fills dw::Table::colExtremes in all cases. ">forceCalcColumnExtremes()</a>, since it is needed to calculate the column widths. </p>
</div>
</div>
<a class="anchor" id="a438af6d107ce8a0b8709cab72a4df38c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><int>* dw::Table::colWidths</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>The widths of all columns. </p>
</div>
</div>
<a class="anchor" id="af581fc87fcb0f8eb5c377ed5bf922ba2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><bool>* dw::Table::colWidthSpecified</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Wether the column itself (in the future?) or at least one cell in this column or spanning over this column has CSS 'width' specified. </p>
<p>Filled by <a class="el" href="classdw_1_1Table.html#a3fa26238318cd982fe7ea2ea5971d8aa" title="Fills dw::Table::colExtremes in all cases. ">forceCalcColumnExtremes()</a>, since it is needed to calculate the column widths. </p>
</div>
</div>
<a class="anchor" id="ab78d08c9a462589c442f139468b41ed7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool dw::Table::colWidthsUpToDateWidthColExtremes</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ac9d685829c34a1038005b533ef1da00d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><int>* dw::Table::cumHeight</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Row cumulative height array: cumHeight->size() is numRows + 1, cumHeight->get(0) is 0, cumHeight->get(numRows) is the total table height. </p>
</div>
</div>
<a class="anchor" id="aa35b947f88fd454430ebe9cd5ecc9645"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::curCol</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a72fee2a79ec5b87e27bc5b55905ddbda"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::curRow</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ab8faad96d6e4bf0ab4c698e38d963b23"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool dw::Table::limitTextWidth</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a607ebf37f96c0b6469195776581215b3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::numCols</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="abf3950d292d248cb6d0835347b02405b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::numColWidthPercentage</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="af0cf2c317c9b9f62a16fe68729e7fdc5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::numColWidthSpecified</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a9373e5cc88111b085ece895e6db06da7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::numRows</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a6196579a76b5d384f62d647abb933e3a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::redrawX</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="affd67258beff190bb0ae5d78bd2d2a4e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int dw::Table::redrawY</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ae471b755388e739e3f1fb766606d8bdc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">bool dw::Table::rowClosed</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a9f55a68caaa52e19d75ecc01814d3580"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><int>* dw::Table::rowSpanCells</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>If a Cell has rowspan > 1, it goes into this array </p>
</div>
</div>
<a class="anchor" id="a2b8e380ca415bb751ce96232409f9ef9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><<a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a>*>* dw::Table::rowStyle</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<hr/>The documentation for this class was generated from the following files:<ul>
<li>dw/<a class="el" href="table_8hh_source.html">table.hh</a></li>
<li>dw/<a class="el" href="table_8cc.html">table.cc</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Sat May 28 2016 11:47:44 for Dillo by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.8
</small></address>
</body>
</html>
|