| 72 | So, now we have to define who and how should treat the current HotLayout. There are generally 2 different approaches for the layout : The auto-chaining's and the TextFlow's. |
| 73 | |
| 74 | * '''Auto chaining'''. The common between the auto-chaining and the layout is only the ''dryRun()'' method - the one which tells how many areas to add/remove from the current model. Its logic will be like this: |
| 75 | * If the current layout's status is not VALID according to the current text and areas, does nothing. |
| 76 | * Otherwise, acts as it currently does. |
| 77 | |
| 78 | * '''Text flow'''. This is about the ''textLayout()'' property in the text flow. It will: |
| 79 | * If the last layout is VALID with the current text and areas, does nothing. |
| 80 | * If the last layout is PARTIALLY_VALID with the current text and areas, does nothing. |
| 81 | * Otherwise, calls update() to the last layout. |
| 82 | |
| 83 | Obviously, in general, the text flow makes INVALID layouts PARTIALLY_VALID ones, and the aut-chaining invalidates VALID ones. So, we need someone to completely validate PARTIALLY_VALID layouts. Here comes the |
| 84 | |
| 85 | * '''Background thread'''. |
| 86 | |