Changes between Version 5 and Version 6 of TEXT_LAYOUT_LAZY


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

--

Legend:

Unmodified
Added
Removed
Modified
  • TEXT_LAYOUT_LAZY

    v5 v6  
    3030 
    3131= Design = 
    32  * First of all, create class VisibleArea - composition of ImmArea and visibility flag. It will be immutable, with only one constructor and getters for the area and the visibility value. It will be used for the layout purposes, to it should be in that package. 
     32 First of all, create class VisibleArea - composition of ImmArea and visibility flag. It will be immutable, with only one constructor and getters for the area and the visibility value. It will be used for the layout purposes, to it should be in that package. 
    3333 
    34  * Split the anonymous SceneTextView from the HeadTextFrameView, since the class has become too large.  
     34 Split the anonymous SceneTextView from the HeadTextFrameView, since the class has become too large.  
    3535 
    36  * In the SceneTextView's TextViewFlow, except the method getAreas(), add getVisibleAreas(). It will get the areas from the chain and the visible() value of the corresponding frame, and construct a VisibleArea from both. Then the getAreas() method will use getVisibleAreas() to create a list of ImmArea-s. 
     36 In the SceneTextView's TextViewFlow, except the method getAreas(), add getVisibleAreas(). It will get the areas from the chain and the visible() value of the corresponding frame, and construct a VisibleArea from both. Then the getAreas() method will use getVisibleAreas() to create a list of ImmArea-s. 
    3737 
    38  * In RootPageView, override the computeVisible() method so that it returns true when the view is current in its parent book view. According to the default implementation of BaseVisualElement.visible(), this will cause a frame view to be visible() only when its page is current. Note, that the BaseVisualElement's visibility is not the same as the frame model's visibility channel.  
     38 In RootPageView, override the computeVisible() method so that it returns true when the view is current in its parent book view. According to the default implementation of BaseVisualElement.visible(), this will cause a frame view to be visible() only when its page is current. Note, that the BaseVisualElement's visibility is not the same as the frame model's visibility channel.  
    3939 
    4040 * As a result, the getVisibleAreas() will collect information about available areas for a chain as well as information about the current areas - the ones that the user works with. 
    4141 
    42  * In HotAreaLayout, put a flag '''valid''' and create a constant HotAreaLayout.INVALID. It represents a layout with empty text and empty area. 
     42 In HotAreaLayout, put a flag '''valid''' and create a constant HotAreaLayout.INVALID. It represents a layout with empty text and empty area. 
    4343 
    44  * Introduce HotLayoutStatus. This way the logic will know how to handle the current layout. A HotLayoutStatus is defined for a concrete HotTextLayout and given ImmHotText and a list of VisibleArea-s as follows:  
     44 Introduce HotLayoutStatus. This way the logic will know how to handle the current layout. A HotLayoutStatus is defined for a concrete HotTextLayout and given ImmHotText and a list of VisibleArea-s as follows:  
    4545 
    46    * INVALID, if any of these is true: 
    47     * The given text is NOT the same as the layout's; 
    48     * The ImmArea-s from the given list are not the same as the ImmAreas used for the layout; 
    49     * Not all the area layouts before the last visible area in the HotTextLayout are HotAreaLayout.isValid(). 
     46 * INVALID, if any of these is true: 
     47  * The given text is NOT the same as the layout's; 
     48  * The ImmArea-s from the given list are not the same as the ImmAreas used for the layout; 
     49  * Not all the area layouts before the last visible area in the HotTextLayout are HotAreaLayout.isValid(). 
    5050 
    51    * VALID, if: 
    52     * The status is not INVALID, and 
    53     * All the area layouts in the HotTextLayout are HotAreaLayout.isValid(). 
     51 * VALID, if: 
     52  * The status is not INVALID, and 
     53  * All the area layouts in the HotTextLayout are HotAreaLayout.isValid(). 
    5454 
    55    * PARTIALLY_VALID, if: 
    56      * The status is not INVALID, 
    57      * The status is not VALID. 
     55  * PARTIALLY_VALID, if: 
     56    * The status is not INVALID, 
     57    * The status is not VALID. 
    5858 
    5959= Implementation =