Changes between Version 9 and Version 10 of TEXT_LAYOUT_LAZY


Ignore:
Timestamp:
02/14/10 12:50:58 (15 years ago)
Author:
kyli
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TEXT_LAYOUT_LAZY

    v9 v10  
    8181  * Otherwise, calls update() to the last layout. 
    8282 
    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  
     83Obviously, in general, the text flow makes INVALID layouts PARTIALLY_VALID ones, and the auto-chaining invalidates VALID ones. So, we need someone to completely validate PARTIALLY_VALID layouts. Here comes the  
    8484 
    85  * '''Background thread'''. 
     85 * '''Background thread'''. This should be a daemon thread, which runs with lowest priority and the only thing it does is 
     86  * If the current layout is PARTIALLY_VALID, calls its ''validateNextArea()'' method with the current text and areas. The result is saved to a RwProp ''backgroundLayout()'' in the text flow.  
     87 This result should somehow be used, so we add a new rule: 
     88  * The text flow tracks the background layout and if it is not INVALID with the current text and areas, uses it instead of the last computed layout. 
     89 
     90After a number of iterations, the background thread will completely validate the layout, which means that the auto-chaining will still work, it will just be delayed in time. 
    8691 
    8792