summaryrefslogtreecommitdiff
path: root/old/dw/html/classdw_1_1ListItem.html
blob: 3e1d00be6ad4b71e4f5263a039aa841a7dd4da48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
<!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::ListItem 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&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;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&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;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_1ListItem.html">ListItem</a></li>  </ul>
</div>
</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="classdw_1_1ListItem.html#pub-methods">Public Member Functions</a> &#124;
<a href="classdw_1_1ListItem.html#pub-static-attribs">Static Public Attributes</a> &#124;
<a href="classdw_1_1ListItem.html#pro-methods">Protected Member Functions</a> &#124;
<a href="classdw_1_1ListItem-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">dw::ListItem Class Reference</div>  </div>
</div><!--header-->
<div class="contents">

<p><code>#include &lt;<a class="el" href="listitem_8hh_source.html">listitem.hh</a>&gt;</code></p>
<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:a2953463aee2775e189b4a18da944219c"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1ListItem.html#a2953463aee2775e189b4a18da944219c">ListItem</a> (<a class="el" href="classdw_1_1ListItem.html">ListItem</a> *ref, bool <a class="el" href="classdw_1_1Textblock.html#a6d3b59ab5aad172d0dcfc7fa52473da5">limitTextWidth</a>)</td></tr>
<tr class="separator:a2953463aee2775e189b4a18da944219c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae203022a1296ccd7bc3e7577a931b3c7"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1ListItem.html#ae203022a1296ccd7bc3e7577a931b3c7">~ListItem</a> ()</td></tr>
<tr class="separator:ae203022a1296ccd7bc3e7577a931b3c7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a10aa450e310e21538a5f51ed099a6f53"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1ListItem.html#a10aa450e310e21538a5f51ed099a6f53">usesMaxGeneratorWidth</a> ()</td></tr>
<tr class="separator:a10aa450e310e21538a5f51ed099a6f53"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7572711dc534443ac73a0850d035a847"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1ListItem.html#a7572711dc534443ac73a0850d035a847">initWithWidget</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">core::Widget</a> *widget, <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:a7572711dc534443ac73a0850d035a847"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a48d82281cdf2901d036b01df648576"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1ListItem.html#a6a48d82281cdf2901d036b01df648576">initWithText</a> (const char *text, <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:a6a48d82281cdf2901d036b01df648576"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classdw_1_1AlignedTextblock"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classdw_1_1AlignedTextblock')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classdw_1_1AlignedTextblock.html">dw::AlignedTextblock</a></td></tr>
<tr class="memitem:abad5fec2a1a22e277f41b659fa1577ea inherit pub_methods_classdw_1_1AlignedTextblock"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1AlignedTextblock.html#abad5fec2a1a22e277f41b659fa1577ea">~AlignedTextblock</a> ()</td></tr>
<tr class="separator:abad5fec2a1a22e277f41b659fa1577ea inherit pub_methods_classdw_1_1AlignedTextblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classdw_1_1Textblock"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classdw_1_1Textblock')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classdw_1_1Textblock.html">dw::Textblock</a></td></tr>
<tr class="memitem:ad20dfb44b0d7ed0cc5e529da0d653a6e inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ad20dfb44b0d7ed0cc5e529da0d653a6e">Textblock</a> (bool <a class="el" href="classdw_1_1Textblock.html#a6d3b59ab5aad172d0dcfc7fa52473da5">limitTextWidth</a>)</td></tr>
<tr class="separator:ad20dfb44b0d7ed0cc5e529da0d653a6e inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a18d1720204f7039e80b18ef8872bc8b6 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a18d1720204f7039e80b18ef8872bc8b6">~Textblock</a> ()</td></tr>
<tr class="separator:a18d1720204f7039e80b18ef8872bc8b6 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4f5097172ef2e140253e418df3ffb1b5 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Iterator.html">core::Iterator</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a4f5097172ef2e140253e418df3ffb1b5">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:a4f5097172ef2e140253e418df3ffb1b5 inherit pub_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return an iterator for this widget.  <a href="classdw_1_1ListItem.html#a4f5097172ef2e140253e418df3ffb1b5">More...</a><br /></td></tr>
<tr class="separator:a4f5097172ef2e140253e418df3ffb1b5 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afc99db3161e3d97ba05c9334a3ae4a13 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#afc99db3161e3d97ba05c9334a3ae4a13">flush</a> ()</td></tr>
<tr class="separator:afc99db3161e3d97ba05c9334a3ae4a13 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7a4c5d306e62cd51e2279bcb652340ad inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a7a4c5d306e62cd51e2279bcb652340ad">addText</a> (const char *text, size_t len, <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:a7a4c5d306e62cd51e2279bcb652340ad inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2bf1613274b1dc232dd5f90f48246249 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a2bf1613274b1dc232dd5f90f48246249">addText</a> (const char *text, <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:a2bf1613274b1dc232dd5f90f48246249 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1bebe0d704f071b07066bfb671cede7c inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a1bebe0d704f071b07066bfb671cede7c">addWidget</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">core::Widget</a> *widget, <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:a1bebe0d704f071b07066bfb671cede7c inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a773ae4c773fee751945c78c67e10caac inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a773ae4c773fee751945c78c67e10caac">addAnchor</a> (const char *name, <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:a773ae4c773fee751945c78c67e10caac inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1f2b341f34d9570c3082dc743a9c9441 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a1f2b341f34d9570c3082dc743a9c9441">addSpace</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:a1f2b341f34d9570c3082dc743a9c9441 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a83a3886d213c3fc2c441fa47b2d557e2 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a83a3886d213c3fc2c441fa47b2d557e2">addBreakOption</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>, bool forceBreak)</td></tr>
<tr class="separator:a83a3886d213c3fc2c441fa47b2d557e2 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab5fcd55f8a679c898f77b1cb864d8889 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ab5fcd55f8a679c898f77b1cb864d8889">addParbreak</a> (int space, <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:ab5fcd55f8a679c898f77b1cb864d8889 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad0d6e9ccbf1cba1ed1a70f1e33b31450 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ad0d6e9ccbf1cba1ed1a70f1e33b31450">addLinebreak</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:ad0d6e9ccbf1cba1ed1a70f1e33b31450 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3a2d6163422cd10bb734f8502111b22a inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a3a2d6163422cd10bb734f8502111b22a">handOverBreak</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:a3a2d6163422cd10bb734f8502111b22a inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a301ad09cd857e6d2d92102043e3b636e inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a301ad09cd857e6d2d92102043e3b636e">changeLinkColor</a> (int link, int newColor)</td></tr>
<tr class="separator:a301ad09cd857e6d2d92102043e3b636e inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1749ddf22b18673aac0fcf142150233f inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a1749ddf22b18673aac0fcf142150233f">changeWordStyle</a> (int from, int to, <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>, bool includeFirstSpace, bool includeLastSpace)</td></tr>
<tr class="separator:a1749ddf22b18673aac0fcf142150233f inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6f8d6917142a188fe6709e29dd337e3 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ac6f8d6917142a188fe6709e29dd337e3">updateReference</a> (int ref)</td></tr>
<tr class="separator:ac6f8d6917142a188fe6709e29dd337e3 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a37718a855dcce3359e2477ac607c52e5 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a37718a855dcce3359e2477ac607c52e5">widgetRefSizeChanged</a> (int externalIndex)</td></tr>
<tr class="separator:a37718a855dcce3359e2477ac607c52e5 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa2a7bbade38abeaccc52b896e4e3fdd6 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aa2a7bbade38abeaccc52b896e4e3fdd6">clearPositionChanged</a> ()</td></tr>
<tr class="separator:aa2a7bbade38abeaccc52b896e4e3fdd6 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a42245faae856913ccd900fabb007ae71 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a42245faae856913ccd900fabb007ae71">oofSizeChanged</a> (bool <a class="el" href="classdw_1_1core_1_1Widget.html#a79a7047c906d793d77412286fbfc4ea2">extremesChanged</a>)</td></tr>
<tr class="separator:a42245faae856913ccd900fabb007ae71 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a43e4f353a009191e1501a65812732416 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a43e4f353a009191e1501a65812732416">getGeneratorX</a> (int oofmIndex)</td></tr>
<tr class="separator:a43e4f353a009191e1501a65812732416 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7bbe2429c691a72acd47dcedbbe35437 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a7bbe2429c691a72acd47dcedbbe35437">getGeneratorY</a> (int oofmIndex)</td></tr>
<tr class="separator:a7bbe2429c691a72acd47dcedbbe35437 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a83a759a6afd21ff78713f9c7ac5fb81f inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a83a759a6afd21ff78713f9c7ac5fb81f">getGeneratorWidth</a> (int callerX, int callerWidth)</td></tr>
<tr class="separator:a83a759a6afd21ff78713f9c7ac5fb81f inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a86984c5c66b3d7b4b19319edc89838f4 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a86984c5c66b3d7b4b19319edc89838f4">getMaxGeneratorWidth</a> ()</td></tr>
<tr class="separator:a86984c5c66b3d7b4b19319edc89838f4 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac733cfbb097b675db60af79abdea2953 inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ac733cfbb097b675db60af79abdea2953">usesMaxGeneratorWidth</a> ()</td></tr>
<tr class="separator:ac733cfbb097b675db60af79abdea2953 inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abfc75856dd052533d85e6f5dc646affe inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#abfc75856dd052533d85e6f5dc646affe">isPossibleOOFContainer</a> (int oofmIndex)</td></tr>
<tr class="separator:abfc75856dd052533d85e6f5dc646affe inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af9e3c5de9ee12c3fe5f33a4ec4a40b6c inherit pub_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#af9e3c5de9ee12c3fe5f33a4ec4a40b6c">isPossibleOOFContainerParent</a> (int oofmIndex)</td></tr>
<tr class="separator:af9e3c5de9ee12c3fe5f33a4ec4a40b6c inherit pub_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classdw_1_1RegardingBorder"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classdw_1_1RegardingBorder')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classdw_1_1RegardingBorder.html">dw::RegardingBorder</a></td></tr>
<tr class="memitem:a2393c4edadda6be693e2418a4393189f inherit pub_methods_classdw_1_1RegardingBorder"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1RegardingBorder.html#a2393c4edadda6be693e2418a4393189f">RegardingBorder</a> ()</td></tr>
<tr class="separator:a2393c4edadda6be693e2418a4393189f inherit pub_methods_classdw_1_1RegardingBorder"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae7ad99135edd11f627cbd9d8d21cca6e inherit pub_methods_classdw_1_1RegardingBorder"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1RegardingBorder.html#ae7ad99135edd11f627cbd9d8d21cca6e">~RegardingBorder</a> ()</td></tr>
<tr class="separator:ae7ad99135edd11f627cbd9d8d21cca6e inherit pub_methods_classdw_1_1RegardingBorder"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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">&#160;</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">&#160;</td></tr>
<tr class="memitem:a4a347b60848bb37e677102977726a671 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">&#160;</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">&#160;</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> *&#160;</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">&#160;</td></tr>
<tr class="memitem:a71c15f48f27369ba42e21aa1ae738e9f inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a4c2ad6fb6d90ab82e97f17ea0e7317b1 inherit pub_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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="-"/>&#160;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&#160;</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">&#160;</td></tr>
<tr class="memitem:a4c6b915525836850ed70736e394acc2a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">&#160;</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">&#160;</td></tr>
<tr class="memitem:afa654cec6369417221663a2583836496 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">&#160;</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">&#160;</td></tr>
<tr class="memitem:a4d2799baf192d7e943c2a16eb73b6363 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a7647dfa4bb2a7881a0f1b17eef93f19b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a9b617e360e0291f339c73262e0d72594 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a431e0fd9f74ecc6d7fe3cc68859e3887 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:ae51a531d6c733be7bd48769260f4297a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a79a7047c906d793d77412286fbfc4ea2 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:acbf33664202d934d9fd5ac32fa9472d8 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a8fc36b30df0304fca9d19979acaeca0e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a21eb3805f83ec5baa8b9bab98e5e99f8 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a058ed5676673ab8784438e7a454f82d9 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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> *&#160;</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">&#160;</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> *&#160;</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">&#160;</td></tr>
<tr class="memitem:a70dd28fbfcf2969d13d67b87b554d2bd inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a6daed0c096729b81a627d3ebba70db4d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a95e2e4e767fbe6928597949c49bfbfb3 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a39b952b02cd2700642e1912f5a94d077 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a17d68170142e79ad0375f32ae6a8ac31 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a9e95222789c8f8633258fe3b325c182a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:ad01cea0a34526be539c41ce8457a2dae inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a34dcfd744c6eec49fa87baaa8591896e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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_1ListItem.html#a34dcfd744c6eec49fa87baaa8591896e">More...</a><br /></td></tr>
<tr class="separator:a34dcfd744c6eec49fa87baaa8591896e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aec23092b0cfe5624b9751a59671fe251 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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_1ListItem.html#aec23092b0cfe5624b9751a59671fe251">More...</a><br /></td></tr>
<tr class="separator:aec23092b0cfe5624b9751a59671fe251 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0fa3284a21b20bd79f7de13bc0aca5e4 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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_1ListItem.html#a0fa3284a21b20bd79f7de13bc0aca5e4">More...</a><br /></td></tr>
<tr class="separator:a0fa3284a21b20bd79f7de13bc0aca5e4 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a461b61bd42a01e41ccf258db8673d82f inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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_1ListItem.html#a461b61bd42a01e41ccf258db8673d82f">More...</a><br /></td></tr>
<tr class="separator:a461b61bd42a01e41ccf258db8673d82f inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3ba42e59fe74c112208193f7c2d7ee55 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:ab98b467cc0d194a6a65fe6f8fe9716b7 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a4846c32c57b66d2e2cf6c93519852a7a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a4846c32c57b66d2e2cf6c93519852a7a">getAdjustMinWidth</a> ()</td></tr>
<tr class="separator:a4846c32c57b66d2e2cf6c93519852a7a inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a438574f0b74a6f43b6001995a9a466ef inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:ae3ecd16a384316494e55e1d5e4874ad9 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a62d6ca0e43fb8b6f8b59f0af80b42784 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a3f882323af3ca56c77e7da8ca5551c45 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:aa48c1ee918f3fa5cb105d7610add95aa inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:adcecdbeccbc5e4b23f99372cba241222 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#adcecdbeccbc5e4b23f99372cba241222">applyPerWidth</a> (int containerWidth, <a class="el" href="namespacedw_1_1core_1_1style.html#a65610d57c89e5bee02e4e539fdc989de">style::Length</a> perWidth)</td></tr>
<tr class="separator:adcecdbeccbc5e4b23f99372cba241222 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa682f1a87efd93050bc28be57403ddae inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#aa682f1a87efd93050bc28be57403ddae">applyPerHeight</a> (int containerHeight, <a class="el" href="namespacedw_1_1core_1_1style.html#a65610d57c89e5bee02e4e539fdc989de">style::Length</a> perHeight)</td></tr>
<tr class="separator:aa682f1a87efd93050bc28be57403ddae inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8587b68301900aecf91b6591aaab8eda inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</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_1ListItem.html#a8587b68301900aecf91b6591aaab8eda">More...</a><br /></td></tr>
<tr class="separator:a8587b68301900aecf91b6591aaab8eda inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a913acf4555ef2aed132a76b01238a742 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</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">&#160;</td></tr>
<tr class="memitem:abcdd906439e6c2627372f8438e055480 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a1e7825cca2c7caa025f33a80fc4aa5ed inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</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_1ListItem.html#a1e7825cca2c7caa025f33a80fc4aa5ed">More...</a><br /></td></tr>
<tr class="separator:a1e7825cca2c7caa025f33a80fc4aa5ed inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaebe553117db0b7ba2cb0243d06311df inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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> *&#160;</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">&#160;</td></tr>
<tr class="memitem:ac44deda1bda16a6e3193e5bbe119c683 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a51a90035fd722667d931bf18909aa847 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a122d13ab14c734fc528c62038c387c1d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a3f5d10ed0a3e0cbd1b156dceac75cb68 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:aaab70d1e0c51dbca2f677a3f80a7b0ac inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a04ccf6979d3289a6ba8298ce5a1f570b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</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">&#160;</td><td class="mdescRight">Change the style of a widget.  <a href="classdw_1_1ListItem.html#a04ccf6979d3289a6ba8298ce5a1f570b">More...</a><br /></td></tr>
<tr class="separator:a04ccf6979d3289a6ba8298ce5a1f570b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad19935d3edd15314426251e06f5daf0e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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_1ListItem.html#ad19935d3edd15314426251e06f5daf0e">More...</a><br /></td></tr>
<tr class="separator:ad19935d3edd15314426251e06f5daf0e inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</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> *&#160;</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">&#160;</td><td class="mdescRight">Get the actual background of a widget.  <a href="classdw_1_1ListItem.html#aca7bc16d8f4debdaddfc2bf96922538f">More...</a><br /></td></tr>
<tr class="separator:aca7bc16d8f4debdaddfc2bf96922538f inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aef48f52db329c961daed586d291461d5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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_1ListItem.html#aef48f52db329c961daed586d291461d5">More...</a><br /></td></tr>
<tr class="separator:aef48f52db329c961daed586d291461d5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4097299c4294edf611c76259df7fa035 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td><td class="mdescRight">Draw borders and background of a widget.  <a href="classdw_1_1ListItem.html#a4097299c4294edf611c76259df7fa035">More...</a><br /></td></tr>
<tr class="separator:a4097299c4294edf611c76259df7fa035 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a45c5a9db0d5c14cffb2f733a262a06cc inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a2eb6b505d88f2c77b98c6c686aedc906 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a70d34f33dbff64e3199b013269461be9 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</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> *&#160;</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">&#160;</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> *&#160;</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">&#160;</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> *&#160;</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">&#160;</td><td class="mdescRight">Get the widget at the root of the tree, this widget is part from.  <a href="classdw_1_1ListItem.html#ac8f1ca49de779217bf12a03ae657ef26">More...</a><br /></td></tr>
<tr class="separator:ac8f1ca49de779217bf12a03ae657ef26 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4bb3a16ac278ca8ba50ae94d7c568f0b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td><td class="mdescRight">Get the level of the widget within the tree.  <a href="classdw_1_1ListItem.html#a4bb3a16ac278ca8ba50ae94d7c568f0b">More...</a><br /></td></tr>
<tr class="separator:a4bb3a16ac278ca8ba50ae94d7c568f0b inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abdb9da7f91398140aced170d6e760312 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td><td class="mdescRight">Get the level of the widget within the tree, regarting the generators, not the parents.  <a href="classdw_1_1ListItem.html#abdb9da7f91398140aced170d6e760312">More...</a><br /></td></tr>
<tr class="separator:abdb9da7f91398140aced170d6e760312 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</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> *&#160;</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">&#160;</td><td class="mdescRight">Get the widget with the highest level, which is a direct ancestor of widget1 and widget2.  <a href="classdw_1_1ListItem.html#a7310d9275c81fc669f21ba4f26081c31">More...</a><br /></td></tr>
<tr class="separator:a7310d9275c81fc669f21ba4f26081c31 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</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> *&#160;</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">&#160;</td></tr>
<tr class="memitem:a15cfabfaaabbd95e4ef327477cf43578 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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> *&#160;</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">&#160;</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> *&#160;</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">&#160;</td></tr>
<tr class="memitem:a9d35ab9f8422a4d63978955ae0e710d7 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:ae464dfc3063ce882f4e5e5cea68c0739 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:acd9c3aefebbcfa00b53a73c6a8af3216 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:ae5f5dc5c77540895ac665d383c9edfe5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td><td class="mdescRight">Return the padding area (content plus padding).  <a href="classdw_1_1ListItem.html#ae5f5dc5c77540895ac665d383c9edfe5">More...</a><br /></td></tr>
<tr class="separator:ae5f5dc5c77540895ac665d383c9edfe5 inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4e271977073883800712027a93f08e1d inherit pub_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</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">&#160;</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="-"/>&#160;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">&#160;</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">&#160;</td></tr>
<tr class="memitem:aec2a59a4bf234606c2eb5231d1f048d5 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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_1ListItem.html#aec2a59a4bf234606c2eb5231d1f048d5">More...</a><br /></td></tr>
<tr class="separator:aec2a59a4bf234606c2eb5231d1f048d5 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a491c1367ff6783a0647522f0a68ae054 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td><td class="mdescRight">Returns the class identifier.  <a href="classdw_1_1ListItem.html#a491c1367ff6783a0647522f0a68ae054">More...</a><br /></td></tr>
<tr class="separator:a491c1367ff6783a0647522f0a68ae054 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e862eb04821e4bbf0cee0d5d58b7752 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memItemLeft" align="right" valign="top">const char *&#160;</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">&#160;</td><td class="mdescRight">Return the name, under which the class of this object was registered.  <a href="classdw_1_1ListItem.html#a6e862eb04821e4bbf0cee0d5d58b7752">More...</a><br /></td></tr>
<tr class="separator:a6e862eb04821e4bbf0cee0d5d58b7752 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c838c41d8044c9eeffa790592f85ce9 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</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_1ListItem.html#a4c838c41d8044c9eeffa790592f85ce9">More...</a><br /></td></tr>
<tr class="separator:a4c838c41d8044c9eeffa790592f85ce9 inherit pub_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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&#160;</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">&#160;</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_1ListItem.html#a9fef8a29a41124cb0370f4dc0410fb5b">More...</a><br /></td></tr>
<tr class="separator:a9fef8a29a41124cb0370f4dc0410fb5b inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af4bc95cee49a71d32c7b24505ccc9397 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</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">&#160;</td><td class="mdescRight">Returns, whether two objects are equal.  <a href="classdw_1_1ListItem.html#af4bc95cee49a71d32c7b24505ccc9397">More...</a><br /></td></tr>
<tr class="separator:af4bc95cee49a71d32c7b24505ccc9397 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad81c4136418c9b44253568f9ae069006 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</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">&#160;</td><td class="mdescRight">Return a hash value for the object.  <a href="classdw_1_1ListItem.html#ad81c4136418c9b44253568f9ae069006">More...</a><br /></td></tr>
<tr class="separator:ad81c4136418c9b44253568f9ae069006 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2">&#160;</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> *&#160;</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">&#160;</td><td class="mdescRight">Return an exact copy of the object.  <a href="classdw_1_1ListItem.html#a7ab36efad0df9a036b9252a9564a8cd4">More...</a><br /></td></tr>
<tr class="separator:a7ab36efad0df9a036b9252a9564a8cd4 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad7aeadc7934293197110d550abda81ff inherit pub_methods_classlout_1_1object_1_1Object"><td class="memItemLeft" align="right" valign="top">const char *&#160;</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">&#160;</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_1ListItem.html#ad7aeadc7934293197110d550abda81ff">More...</a><br /></td></tr>
<tr class="separator:ad7aeadc7934293197110d550abda81ff inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b53443ca61b25e794157792f5d3a956 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual size_t&#160;</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">&#160;</td><td class="mdescRight">Return the number of bytes, this object totally uses.  <a href="classdw_1_1ListItem.html#a8b53443ca61b25e794157792f5d3a956">More...</a><br /></td></tr>
<tr class="separator:a8b53443ca61b25e794157792f5d3a956 inherit pub_methods_classlout_1_1object_1_1Object"><td class="memSeparator" colspan="2">&#160;</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:a9b4f191c19e17d81e48b4eb280a66aa7"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1ListItem.html#a9b4f191c19e17d81e48b4eb280a66aa7">CLASS_ID</a> = -1</td></tr>
<tr class="separator:a9b4f191c19e17d81e48b4eb280a66aa7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_attribs_classdw_1_1AlignedTextblock"><td colspan="2" onclick="javascript:toggleInherit('pub_static_attribs_classdw_1_1AlignedTextblock')"><img src="closed.png" alt="-"/>&#160;Static Public Attributes inherited from <a class="el" href="classdw_1_1AlignedTextblock.html">dw::AlignedTextblock</a></td></tr>
<tr class="memitem:ade827a8d48b7b4878a69ca7eb88006d7 inherit pub_static_attribs_classdw_1_1AlignedTextblock"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1AlignedTextblock.html#ade827a8d48b7b4878a69ca7eb88006d7">CLASS_ID</a> = -1</td></tr>
<tr class="separator:ade827a8d48b7b4878a69ca7eb88006d7 inherit pub_static_attribs_classdw_1_1AlignedTextblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_attribs_classdw_1_1Textblock"><td colspan="2" onclick="javascript:toggleInherit('pub_static_attribs_classdw_1_1Textblock')"><img src="closed.png" alt="-"/>&#160;Static Public Attributes inherited from <a class="el" href="classdw_1_1Textblock.html">dw::Textblock</a></td></tr>
<tr class="memitem:abd63ce25e16de6387fb0df3704215c59 inherit pub_static_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#abd63ce25e16de6387fb0df3704215c59">CLASS_ID</a> = -1</td></tr>
<tr class="separator:abd63ce25e16de6387fb0df3704215c59 inherit pub_static_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_attribs_classdw_1_1RegardingBorder"><td colspan="2" onclick="javascript:toggleInherit('pub_static_attribs_classdw_1_1RegardingBorder')"><img src="closed.png" alt="-"/>&#160;Static Public Attributes inherited from <a class="el" href="classdw_1_1RegardingBorder.html">dw::RegardingBorder</a></td></tr>
<tr class="memitem:a21eb44374f7ce663588a1da40968b16f inherit pub_static_attribs_classdw_1_1RegardingBorder"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1RegardingBorder.html#a21eb44374f7ce663588a1da40968b16f">CLASS_ID</a> = -1</td></tr>
<tr class="separator:a21eb44374f7ce663588a1da40968b16f inherit pub_static_attribs_classdw_1_1RegardingBorder"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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&#160;</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">&#160;</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="-"/>&#160;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&#160;</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">&#160;</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:aa1d415d276652c958e096a013c375530"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1ListItem.html#aa1d415d276652c958e096a013c375530">getValue</a> ()</td></tr>
<tr class="separator:aa1d415d276652c958e096a013c375530"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa88595b56abce37829f502b97efa4a53"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1ListItem.html#aa88595b56abce37829f502b97efa4a53">setMaxValue</a> (int maxValue, int value)</td></tr>
<tr class="separator:aa88595b56abce37829f502b97efa4a53"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classdw_1_1AlignedTextblock"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classdw_1_1AlignedTextblock')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classdw_1_1AlignedTextblock.html">dw::AlignedTextblock</a></td></tr>
<tr class="memitem:aaeb8751964017240feb51d17157a11e2 inherit pro_methods_classdw_1_1AlignedTextblock"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1AlignedTextblock.html#aaeb8751964017240feb51d17157a11e2">AlignedTextblock</a> (bool <a class="el" href="classdw_1_1Textblock.html#a6d3b59ab5aad172d0dcfc7fa52473da5">limitTextWidth</a>)</td></tr>
<tr class="separator:aaeb8751964017240feb51d17157a11e2 inherit pro_methods_classdw_1_1AlignedTextblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac1ba58faafb6035841775af22999a7b2 inherit pro_methods_classdw_1_1AlignedTextblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1AlignedTextblock.html#ac1ba58faafb6035841775af22999a7b2">setRefTextblock</a> (<a class="el" href="classdw_1_1AlignedTextblock.html">AlignedTextblock</a> *ref)</td></tr>
<tr class="separator:ac1ba58faafb6035841775af22999a7b2 inherit pro_methods_classdw_1_1AlignedTextblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af9fb17268db33cad2e11924d3169fd9a inherit pro_methods_classdw_1_1AlignedTextblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1AlignedTextblock.html#af9fb17268db33cad2e11924d3169fd9a">updateValue</a> ()</td></tr>
<tr class="separator:af9fb17268db33cad2e11924d3169fd9a inherit pro_methods_classdw_1_1AlignedTextblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classdw_1_1Textblock"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classdw_1_1Textblock')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classdw_1_1Textblock.html">dw::Textblock</a></td></tr>
<tr class="memitem:abd74776bf3f79aa996b3fd0f19d28107 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#abd74776bf3f79aa996b3fd0f19d28107">queueDrawRange</a> (int index1, int index2)</td></tr>
<tr class="separator:abd74776bf3f79aa996b3fd0f19d28107 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a86355ceefff0cbf1f54353b76b777637 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a86355ceefff0cbf1f54353b76b777637">calcVerticalBorder</a> (int widgetPadding, int widgetBorder, int widgetMargin, int lineBorderTotal, int lineMarginTotal)</td></tr>
<tr class="separator:a86355ceefff0cbf1f54353b76b777637 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1c19143fa2811bf83060039f2b051d8e inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a1c19143fa2811bf83060039f2b051d8e">getWordExtremes</a> (<a class="el" href="structdw_1_1Textblock_1_1Word.html">Word</a> *word, <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:a1c19143fa2811bf83060039f2b051d8e inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aef250609ccec602b547de8eec1c5f9ab inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aef250609ccec602b547de8eec1c5f9ab">justifyLine</a> (<a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *line, int diff)</td></tr>
<tr class="separator:aef250609ccec602b547de8eec1c5f9ab inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3bc7064376bcd978bd6f02f66ba442ae inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a3bc7064376bcd978bd6f02f66ba442ae">addLine</a> (int firstWord, int lastWord, int newLastOofPos, bool temporary, int minHeight)</td></tr>
<tr class="separator:a3bc7064376bcd978bd6f02f66ba442ae inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4bc93c542adc7cd069dadeb4a121ccf3 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a4bc93c542adc7cd069dadeb4a121ccf3">rewrap</a> ()</td></tr>
<tr class="separator:a4bc93c542adc7cd069dadeb4a121ccf3 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4815bc0afd7d2b9a8981af41d11e6bd4 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a4815bc0afd7d2b9a8981af41d11e6bd4">fillParagraphs</a> ()</td></tr>
<tr class="separator:a4815bc0afd7d2b9a8981af41d11e6bd4 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aabf40f94e9ef9fb968ce75198497c0aa inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aabf40f94e9ef9fb968ce75198497c0aa">initNewLine</a> ()</td></tr>
<tr class="separator:aabf40f94e9ef9fb968ce75198497c0aa inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a49145c6ec66eadff557849f6fc3458f3 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a49145c6ec66eadff557849f6fc3458f3">calcBorders</a> (int lastOofRef, int height)</td></tr>
<tr class="separator:a49145c6ec66eadff557849f6fc3458f3 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c35a8ce0013873f50140813f87961a6 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a4c35a8ce0013873f50140813f87961a6">showMissingLines</a> ()</td></tr>
<tr class="separator:a4c35a8ce0013873f50140813f87961a6 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a11fae0856db072b01557bcd0a8e55d5d inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a11fae0856db072b01557bcd0a8e55d5d">removeTemporaryLines</a> ()</td></tr>
<tr class="separator:a11fae0856db072b01557bcd0a8e55d5d inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa5ca9d534af22a8673505c37a9fe95db inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aa5ca9d534af22a8673505c37a9fe95db">decorateText</a> (<a class="el" href="classdw_1_1core_1_1View.html">core::View</a> *view, <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>, <a class="el" href="classdw_1_1core_1_1style_1_1Color.html#adbb8bb94481cdf65325430d8cf1b9110">core::style::Color::Shading</a> shading, int x, int yBase, int width)</td></tr>
<tr class="separator:aa5ca9d534af22a8673505c37a9fe95db inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a82049dca2cee115f53c6088c4047eb1a inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a82049dca2cee115f53c6088c4047eb1a">drawText</a> (<a class="el" href="classdw_1_1core_1_1View.html">core::View</a> *view, <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>, <a class="el" href="classdw_1_1core_1_1style_1_1Color.html#adbb8bb94481cdf65325430d8cf1b9110">core::style::Color::Shading</a> shading, int x, int y, const char *text, int start, int len, bool isStart, bool isEnd)</td></tr>
<tr class="separator:a82049dca2cee115f53c6088c4047eb1a inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6065e1e90555dfc5a6572e6145edee3b inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a6065e1e90555dfc5a6572e6145edee3b">drawWord</a> (<a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *line, int wordIndex1, int wordIndex2, <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 xWidget, int yWidgetBase)</td></tr>
<tr class="separator:a6065e1e90555dfc5a6572e6145edee3b inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a057da749819b1b19119ce5fdb6442fac inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a057da749819b1b19119ce5fdb6442fac">drawWord0</a> (int wordIndex1, int wordIndex2, const char *text, int totalWidth, bool drawHyphen, <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>, <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 xWidget, int yWidgetBase)</td></tr>
<tr class="separator:a057da749819b1b19119ce5fdb6442fac inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c03d65e581930675f7bfbfb34dc28fc inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a4c03d65e581930675f7bfbfb34dc28fc">drawSpace</a> (int wordIndex, <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 xWidget, int yWidgetBase)</td></tr>
<tr class="separator:a4c03d65e581930675f7bfbfb34dc28fc inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a036a5c8ae06f025b3448d63e724da9e5 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a036a5c8ae06f025b3448d63e724da9e5">drawLine</a> (<a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *line, <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:a036a5c8ae06f025b3448d63e724da9e5 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:affb83cdbf1294f925c9cdd8b0f7f9f6b inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#affb83cdbf1294f925c9cdd8b0f7f9f6b">findLineIndex</a> (int y)</td></tr>
<tr class="separator:affb83cdbf1294f925c9cdd8b0f7f9f6b inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a50222bd957038107a8f4f957747c138f inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a50222bd957038107a8f4f957747c138f">findLineIndexWhenNotAllocated</a> (int y)</td></tr>
<tr class="separator:a50222bd957038107a8f4f957747c138f inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad2b06865a41a2931a15f0451550ce119 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ad2b06865a41a2931a15f0451550ce119">findLineIndexWhenAllocated</a> (int y)</td></tr>
<tr class="separator:ad2b06865a41a2931a15f0451550ce119 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7ccf7e53458625b9cf891c248fe83f58 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a7ccf7e53458625b9cf891c248fe83f58">findLineIndex</a> (int y, int ascent)</td></tr>
<tr class="separator:a7ccf7e53458625b9cf891c248fe83f58 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa652511175917e0c33afa853234cdce1 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aa652511175917e0c33afa853234cdce1">findLineOfWord</a> (int wordIndex)</td></tr>
<tr class="memdesc:aa652511175917e0c33afa853234cdce1 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find the line of word <em>wordIndex</em>.  <a href="classdw_1_1ListItem.html#aa652511175917e0c33afa853234cdce1">More...</a><br /></td></tr>
<tr class="separator:aa652511175917e0c33afa853234cdce1 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a03deef76dab5ef7777b7766a983fd8a1 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a03deef76dab5ef7777b7766a983fd8a1">findParagraphOfWord</a> (int wordIndex)</td></tr>
<tr class="memdesc:a03deef76dab5ef7777b7766a983fd8a1 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find the paragraph of word <em>wordIndex</em>.  <a href="classdw_1_1ListItem.html#a03deef76dab5ef7777b7766a983fd8a1">More...</a><br /></td></tr>
<tr class="separator:a03deef76dab5ef7777b7766a983fd8a1 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5423c686cb000d17345595de382cc451 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structdw_1_1Textblock_1_1Word.html">Word</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a5423c686cb000d17345595de382cc451">findWord</a> (int x, int y, bool *inSpace)</td></tr>
<tr class="memdesc:a5423c686cb000d17345595de382cc451 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find the index of the word, or -1.  <a href="classdw_1_1ListItem.html#a5423c686cb000d17345595de382cc451">More...</a><br /></td></tr>
<tr class="separator:a5423c686cb000d17345595de382cc451 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae23815961a86b5b7c8870e46e03927c9 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structdw_1_1Textblock_1_1Word.html">Word</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ae23815961a86b5b7c8870e46e03927c9">addWord</a> (int width, int ascent, int descent, short <a class="el" href="classdw_1_1core_1_1Widget.html#a7c351bbee9630b4f8702c1fa7214bc05">flags</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:ae23815961a86b5b7c8870e46e03927c9 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c80b0ca46bd064d717920806850b651 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a0c80b0ca46bd064d717920806850b651">breakAdded</a> ()</td></tr>
<tr class="separator:a0c80b0ca46bd064d717920806850b651 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad4604521172e874cde5550a27ef2e807 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ad4604521172e874cde5550a27ef2e807">initWord</a> (int wordNo)</td></tr>
<tr class="separator:ad4604521172e874cde5550a27ef2e807 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a518b16c181f57c80e3c0dea111a63051 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a518b16c181f57c80e3c0dea111a63051">cleanupWord</a> (int wordNo)</td></tr>
<tr class="separator:a518b16c181f57c80e3c0dea111a63051 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae6f42426fda8fbac2ca06b0c1746ada1 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ae6f42426fda8fbac2ca06b0c1746ada1">removeWordImgRenderer</a> (int wordNo)</td></tr>
<tr class="separator:ae6f42426fda8fbac2ca06b0c1746ada1 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2f7bd9719941237aadea7abf7a199b00 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a2f7bd9719941237aadea7abf7a199b00">setWordImgRenderer</a> (int wordNo)</td></tr>
<tr class="separator:a2f7bd9719941237aadea7abf7a199b00 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad2c48c122b2e3af74823d1b4c57b1b38 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ad2c48c122b2e3af74823d1b4c57b1b38">removeSpaceImgRenderer</a> (int wordNo)</td></tr>
<tr class="separator:ad2c48c122b2e3af74823d1b4c57b1b38 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7542b2980085aa84295e9ce248d02dc3 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a7542b2980085aa84295e9ce248d02dc3">setSpaceImgRenderer</a> (int wordNo)</td></tr>
<tr class="separator:a7542b2980085aa84295e9ce248d02dc3 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac95ea22305a7e29ff5395a25c1865f01 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ac95ea22305a7e29ff5395a25c1865f01">fillWord</a> (int wordNo, int width, int ascent, int descent, short <a class="el" href="classdw_1_1core_1_1Widget.html#a7c351bbee9630b4f8702c1fa7214bc05">flags</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:ac95ea22305a7e29ff5395a25c1865f01 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab61f59176255de007bfff59bdc1822cf inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ab61f59176255de007bfff59bdc1822cf">fillSpace</a> (int wordNo, <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:ab61f59176255de007bfff59bdc1822cf inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5cdf689205e70bded336b13aff25a6f4 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a5cdf689205e70bded336b13aff25a6f4">setBreakOption</a> (<a class="el" href="structdw_1_1Textblock_1_1Word.html">Word</a> *word, <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>, int breakPenalty1, int breakPenalty2, bool forceBreak)</td></tr>
<tr class="separator:a5cdf689205e70bded336b13aff25a6f4 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6500f2155a5d861fcf15563dacfd9d36 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a6500f2155a5d861fcf15563dacfd9d36">isBreakAllowedInWord</a> (<a class="el" href="structdw_1_1Textblock_1_1Word.html">Word</a> *word)</td></tr>
<tr class="separator:a6500f2155a5d861fcf15563dacfd9d36 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9aa581669dd87c5259232ea52c5cf3fb inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a9aa581669dd87c5259232ea52c5cf3fb">isBreakAllowed</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:a9aa581669dd87c5259232ea52c5cf3fb inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aad0a3857ceb65bf0f0f882395d320a38 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aad0a3857ceb65bf0f0f882395d320a38">textWidth</a> (const char *text, int start, int len, <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>, bool isStart, bool isEnd)</td></tr>
<tr class="separator:aad0a3857ceb65bf0f0f882395d320a38 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a597376bfc90c59d516ce549df92c9f20 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a597376bfc90c59d516ce549df92c9f20">calcTextSize</a> (const char *text, size_t len, <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>, <a class="el" href="structdw_1_1core_1_1Requisition.html">core::Requisition</a> *size, bool isStart, bool isEnd)</td></tr>
<tr class="separator:a597376bfc90c59d516ce549df92c9f20 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a40e52e479e2e89ef6217238bf3989210 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a40e52e479e2e89ef6217238bf3989210">calcSizeOfWidgetInFlow</a> (int wordIndex, <a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *widget, <a class="el" href="structdw_1_1core_1_1Requisition.html">core::Requisition</a> *size)</td></tr>
<tr class="separator:a40e52e479e2e89ef6217238bf3989210 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8037ef3bc707ace36e2dfb2bbe2e0308 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a8037ef3bc707ace36e2dfb2bbe2e0308">findSizeRequestReference</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *reference, int *xRef=NULL, int *yRef=NULL)</td></tr>
<tr class="separator:a8037ef3bc707ace36e2dfb2bbe2e0308 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4d681674da31ead54d6de2274c89e06c inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a4d681674da31ead54d6de2274c89e06c">findSizeRequestReference</a> (int oofmIndex, int *xRef=NULL, int *yRef=NULL)</td></tr>
<tr class="separator:a4d681674da31ead54d6de2274c89e06c inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7f450954794ee0f0b8460ed2fc6df91c inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a7f450954794ee0f0b8460ed2fc6df91c">mustBorderBeRegarded</a> (<a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *line)</td></tr>
<tr class="separator:a7f450954794ee0f0b8460ed2fc6df91c inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a593861e2854b84f7f1f90c2ff31be3f8 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a593861e2854b84f7f1f90c2ff31be3f8">mustBorderBeRegarded</a> (int lineNo)</td></tr>
<tr class="separator:a593861e2854b84f7f1f90c2ff31be3f8 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a513d4c82c4d8369a9e9853e7c79d04cf inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a513d4c82c4d8369a9e9853e7c79d04cf">lineYOffsetWidget</a> (<a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *line, <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:a513d4c82c4d8369a9e9853e7c79d04cf inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e3f6d0055d758ce3dfa043ccc466a83 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a6e3f6d0055d758ce3dfa043ccc466a83">lineYOffsetWidget</a> (<a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *line)</td></tr>
<tr class="separator:a6e3f6d0055d758ce3dfa043ccc466a83 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af7ba1444b74a9ea614d4fa9ddbcab825 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#af7ba1444b74a9ea614d4fa9ddbcab825">lineYOffsetCanvas</a> (<a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *line, <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:af7ba1444b74a9ea614d4fa9ddbcab825 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a70da0e400632d0e51ea5421acd14a18c inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a70da0e400632d0e51ea5421acd14a18c">lineYOffsetCanvas</a> (<a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *line)</td></tr>
<tr class="separator:a70da0e400632d0e51ea5421acd14a18c inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2a1127b215ac2c194b5639219a94c3b1 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a2a1127b215ac2c194b5639219a94c3b1">lineYOffsetWidget</a> (int lineIndex)</td></tr>
<tr class="separator:a2a1127b215ac2c194b5639219a94c3b1 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a68b887bae964f6e9a56931a6187c9024 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a68b887bae964f6e9a56931a6187c9024">lineYOffsetWidget</a> (int lineIndex, <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:a68b887bae964f6e9a56931a6187c9024 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6254c976d9e2cbda6ab63b1e4f2cccdf inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a6254c976d9e2cbda6ab63b1e4f2cccdf">lineYOffsetCanvas</a> (int lineIndex)</td></tr>
<tr class="separator:a6254c976d9e2cbda6ab63b1e4f2cccdf inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acbac6847f806a5899e1964a5588a1152 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#acbac6847f806a5899e1964a5588a1152">calcPenaltyIndexForNewLine</a> ()</td></tr>
<tr class="separator:acbac6847f806a5899e1964a5588a1152 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5aef1b0612b78461d6af4dcc3a6760bc inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1RegardingBorder.html">RegardingBorder</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a5aef1b0612b78461d6af4dcc3a6760bc">getWidgetRegardingBorderForLine</a> (<a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *line)</td></tr>
<tr class="separator:a5aef1b0612b78461d6af4dcc3a6760bc inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a844a83dcc0c7d9e8e8ba55d948b3f87c inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1RegardingBorder.html">RegardingBorder</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a844a83dcc0c7d9e8e8ba55d948b3f87c">getWidgetRegardingBorderForLine</a> (int lineNo)</td></tr>
<tr class="separator:a844a83dcc0c7d9e8e8ba55d948b3f87c inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a806b37f4a8dab8545520d22eefb936a6 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1RegardingBorder.html">RegardingBorder</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a806b37f4a8dab8545520d22eefb936a6">getWidgetRegardingBorderForLine</a> (int firstWord, int lastWord)</td></tr>
<tr class="separator:a806b37f4a8dab8545520d22eefb936a6 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a74b53a82b22f0b4258c22b7ae54357a4 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a74b53a82b22f0b4258c22b7ae54357a4">yOffsetOfLineToBeCreated</a> (int *lastMargin=NULL)</td></tr>
<tr class="separator:a74b53a82b22f0b4258c22b7ae54357a4 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a278a500efcfbb79f2d80d6cc9a893c86 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a278a500efcfbb79f2d80d6cc9a893c86">yOffsetOfLineCreated</a> (<a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> *line)</td></tr>
<tr class="separator:a278a500efcfbb79f2d80d6cc9a893c86 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd9dc35bccb4d8ca9b07a1f953deac6e inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#acd9dc35bccb4d8ca9b07a1f953deac6e">sendSelectionEvent</a> (<a class="el" href="classdw_1_1core_1_1SelectionState.html#a70da27736e4e5927125ec1f7c4a0da92">core::SelectionState::EventType</a> eventType, <a class="el" href="classdw_1_1core_1_1MousePositionEvent.html">core::MousePositionEvent</a> *event)</td></tr>
<tr class="memdesc:acd9dc35bccb4d8ca9b07a1f953deac6e inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">Send event to selection.  <a href="classdw_1_1ListItem.html#acd9dc35bccb4d8ca9b07a1f953deac6e">More...</a><br /></td></tr>
<tr class="separator:acd9dc35bccb4d8ca9b07a1f953deac6e inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3ab1b4291bfdcb0f7a92a88803d67ea8 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a3ab1b4291bfdcb0f7a92a88803d67ea8">processWord</a> (int wordIndex)</td></tr>
<tr class="separator:a3ab1b4291bfdcb0f7a92a88803d67ea8 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2ac3488a62d655dc88bb11473d5478e5 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">virtual int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a2ac3488a62d655dc88bb11473d5478e5">wordWrap</a> (int wordIndex, bool wrapAll)</td></tr>
<tr class="separator:a2ac3488a62d655dc88bb11473d5478e5 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa9986228e71595f70d481eeb1700f1c1 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aa9986228e71595f70d481eeb1700f1c1">wrapWordInFlow</a> (int wordIndex, bool wrapAll)</td></tr>
<tr class="separator:aa9986228e71595f70d481eeb1700f1c1 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a216355f051316dc16109de4a89aa6148 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a216355f051316dc16109de4a89aa6148">wrapWordOofRef</a> (int wordIndex, bool wrapAll)</td></tr>
<tr class="separator:a216355f051316dc16109de4a89aa6148 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a545940dc5c82ad8d3bc16ed5f9b552bb inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a545940dc5c82ad8d3bc16ed5f9b552bb">balanceBreakPosAndHeight</a> (int wordIndex, int firstIndex, int *searchUntil, bool tempNewLine, int penaltyIndex, bool borderIsCalculated, bool *thereWillBeMoreSpace, bool wrapAll, int *diffWords, int *wordIndexEnd, int *lastFloatPos, bool regardBorder, int *height, int *breakPos)</td></tr>
<tr class="separator:a545940dc5c82ad8d3bc16ed5f9b552bb inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a09c3098236538ac8b0a023408acc5c18 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a09c3098236538ac8b0a023408acc5c18">searchBreakPos</a> (int wordIndex, int firstIndex, int *searchUntil, bool tempNewLine, int penaltyIndex, bool thereWillBeMoreSpace, bool wrapAll, int *diffWords, int *wordIndexEnd, int *addIndex1=NULL)</td></tr>
<tr class="separator:a09c3098236538ac8b0a023408acc5c18 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a678c7660111eb2c7472aec91c4c8abbd inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a678c7660111eb2c7472aec91c4c8abbd">searchMinBap</a> (int firstWord, int lastWordm, int penaltyIndex, bool thereWillBeMoreSpace, bool correctAtEnd)</td></tr>
<tr class="separator:a678c7660111eb2c7472aec91c4c8abbd inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c6e8da408e36ea6ce80855c4db54d04 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a3c6e8da408e36ea6ce80855c4db54d04">considerHyphenation</a> (int firstIndex, int breakPos)</td></tr>
<tr class="separator:a3c6e8da408e36ea6ce80855c4db54d04 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a35f1b19c76ac98737fc2791e4e81f14a inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a35f1b19c76ac98737fc2791e4e81f14a">isHyphenationCandidate</a> (<a class="el" href="structdw_1_1Textblock_1_1Word.html">Word</a> *word)</td></tr>
<tr class="separator:a35f1b19c76ac98737fc2791e4e81f14a inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab6bdce539acc64287501b0beb2ebc81c inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ab6bdce539acc64287501b0beb2ebc81c">calcLinePartHeight</a> (int firstWord, int lastWord)</td></tr>
<tr class="separator:ab6bdce539acc64287501b0beb2ebc81c inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2301cb2cf064e5d15bef72ba055182b4 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a2301cb2cf064e5d15bef72ba055182b4">handleWordExtremes</a> (int wordIndex)</td></tr>
<tr class="separator:a2301cb2cf064e5d15bef72ba055182b4 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2a5b39eaa599f12c8697b97194fc6436 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a2a5b39eaa599f12c8697b97194fc6436">correctLastWordExtremes</a> ()</td></tr>
<tr class="separator:a2a5b39eaa599f12c8697b97194fc6436 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6acc16fe2936abc4ad75e324008aa67f inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a6acc16fe2936abc4ad75e324008aa67f">getLineShrinkability</a> (int lastWordIndex)</td></tr>
<tr class="separator:a6acc16fe2936abc4ad75e324008aa67f inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2ccd4e3f28f6023cccb260550be8b46f inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a2ccd4e3f28f6023cccb260550be8b46f">getLineStretchability</a> (int lastWordIndex)</td></tr>
<tr class="separator:a2ccd4e3f28f6023cccb260550be8b46f inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a89ac4b62ad64ac15c7bd6a6ce28be671 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a89ac4b62ad64ac15c7bd6a6ce28be671">hyphenateWord</a> (int wordIndex, int *addIndex1=NULL)</td></tr>
<tr class="separator:a89ac4b62ad64ac15c7bd6a6ce28be671 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8411cbfc2031eb3740d082ae95e90ef3 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a8411cbfc2031eb3740d082ae95e90ef3">moveWordIndices</a> (int wordIndex, int num, int *addIndex1=NULL)</td></tr>
<tr class="separator:a8411cbfc2031eb3740d082ae95e90ef3 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5ef113ed86532b4a30184c8d028dd60a inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a5ef113ed86532b4a30184c8d028dd60a">accumulateWordForLine</a> (int lineIndex, int wordIndex)</td></tr>
<tr class="separator:a5ef113ed86532b4a30184c8d028dd60a inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1801f39f901a9ac1d2bc34c1e45e2015 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a1801f39f901a9ac1d2bc34c1e45e2015">accumulateWordData</a> (int wordIndex)</td></tr>
<tr class="separator:a1801f39f901a9ac1d2bc34c1e45e2015 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a91bfdbef66b39af277fadfe881802d4b inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a91bfdbef66b39af277fadfe881802d4b">calcLineBreakWidth</a> (int lineIndex)</td></tr>
<tr class="separator:a91bfdbef66b39af277fadfe881802d4b inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a08d312070e354d4c582079698a1fc827 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a08d312070e354d4c582079698a1fc827">initLine1Offset</a> (int wordIndex)</td></tr>
<tr class="separator:a08d312070e354d4c582079698a1fc827 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac7c3e622809593e51ad9a8b41bb8c71a inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ac7c3e622809593e51ad9a8b41bb8c71a">alignLine</a> (int lineIndex)</td></tr>
<tr class="separator:ac7c3e622809593e51ad9a8b41bb8c71a inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a526dddbfe67be2595d137be139678d70 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a526dddbfe67be2595d137be139678d70">calcTextOffset</a> (int lineIndex, int totalWidth)</td></tr>
<tr class="separator:a526dddbfe67be2595d137be139678d70 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af36e80209ec3a74b9c5a3ab7369784cc inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#af36e80209ec3a74b9c5a3ab7369784cc">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:af36e80209ec3a74b9c5a3ab7369784cc inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa0861b926eca1e15c88bfd7b80cfc171 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aa0861b926eca1e15c88bfd7b80cfc171">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:aa0861b926eca1e15c88bfd7b80cfc171 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adb2f79277f25d9e2bb406214ae7af83f inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#adb2f79277f25d9e2bb406214ae7af83f">sizeRequestImpl</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>, int numPos, <a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> **references, int *x, int *y)</td></tr>
<tr class="separator:adb2f79277f25d9e2bb406214ae7af83f inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a66141b06bf8d8d0555c314f07c36bec5 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a66141b06bf8d8d0555c314f07c36bec5">numSizeRequestReferences</a> ()</td></tr>
<tr class="memdesc:a66141b06bf8d8d0555c314f07c36bec5 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</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_1ListItem.html#a66141b06bf8d8d0555c314f07c36bec5">More...</a><br /></td></tr>
<tr class="separator:a66141b06bf8d8d0555c314f07c36bec5 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abd7b17a32376e2c9b3f9069190ea99d0 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#abd7b17a32376e2c9b3f9069190ea99d0">sizeRequestReference</a> (int <a class="el" href="classdw_1_1Textblock.html#aa82dd4a60eec894765b8cf36fbce76b3">index</a>)</td></tr>
<tr class="memdesc:abd7b17a32376e2c9b3f9069190ea99d0 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</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_1ListItem.html#abd7b17a32376e2c9b3f9069190ea99d0">More...</a><br /></td></tr>
<tr class="separator:abd7b17a32376e2c9b3f9069190ea99d0 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a13dd06eeb5e9b54c395d9c4f23fdce62 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a13dd06eeb5e9b54c395d9c4f23fdce62">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:a13dd06eeb5e9b54c395d9c4f23fdce62 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">Simple variant, to be implemented by widgets with extremes not depending on positions.  <a href="classdw_1_1ListItem.html#a13dd06eeb5e9b54c395d9c4f23fdce62">More...</a><br /></td></tr>
<tr class="separator:a13dd06eeb5e9b54c395d9c4f23fdce62 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a43272b8c948f818e3da9abadef428278 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a43272b8c948f818e3da9abadef428278">numGetExtremesReferences</a> ()</td></tr>
<tr class="memdesc:a43272b8c948f818e3da9abadef428278 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</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_1ListItem.html#a43272b8c948f818e3da9abadef428278">More...</a><br /></td></tr>
<tr class="separator:a43272b8c948f818e3da9abadef428278 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a386c59695c462ae11c636f9e16735e43 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a386c59695c462ae11c636f9e16735e43">getExtremesReference</a> (int <a class="el" href="classdw_1_1Textblock.html#aa82dd4a60eec894765b8cf36fbce76b3">index</a>)</td></tr>
<tr class="memdesc:a386c59695c462ae11c636f9e16735e43 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</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_1ListItem.html#a386c59695c462ae11c636f9e16735e43">More...</a><br /></td></tr>
<tr class="separator:a386c59695c462ae11c636f9e16735e43 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaf966a9f0bdd55faed935a8921a72722 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aaf966a9f0bdd55faed935a8921a72722">notifySetAsTopLevel</a> ()</td></tr>
<tr class="memdesc:aaf966a9f0bdd55faed935a8921a72722 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</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_1ListItem.html#aaf966a9f0bdd55faed935a8921a72722">More...</a><br /></td></tr>
<tr class="separator:aaf966a9f0bdd55faed935a8921a72722 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59fcf7542b0405727a8c0e64eca1238c inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a59fcf7542b0405727a8c0e64eca1238c">notifySetParent</a> ()</td></tr>
<tr class="memdesc:a59fcf7542b0405727a8c0e64eca1238c inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">This method is called after a widget has been added to a parent.  <a href="classdw_1_1ListItem.html#a59fcf7542b0405727a8c0e64eca1238c">More...</a><br /></td></tr>
<tr class="separator:a59fcf7542b0405727a8c0e64eca1238c inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4ce60bef9446d0dd43c425443c86c3c0 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a4ce60bef9446d0dd43c425443c86c3c0">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:a4ce60bef9446d0dd43c425443c86c3c0 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>.  <a href="classdw_1_1ListItem.html#a4ce60bef9446d0dd43c425443c86c3c0">More...</a><br /></td></tr>
<tr class="separator:a4ce60bef9446d0dd43c425443c86c3c0 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a500c13b0bde283b807c54e5a2743507a inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a500c13b0bde283b807c54e5a2743507a">calcExtraSpaceImpl</a> (int numPos, <a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> **references, int *x, int *y)</td></tr>
<tr class="separator:a500c13b0bde283b807c54e5a2743507a inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae60c85a731500f2186d85db985eac494 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ae60c85a731500f2186d85db985eac494">getAvailWidthOfChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">core::Widget</a> *child, bool forceValue)</td></tr>
<tr class="separator:ae60c85a731500f2186d85db985eac494 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a691e7b91ae544a254eac81bbdb48659a inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a691e7b91ae544a254eac81bbdb48659a">getAvailHeightOfChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html">core::Widget</a> *child, bool forceValue)</td></tr>
<tr class="separator:a691e7b91ae544a254eac81bbdb48659a inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac325034622fc7d6bd888688dd42497ad inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ac325034622fc7d6bd888688dd42497ad">containerSizeChangedForChildren</a> ()</td></tr>
<tr class="separator:ac325034622fc7d6bd888688dd42497ad inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7449bb96f6f123708aa900f6892a890e inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a7449bb96f6f123708aa900f6892a890e">affectsSizeChangeContainerChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *child)</td></tr>
<tr class="separator:a7449bb96f6f123708aa900f6892a890e inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9c4da5d1a3b697aac4e53de2bd66f45e inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a9c4da5d1a3b697aac4e53de2bd66f45e">usesAvailWidth</a> ()</td></tr>
<tr class="memdesc:a9c4da5d1a3b697aac4e53de2bd66f45e inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</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_1ListItem.html#a9c4da5d1a3b697aac4e53de2bd66f45e">More...</a><br /></td></tr>
<tr class="separator:a9c4da5d1a3b697aac4e53de2bd66f45e inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9508fa80a951aae39c547daec27046c2 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a9508fa80a951aae39c547daec27046c2">resizeDrawImpl</a> ()</td></tr>
<tr class="memdesc:a9508fa80a951aae39c547daec27046c2 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">Called after <a class="el" href="classdw_1_1Textblock.html#a4ce60bef9446d0dd43c425443c86c3c0" title="See Sizes of Dillo Widgets. ">sizeAllocateImpl()</a> to redraw necessary areas. By default the whole widget is redrawn.  <a href="classdw_1_1ListItem.html#a9508fa80a951aae39c547daec27046c2">More...</a><br /></td></tr>
<tr class="separator:a9508fa80a951aae39c547daec27046c2 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3f8a1f003edbc0d00b0fecdf810a5f77 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a3f8a1f003edbc0d00b0fecdf810a5f77">markSizeChange</a> (int ref)</td></tr>
<tr class="memdesc:a3f8a1f003edbc0d00b0fecdf810a5f77 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>.  <a href="classdw_1_1ListItem.html#a3f8a1f003edbc0d00b0fecdf810a5f77">More...</a><br /></td></tr>
<tr class="separator:a3f8a1f003edbc0d00b0fecdf810a5f77 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae85033f915329a52d4cfec2674f91b01 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ae85033f915329a52d4cfec2674f91b01">markExtremesChange</a> (int ref)</td></tr>
<tr class="memdesc:ae85033f915329a52d4cfec2674f91b01 inherit pro_methods_classdw_1_1Textblock"><td class="mdescLeft">&#160;</td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>.  <a href="classdw_1_1ListItem.html#ae85033f915329a52d4cfec2674f91b01">More...</a><br /></td></tr>
<tr class="separator:ae85033f915329a52d4cfec2674f91b01 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a81d38ab2ccd2250efd2607ccd7dfbce0 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a81d38ab2ccd2250efd2607ccd7dfbce0">isBlockLevel</a> ()</td></tr>
<tr class="separator:a81d38ab2ccd2250efd2607ccd7dfbce0 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abb902f0191acbcf7dd15af7b09d7adcc inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#abb902f0191acbcf7dd15af7b09d7adcc">buttonPressImpl</a> (<a class="el" href="classdw_1_1core_1_1EventButton.html">core::EventButton</a> *event)</td></tr>
<tr class="separator:abb902f0191acbcf7dd15af7b09d7adcc inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adfe5857c03a819a6384b5b9ce230a0df inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#adfe5857c03a819a6384b5b9ce230a0df">buttonReleaseImpl</a> (<a class="el" href="classdw_1_1core_1_1EventButton.html">core::EventButton</a> *event)</td></tr>
<tr class="separator:adfe5857c03a819a6384b5b9ce230a0df inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd771eb88c7ef9b87c90164c30274833 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#acd771eb88c7ef9b87c90164c30274833">motionNotifyImpl</a> (<a class="el" href="classdw_1_1core_1_1EventMotion.html">core::EventMotion</a> *event)</td></tr>
<tr class="separator:acd771eb88c7ef9b87c90164c30274833 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2f9a9c36ed01021ebc78ecf2acf6f485 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a2f9a9c36ed01021ebc78ecf2acf6f485">enterNotifyImpl</a> (<a class="el" href="classdw_1_1core_1_1EventCrossing.html">core::EventCrossing</a> *event)</td></tr>
<tr class="separator:a2f9a9c36ed01021ebc78ecf2acf6f485 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8edf47bd813229775dcf19a21e0bc278 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a8edf47bd813229775dcf19a21e0bc278">leaveNotifyImpl</a> (<a class="el" href="classdw_1_1core_1_1EventCrossing.html">core::EventCrossing</a> *event)</td></tr>
<tr class="separator:a8edf47bd813229775dcf19a21e0bc278 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaa272b36b1e5525c12d228b153bc9fa6 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aaa272b36b1e5525c12d228b153bc9fa6">removeChild</a> (<a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *child)</td></tr>
<tr class="separator:aaa272b36b1e5525c12d228b153bc9fa6 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9c8e223318eece4db19e2cf795f78ee8 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a9c8e223318eece4db19e2cf795f78ee8">addText0</a> (const char *text, size_t len, short <a class="el" href="classdw_1_1core_1_1Widget.html#a7c351bbee9630b4f8702c1fa7214bc05">flags</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>, <a class="el" href="structdw_1_1core_1_1Requisition.html">core::Requisition</a> *size)</td></tr>
<tr class="separator:a9c8e223318eece4db19e2cf795f78ee8 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a065615a0947e44b74bb75ffe0e1054cf inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a065615a0947e44b74bb75ffe0e1054cf">calcTextSizes</a> (const char *text, size_t textLen, <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>, int numBreaks, int *breakPos, <a class="el" href="structdw_1_1core_1_1Requisition.html">core::Requisition</a> *wordSize)</td></tr>
<tr class="separator:a065615a0947e44b74bb75ffe0e1054cf inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8731b6b55f28ff312e9c8d3335a3f588 inherit pro_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a8731b6b55f28ff312e9c8d3335a3f588">getGeneratorRest</a> (int oofmIndex)</td></tr>
<tr class="separator:a8731b6b55f28ff312e9c8d3335a3f588 inherit pro_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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&#160;</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">&#160;</td></tr>
<tr class="memitem:ad888fb19825458c3a7347a4b9f70172f inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a431899dbb0b81b66a61485448c02808d inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:aaa2320159b7efdabb7d1369b01eb3b11 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a940cfc53e7c58eab71289c0507ec02f3 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a9c39d54a5ada592d8a50dd1d2f534c40 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</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> *&#160;</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">&#160;</td></tr>
<tr class="memitem:a6b600efb55d6d7d48ebc882999f14af8 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</td></tr>
<tr class="memitem:ae28b8aa40e73eff1cb1cc0dbdc8dc7db inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:ab521646c5373736ecb9daae1aa5783d0 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:af098bcfd061eea8e3b89df34f8af2f14 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</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> *&#160;</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">&#160;</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> *&#160;</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">&#160;</td></tr>
<tr class="memitem:ac6ced072cd6f8248cf5ad05493c45705 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a9224eff0982592eb440f7c70facd710e inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:aacf5ecb4096a432ce2cd08353a1be1ac inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a50f6746fb3619731a5d9e4a19c3279f0 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:abd0bb25e655439118b02793a33bf8690 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a248f2c2293fb041cbb529160bcbf4967 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:af00de9105bb5ba2a0f88c3c8daba20a0 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</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> *&#160;</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">&#160;</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> *&#160;</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">&#160;</td></tr>
<tr class="memitem:a929e10ef010bbd6bbdab03888e376984 inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a83883de46b609f8f978f8a61ebdef39b inherit pro_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</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">&#160;</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="-"/>&#160;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&#160;</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">&#160;</td></tr>
<tr class="memitem:afc4789174e7bbcdf445b62995e0403e8 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</td></tr>
<tr class="memitem:a9b29a499b5b0db61062fadc1f6039877 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">int&#160;</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">&#160;</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> *&#160;</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">&#160;</td></tr>
<tr class="memitem:acfc863870a22e3f3e82048d01a8d891d inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:ae8ee6e9cf388a37ec28ee159c3b731f2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:abff6900b333d79e08e2c9699c80a70fd inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:ad29af9bf2a21855596fbc26214aed57b inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a68e995505b0885143024e3254253f2d8 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:ae6471fad0c622453aae0eb6f3712ba68 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:ac3764607155e58daee03db5cbb76d8e2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</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">&#160;</td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>.  <a href="classdw_1_1ListItem.html#ac3764607155e58daee03db5cbb76d8e2">More...</a><br /></td></tr>
<tr class="separator:ac3764607155e58daee03db5cbb76d8e2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a80bff37480606bf9ff8f3d913e16c8b4 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a80bff37480606bf9ff8f3d913e16c8b4">sizeRequestSimpl</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>)</td></tr>
<tr class="memdesc:a80bff37480606bf9ff8f3d913e16c8b4 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="mdescLeft">&#160;</td><td class="mdescRight">Simple variant, to be implemented by widgets with sizes not depending on positions.  <a href="classdw_1_1ListItem.html#a80bff37480606bf9ff8f3d913e16c8b4">More...</a><br /></td></tr>
<tr class="separator:a80bff37480606bf9ff8f3d913e16c8b4 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a984eb786b8d9c9bf63cfd24bdf465e6f inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</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">&#160;</td><td class="mdescRight">See <a class="el" href="dw-widget-sizes.html">Sizes of Dillo Widgets</a>.  <a href="classdw_1_1ListItem.html#a984eb786b8d9c9bf63cfd24bdf465e6f">More...</a><br /></td></tr>
<tr class="separator:a984eb786b8d9c9bf63cfd24bdf465e6f inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a87e7d6f31595a2628cab9253c241191d inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</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">&#160;</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_1ListItem.html#a87e7d6f31595a2628cab9253c241191d">More...</a><br /></td></tr>
<tr class="separator:a87e7d6f31595a2628cab9253c241191d inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a70fc538e0cf4acdcb8e7b88ce1d405d2 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</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">&#160;</td></tr>
<tr class="memitem:aeb2f49c44369a17f8037ae9a4586c6de inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:ac730b4522f2f0ca256a3aa90dbf3d6e6 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a79a9be8c5f31ee5936ae4916112be046 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</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">&#160;</td></tr>
<tr class="memitem:a2249630dd2b84a7670600990bd8311b3 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a33f2e8c29b80074a6bf366c4d2633349 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</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">&#160;</td></tr>
<tr class="memitem:ac73f4795954e264d7678fc0968f4cbfb inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</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">&#160;</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_1ListItem.html#ac73f4795954e264d7678fc0968f4cbfb">More...</a><br /></td></tr>
<tr class="separator:ac73f4795954e264d7678fc0968f4cbfb inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a70dfa18448d79453d468b4946ac97e35 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">char *&#160;</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">&#160;</td></tr>
<tr class="memitem:af6e27ab130e707e8bcf5ac1462dcd2fa inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">char *&#160;</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">&#160;</td></tr>
<tr class="memitem:a7da6906a643cd93d893dbfa902f17065 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:adc3f28fc5dd2cdb76118c2d39fe7b5f5 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a761535b4f71744668c78a81914002bd1 inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">void&#160;</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">&#160;</td></tr>
<tr class="memitem:a6c93fc0c85a18bb555643c9e2218c3bf inherit pro_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">bool&#160;</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">&#160;</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="-"/>&#160;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&#160;</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">&#160;</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_1ListItem.html#aeb1a57d39e3e06c92433e81457661185">More...</a><br /></td></tr>
<tr class="separator:aeb1a57d39e3e06c92433e81457661185 inherit pro_methods_classlout_1_1identity_1_1IdentifiableObject"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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 &#160;</td><td class="memItemRight" valign="bottom">{ <br />
&#160;&#160;<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 />
&#160;&#160;<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">&#160;</td></tr>
<tr class="inherit_header pub_static_methods_classdw_1_1Textblock"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classdw_1_1Textblock')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classdw_1_1Textblock.html">dw::Textblock</a></td></tr>
<tr class="memitem:a554d6d47442ce16324cfe66a0e405bde inherit pub_static_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a554d6d47442ce16324cfe66a0e405bde">setPenaltyHyphen</a> (int penaltyHyphen)</td></tr>
<tr class="separator:a554d6d47442ce16324cfe66a0e405bde inherit pub_static_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a767939784bf947b57376b0a23785854c inherit pub_static_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a767939784bf947b57376b0a23785854c">setPenaltyHyphen2</a> (int penaltyHyphen2)</td></tr>
<tr class="separator:a767939784bf947b57376b0a23785854c inherit pub_static_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a672088b163c3c0ca9a7fad3312f50211 inherit pub_static_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a672088b163c3c0ca9a7fad3312f50211">setPenaltyEmDashLeft</a> (int penaltyLeftEmDash)</td></tr>
<tr class="separator:a672088b163c3c0ca9a7fad3312f50211 inherit pub_static_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b934856a976f77621b2d56e4abdcff7 inherit pub_static_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a9b934856a976f77621b2d56e4abdcff7">setPenaltyEmDashRight</a> (int penaltyRightEmDash)</td></tr>
<tr class="separator:a9b934856a976f77621b2d56e4abdcff7 inherit pub_static_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7871149d05308ac0fc8b03800f338d67 inherit pub_static_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a7871149d05308ac0fc8b03800f338d67">setPenaltyEmDashRight2</a> (int penaltyRightEmDash2)</td></tr>
<tr class="separator:a7871149d05308ac0fc8b03800f338d67 inherit pub_static_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a484b7352ea58ff666f1d51bd099f059e inherit pub_static_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a484b7352ea58ff666f1d51bd099f059e">setStretchabilityFactor</a> (int <a class="el" href="classdw_1_1Textblock.html#a75c9336977c081e6603b32cd8f2fbcda">stretchabilityFactor</a>)</td></tr>
<tr class="separator:a484b7352ea58ff666f1d51bd099f059e inherit pub_static_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c11ff21dd928c704ef9cf21be256393 inherit pub_static_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a3c11ff21dd928c704ef9cf21be256393">mustAddBreaks</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:a3c11ff21dd928c704ef9cf21be256393 inherit pub_static_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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 *&#160;</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">&#160;</td></tr>
<tr class="memitem:abd766d3bfcd7078a78c629f2aa54a091 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:af930c2269b2018998a2535e943ee0707 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:abec17b4f531a430deddb7b2adc49fcc3 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a06cd5e52541d8dee58e386a15231cd3b inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a84ed65e7461dad0546c81a111cf3ed3e inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:ac8da3b20edce48f87728c61bede1ad4e inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:abcb32d0039fe2a39383f03bf81a3248a inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a77fec38bc6502c4a18fc5d68d574a012 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:a2295bf174533205abf059474341533cf inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:afdd795ef92ad4e91dc8bf8083a51faee inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:ace62b899aeac256a67a1600379b7f0f7 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="memitem:ad01e4ce15487f3ad2d8791f3ca67cf90 inherit pub_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</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="-"/>&#160;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&#160;</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">&#160;</td></tr>
<tr class="memitem:a223626296db0bbe70517acc812e27180 inherit pub_static_methods_classdw_1_1core_1_1Widget"><td class="memItemLeft" align="right" valign="top">static void&#160;</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">&#160;</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="-"/>&#160;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&#160;</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">&#160;</td><td class="mdescRight">This value is defined by the parent widget, and used for incremential resizing.  <a href="classdw_1_1ListItem.html#a3a8324c1cc6859bd9bab133b44096f1b">More...</a><br /></td></tr>
<tr class="separator:a3a8324c1cc6859bd9bab133b44096f1b inherit pub_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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 &#160;</td><td class="memItemRight" valign="bottom">{ <br />
&#160;&#160;<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 />
&#160;&#160;<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">&#160;</td></tr>
<tr class="memitem:aba795cad854cc67abb83a9141dd98e11 inherit pro_types_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">enum &#160;</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 &lt;&lt; PARENT_REF_OOFM_BITS) - 1
 }</td></tr>
<tr class="separator:aba795cad854cc67abb83a9141dd98e11 inherit pro_types_classdw_1_1oof_1_1OOFAwareWidget"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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 &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cb">Flags</a> { <br />
&#160;&#160;<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cba091e39c3bc818a420fd19c637ca78847">RESIZE_QUEUED</a> = 1 &lt;&lt; 0, 
<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cba90cb722f5ea44d3d5df3785d715e251c">EXTREMES_QUEUED</a> = 1 &lt;&lt; 1, 
<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cbaf83c9031fd220ccdebced9bdb37ebe35">NEEDS_RESIZE</a> = 1 &lt;&lt; 2, 
<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cba1a41409afb7bc3ad8f4a67267848f3b4">NEEDS_ALLOCATE</a> = 1 &lt;&lt; 3, 
<br />
&#160;&#160;<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cba25e03d174216386eba200eece2d12cd0">ALLOCATE_QUEUED</a> = 1 &lt;&lt; 4, 
<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cbaf4fc04158929ec9a0d8b8eea8e034073">EXTREMES_CHANGED</a> = 1 &lt;&lt; 5, 
<a class="el" href="classdw_1_1core_1_1Widget.html#a32b232b3a6f815cabbf9bf9f736258cbadff5490d79fec016501bb79593c9ef5f">WAS_ALLOCATED</a> = 1 &lt;&lt; 6
<br />
 }</td></tr>
<tr class="separator:a32b232b3a6f815cabbf9bf9f736258cb inherit pro_types_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_static_methods_classdw_1_1Textblock"><td colspan="2" onclick="javascript:toggleInherit('pro_static_methods_classdw_1_1Textblock')"><img src="closed.png" alt="-"/>&#160;Static Protected Member Functions inherited from <a class="el" href="classdw_1_1Textblock.html">dw::Textblock</a></td></tr>
<tr class="memitem:af21c64d34c735b9c9d4dcd18438ecf8b inherit pro_static_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#af21c64d34c735b9c9d4dcd18438ecf8b">getSpaceShrinkability</a> (struct <a class="el" href="structdw_1_1Textblock_1_1Word.html">Word</a> *word)</td></tr>
<tr class="separator:af21c64d34c735b9c9d4dcd18438ecf8b inherit pro_static_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a73a23e9443022978f890e35d916b50d9 inherit pro_static_methods_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a73a23e9443022978f890e35d916b50d9">getSpaceStretchability</a> (struct <a class="el" href="structdw_1_1Textblock_1_1Word.html">Word</a> *word)</td></tr>
<tr class="separator:a73a23e9443022978f890e35d916b50d9 inherit pro_static_methods_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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&#160;</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">&#160;</td></tr>
<tr class="memitem:a846ff9ee00a453ad3cf64a0cf6e105b7 inherit pro_static_methods_classdw_1_1oof_1_1OOFAwareWidget"><td class="memItemLeft" align="right" valign="top">static bool&#160;</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">&#160;</td></tr>
<tr class="inherit_header pro_attribs_classdw_1_1Textblock"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classdw_1_1Textblock')"><img src="closed.png" alt="-"/>&#160;Protected Attributes inherited from <a class="el" href="classdw_1_1Textblock.html">dw::Textblock</a></td></tr>
<tr class="memitem:ad697f1ee49c7353ce89b36e348bf8872 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ad697f1ee49c7353ce89b36e348bf8872">hasListitemValue</a></td></tr>
<tr class="separator:ad697f1ee49c7353ce89b36e348bf8872 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a914b5a717f2d4d3f4687a55d2a69ccd0 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a914b5a717f2d4d3f4687a55d2a69ccd0">leftInnerPadding</a></td></tr>
<tr class="separator:a914b5a717f2d4d3f4687a55d2a69ccd0 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a53a9b8e7852d05d17523bd4a8cd403a8 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a53a9b8e7852d05d17523bd4a8cd403a8">line1Offset</a></td></tr>
<tr class="separator:a53a9b8e7852d05d17523bd4a8cd403a8 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaf1256dfab689447a45d8026b01fcb1c inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aaf1256dfab689447a45d8026b01fcb1c">line1OffsetEff</a></td></tr>
<tr class="separator:aaf1256dfab689447a45d8026b01fcb1c inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af696e571b1a9c9532e9d3a8070799eb7 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#af696e571b1a9c9532e9d3a8070799eb7">ignoreLine1OffsetSometimes</a></td></tr>
<tr class="separator:af696e571b1a9c9532e9d3a8070799eb7 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaa71ecbaf7d1ce42e8db4ddfafe537e3 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aaa71ecbaf7d1ce42e8db4ddfafe537e3">mustQueueResize</a></td></tr>
<tr class="separator:aaa71ecbaf7d1ce42e8db4ddfafe537e3 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6d3b59ab5aad172d0dcfc7fa52473da5 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a6d3b59ab5aad172d0dcfc7fa52473da5">limitTextWidth</a></td></tr>
<tr class="separator:a6d3b59ab5aad172d0dcfc7fa52473da5 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a70bece350a97c17909bb4ebe1f72966a inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a70bece350a97c17909bb4ebe1f72966a">redrawY</a></td></tr>
<tr class="separator:a70bece350a97c17909bb4ebe1f72966a inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a67429a213ecd30bb798b2b43c158accd inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a67429a213ecd30bb798b2b43c158accd">lastWordDrawn</a></td></tr>
<tr class="separator:a67429a213ecd30bb798b2b43c158accd inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a238db6c2180ea906d417bcf2aec62a28 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1SizeParams.html">core::SizeParams</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a238db6c2180ea906d417bcf2aec62a28">sizeRequestParams</a></td></tr>
<tr class="separator:a238db6c2180ea906d417bcf2aec62a28 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6e38595e1cf342f492d89026d8c816f inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ac6e38595e1cf342f492d89026d8c816f">lineBreakWidth</a></td></tr>
<tr class="separator:ac6e38595e1cf342f492d89026d8c816f inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8edda4175c47488319b78f232e58242d inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a8edda4175c47488319b78f232e58242d">wrapRefLines</a></td></tr>
<tr class="separator:a8edda4175c47488319b78f232e58242d inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adb940cbeead1bbeaa9027ab80b1cb767 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#adb940cbeead1bbeaa9027ab80b1cb767">wrapRefParagraphs</a></td></tr>
<tr class="separator:adb940cbeead1bbeaa9027ab80b1cb767 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5cb1d0e0e4fe3ee95add14edcbf40944 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a5cb1d0e0e4fe3ee95add14edcbf40944">wrapRefLinesFCX</a></td></tr>
<tr class="separator:a5cb1d0e0e4fe3ee95add14edcbf40944 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac3be20dfd38742eeae0d6a8d089749b3 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ac3be20dfd38742eeae0d6a8d089749b3">wrapRefLinesFCY</a></td></tr>
<tr class="separator:ac3be20dfd38742eeae0d6a8d089749b3 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9bd33bf958f0b982c27a4d5677df9d98 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a9bd33bf958f0b982c27a4d5677df9d98">newLineHasFloatLeft</a></td></tr>
<tr class="separator:a9bd33bf958f0b982c27a4d5677df9d98 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4770884ee61fa53266e9b15d90b3ba7b inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a4770884ee61fa53266e9b15d90b3ba7b">newLineHasFloatRight</a></td></tr>
<tr class="separator:a4770884ee61fa53266e9b15d90b3ba7b inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a635e427902431e1d5c6dea44db592511 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a635e427902431e1d5c6dea44db592511">newLineLeftBorder</a></td></tr>
<tr class="separator:a635e427902431e1d5c6dea44db592511 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a575ab339e7e7d69d1e48b91a40be6fe6 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a575ab339e7e7d69d1e48b91a40be6fe6">newLineRightBorder</a></td></tr>
<tr class="separator:a575ab339e7e7d69d1e48b91a40be6fe6 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a17d1e28c287deea4fd285ae72300e42c inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a17d1e28c287deea4fd285ae72300e42c">newLineLeftFloatHeight</a></td></tr>
<tr class="separator:a17d1e28c287deea4fd285ae72300e42c inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab4b7d7c8d369f91d736b509d67fc0998 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ab4b7d7c8d369f91d736b509d67fc0998">newLineRightFloatHeight</a></td></tr>
<tr class="separator:ab4b7d7c8d369f91d736b509d67fc0998 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a642436dcec0f6933e481202800b6a3b8 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a642436dcec0f6933e481202800b6a3b8">newLineAscent</a></td></tr>
<tr class="separator:a642436dcec0f6933e481202800b6a3b8 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a315be651034fe7d2096e76ac42d57915 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a315be651034fe7d2096e76ac42d57915">newLineDescent</a></td></tr>
<tr class="separator:a315be651034fe7d2096e76ac42d57915 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af901e303fcda72f55cb3b27b5ed12e37 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a>&lt; <a class="el" href="structdw_1_1Textblock_1_1Line.html">Line</a> &gt; *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#af901e303fcda72f55cb3b27b5ed12e37">lines</a></td></tr>
<tr class="separator:af901e303fcda72f55cb3b27b5ed12e37 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8adb6655f1c2c47675c096b80af97fa inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><br class="typebreak" />
&lt; <a class="el" href="structdw_1_1Textblock_1_1Paragraph.html">Paragraph</a> &gt; *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#ae8adb6655f1c2c47675c096b80af97fa">paragraphs</a></td></tr>
<tr class="separator:ae8adb6655f1c2c47675c096b80af97fa inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a5bf339926bffdf058cc35ad43fae56 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a6a5bf339926bffdf058cc35ad43fae56">nonTemporaryLines</a></td></tr>
<tr class="separator:a6a5bf339926bffdf058cc35ad43fae56 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1f7c19fb947a0be347f69ebf116a4df9 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1NotSoSimpleVector.html">lout::misc::NotSoSimpleVector</a><br class="typebreak" />
&lt; <a class="el" href="structdw_1_1Textblock_1_1Word.html">Word</a> &gt; *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a1f7c19fb947a0be347f69ebf116a4df9">words</a></td></tr>
<tr class="separator:a1f7c19fb947a0be347f69ebf116a4df9 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6fb4f5992efbd9345751e4981e7bbfd4 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classlout_1_1misc_1_1SimpleVector.html">lout::misc::SimpleVector</a><br class="typebreak" />
&lt; <a class="el" href="structdw_1_1Textblock_1_1Anchor.html">Anchor</a> &gt; *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a6fb4f5992efbd9345751e4981e7bbfd4">anchors</a></td></tr>
<tr class="separator:a6fb4f5992efbd9345751e4981e7bbfd4 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aea5947ca1a979d408fb6563936d28e08 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" >struct {</td></tr>
<tr class="memitem:a18da3d1c9831c4d7c82b788266055b9e inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" >&#160;&#160;&#160;int&#160;&#160;&#160;<a class="el" href="classdw_1_1Textblock.html#aa82dd4a60eec894765b8cf36fbce76b3">index</a></td></tr>
<tr class="separator:a18da3d1c9831c4d7c82b788266055b9e inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8e05188658fec012c91cd965a3e77ac inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" >&#160;&#160;&#160;int&#160;&#160;&#160;<a class="el" href="classdw_1_1Textblock.html#ab01020b29451f0099263c65d6596a638">nChar</a></td></tr>
<tr class="separator:ae8e05188658fec012c91cd965a3e77ac inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aea5947ca1a979d408fb6563936d28e08 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" valign="top">}&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#aea5947ca1a979d408fb6563936d28e08">hlStart</a> [<a class="el" href="namespacedw_1_1core.html#a8e1256872000334f5da5704f3b21c1dfa36017f7232a94d88237f1fa847e3ab2c">core::HIGHLIGHT_NUM_LAYERS</a>]</td></tr>
<tr class="separator:aea5947ca1a979d408fb6563936d28e08 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2497384dc452846ef1997d31238ceedf inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" >struct {</td></tr>
<tr class="memitem:a18da3d1c9831c4d7c82b788266055b9e inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" >&#160;&#160;&#160;int&#160;&#160;&#160;<a class="el" href="classdw_1_1Textblock.html#aa82dd4a60eec894765b8cf36fbce76b3">index</a></td></tr>
<tr class="separator:a18da3d1c9831c4d7c82b788266055b9e inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8e05188658fec012c91cd965a3e77ac inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" >&#160;&#160;&#160;int&#160;&#160;&#160;<a class="el" href="classdw_1_1Textblock.html#ab01020b29451f0099263c65d6596a638">nChar</a></td></tr>
<tr class="separator:ae8e05188658fec012c91cd965a3e77ac inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2497384dc452846ef1997d31238ceedf inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" valign="top">}&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a2497384dc452846ef1997d31238ceedf">hlEnd</a> [<a class="el" href="namespacedw_1_1core.html#a8e1256872000334f5da5704f3b21c1dfa36017f7232a94d88237f1fa847e3ab2c">core::HIGHLIGHT_NUM_LAYERS</a>]</td></tr>
<tr class="separator:a2497384dc452846ef1997d31238ceedf inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a432247df943f6c3b3b3216047868c768 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a432247df943f6c3b3b3216047868c768">hoverLink</a></td></tr>
<tr class="separator:a432247df943f6c3b3b3216047868c768 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a37f27c4e92a49a493e8edbd2d5881c19 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a37f27c4e92a49a493e8edbd2d5881c19">numSizeReferences</a></td></tr>
<tr class="separator:a37f27c4e92a49a493e8edbd2d5881c19 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abb895a3da4664d24522e58c24c600a66 inherit pro_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classdw_1_1core_1_1Widget.html#a4c6b915525836850ed70736e394acc2a">Widget</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#abb895a3da4664d24522e58c24c600a66">sizeReferences</a> [<a class="el" href="classdw_1_1oof_1_1OOFAwareWidget.html#a602541b7d777e92855fd93bee5e9a638a832ad919a5912833a12254c9c4b88a4d">NUM_OOFM</a>]</td></tr>
<tr class="separator:abb895a3da4664d24522e58c24c600a66 inherit pro_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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> *&#160;</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">&#160;</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> *&#160;</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">&#160;</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>&#160;</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">&#160;</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="-"/>&#160;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> *&#160;</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">&#160;</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>&#160;</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">&#160;</td><td class="mdescRight">The current allocation: size and position, always relative to the canvas.  <a href="classdw_1_1ListItem.html#a2212fc4b9b2b0e26c7345f1b4adb7d28">More...</a><br /></td></tr>
<tr class="separator:a2212fc4b9b2b0e26c7345f1b4adb7d28 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</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> *&#160;</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">&#160;</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>&#160;</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">&#160;</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_1ListItem.html#a608917a82e6f0ca6c8c4b404159cce23">More...</a><br /></td></tr>
<tr class="separator:a608917a82e6f0ca6c8c4b404159cce23 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</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> *&#160;</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">&#160;</td><td class="mdescRight">Set iff this widget constitutes a stacking context, as defined by CSS.  <a href="classdw_1_1ListItem.html#a5bb08f358ea6ae74922b9e664beaf69a">More...</a><br /></td></tr>
<tr class="separator:a5bb08f358ea6ae74922b9e664beaf69a inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</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> *&#160;</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">&#160;</td><td class="mdescRight">The bottom-most ancestor (or this) for which stackingContextMgr is set.  <a href="classdw_1_1ListItem.html#a56884cc526ad669c6478d84c856b0aa1">More...</a><br /></td></tr>
<tr class="separator:a56884cc526ad669c6478d84c856b0aa1 inherit pro_attribs_classdw_1_1core_1_1Widget"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_static_attribs_classdw_1_1Textblock"><td colspan="2" onclick="javascript:toggleInherit('pro_static_attribs_classdw_1_1Textblock')"><img src="closed.png" alt="-"/>&#160;Static Protected Attributes inherited from <a class="el" href="classdw_1_1Textblock.html">dw::Textblock</a></td></tr>
<tr class="memitem:a8821a062eeac0e8a9247369d5b40b2fe inherit pro_static_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a8821a062eeac0e8a9247369d5b40b2fe">penalties</a> [<a class="el" href="classdw_1_1Textblock.html#afcdaa60b521c1b898aae102adcd894e8a48e552e515dcd81446ff720994915089">PENALTY_NUM</a>][2]</td></tr>
<tr class="separator:a8821a062eeac0e8a9247369d5b40b2fe inherit pro_static_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a75c9336977c081e6603b32cd8f2fbcda inherit pro_static_attribs_classdw_1_1Textblock"><td class="memItemLeft" align="right" valign="top">static int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classdw_1_1Textblock.html#a75c9336977c081e6603b32cd8f2fbcda">stretchabilityFactor</a> = 100</td></tr>
<tr class="separator:a75c9336977c081e6603b32cd8f2fbcda inherit pro_static_attribs_classdw_1_1Textblock"><td class="memSeparator" colspan="2">&#160;</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="-"/>&#160;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 *&#160;</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">&#160;</td></tr>
</table>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a2953463aee2775e189b4a18da944219c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">dw::ListItem::ListItem </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classdw_1_1ListItem.html">ListItem</a> *&#160;</td>
          <td class="paramname"><em>ref</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>limitTextWidth</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>References <a class="el" href="classdw_1_1ListItem.html#a9b4f191c19e17d81e48b4eb280a66aa7">CLASS_ID</a>, <a class="el" href="debug__rtfl_8hh.html#a25c125b618655652ac04cd9228badca8">DBG_OBJ_CREATE</a>, <a class="el" href="classlout_1_1identity_1_1IdentifiableObject.html#aeb1a57d39e3e06c92433e81457661185">lout::identity::IdentifiableObject::registerName()</a>, and <a class="el" href="classdw_1_1AlignedTextblock.html#ac1ba58faafb6035841775af22999a7b2">dw::AlignedTextblock::setRefTextblock()</a>.</p>

</div>
</div>
<a class="anchor" id="ae203022a1296ccd7bc3e7577a931b3c7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">dw::ListItem::~ListItem </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="aa1d415d276652c958e096a013c375530"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">int dw::ListItem::getValue </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>Implements <a class="el" href="classdw_1_1AlignedTextblock.html#a285cf18941d1c3f724cb92c94f0b6e7e">dw::AlignedTextblock</a>.</p>

<p>References <a class="el" href="classdw_1_1Textblock.html#a1f7c19fb947a0be347f69ebf116a4df9">dw::Textblock::words</a>.</p>

</div>
</div>
<a class="anchor" id="a6a48d82281cdf2901d036b01df648576"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void dw::ListItem::initWithText </td>
          <td>(</td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>text</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> *&#160;</td>
          <td class="paramname"><em>style</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>References <a class="el" href="classdw_1_1Textblock.html#a1f2b341f34d9570c3082dc743a9c9441">dw::Textblock::addSpace()</a>, <a class="el" href="classdw_1_1Textblock.html#a7a4c5d306e62cd51e2279bcb652340ad">dw::Textblock::addText()</a>, <a class="el" href="classdw_1_1Textblock.html#ad697f1ee49c7353ce89b36e348bf8872">dw::Textblock::hasListitemValue</a>, <a class="el" href="namespacedw_1_1core_1_1style.html#a0dbc13ae7c5f2859256ecf6df1575cbcac1ba52fce87228370b7929e7f4d8ea12">dw::core::style::LIST_STYLE_POSITION_OUTSIDE</a>, <a class="el" href="classdw_1_1core_1_1style_1_1StyleAttrs.html#a06ceb8081537b2e33aca8bdd78626ccc">dw::core::style::StyleAttrs::listStylePosition</a>, and <a class="el" href="classdw_1_1AlignedTextblock.html#af9fb17268db33cad2e11924d3169fd9a">dw::AlignedTextblock::updateValue()</a>.</p>

<p>Referenced by <a class="el" href="dw__lists_8cc.html#a3c04138a5bfe5d72780bb7e82a18e627">main()</a>.</p>

</div>
</div>
<a class="anchor" id="a7572711dc534443ac73a0850d035a847"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void dw::ListItem::initWithWidget </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classdw_1_1core_1_1Widget.html">core::Widget</a> *&#160;</td>
          <td class="paramname"><em>widget</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classdw_1_1core_1_1style_1_1Style.html">core::style::Style</a> *&#160;</td>
          <td class="paramname"><em>style</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>References <a class="el" href="classdw_1_1Textblock.html#a1f2b341f34d9570c3082dc743a9c9441">dw::Textblock::addSpace()</a>, <a class="el" href="classdw_1_1Textblock.html#a1bebe0d704f071b07066bfb671cede7c">dw::Textblock::addWidget()</a>, <a class="el" href="classdw_1_1Textblock.html#ad697f1ee49c7353ce89b36e348bf8872">dw::Textblock::hasListitemValue</a>, <a class="el" href="namespacedw_1_1core_1_1style.html#a0dbc13ae7c5f2859256ecf6df1575cbcac1ba52fce87228370b7929e7f4d8ea12">dw::core::style::LIST_STYLE_POSITION_OUTSIDE</a>, <a class="el" href="classdw_1_1core_1_1style_1_1StyleAttrs.html#a06ceb8081537b2e33aca8bdd78626ccc">dw::core::style::StyleAttrs::listStylePosition</a>, and <a class="el" href="classdw_1_1AlignedTextblock.html#af9fb17268db33cad2e11924d3169fd9a">dw::AlignedTextblock::updateValue()</a>.</p>

</div>
</div>
<a class="anchor" id="aa88595b56abce37829f502b97efa4a53"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void dw::ListItem::setMaxValue </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>maxValue</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>value</em>&#160;</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>Implements <a class="el" href="classdw_1_1AlignedTextblock.html#a3414e85608b631989028e559a444a2c1">dw::AlignedTextblock</a>.</p>

<p>References <a class="el" href="classdw_1_1Textblock.html#a914b5a717f2d4d3f4687a55d2a69ccd0">dw::Textblock::leftInnerPadding</a>, <a class="el" href="classdw_1_1Textblock.html#a53a9b8e7852d05d17523bd4a8cd403a8">dw::Textblock::line1Offset</a>, <a class="el" href="classdw_1_1core_1_1Widget.html#ac00e44ccde79daf2b90247c352de67ef">dw::core::Widget::queueResize()</a>, and <a class="el" href="classdw_1_1Textblock.html#a70bece350a97c17909bb4ebe1f72966a">dw::Textblock::redrawY</a>.</p>

</div>
</div>
<a class="anchor" id="a10aa450e310e21538a5f51ed099a6f53"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool dw::ListItem::usesMaxGeneratorWidth </td>
          <td>(</td>
          <td class="paramname"></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_1oof_1_1OOFAwareWidget.html#accec14aa2bac90eb9bc204f32c96c795">dw::oof::OOFAwareWidget</a>.</p>

</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a class="anchor" id="a9b4f191c19e17d81e48b4eb280a66aa7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">int dw::ListItem::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">

<p>Referenced by <a class="el" href="classdw_1_1ListItem.html#a2953463aee2775e189b4a18da944219c">ListItem()</a>.</p>

</div>
</div>
<hr/>The documentation for this class was generated from the following files:<ul>
<li>dw/<a class="el" href="listitem_8hh_source.html">listitem.hh</a></li>
<li>dw/<a class="el" href="listitem_8cc.html">listitem.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 &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.8
</small></address>
</body>
</html>