Changes between Version 7 and Version 8 of TEXT_LAYOUT_LAZY
- Timestamp:
- 02/14/10 12:26:50 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TEXT_LAYOUT_LAZY
v7 v8 30 30 31 31 = 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. 33 33 34 34 Split the anonymous SceneTextView from the HeadTextFrameView, since the class has become too large. 35 35 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. 37 37 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. 39 39 40 40 * 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. 41 41 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. 43 43 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: 45 45 46 46 * INVALID, if any of these is true: … … 57 57 * The status is not VALID. 58 58 59 In HotTextLayout, create method '''update(ImmHotText, ImmList<VisibleArea>, int)'''. It returns a new HotTextLayout and its body is almost the same as the static create(..) method, except that it does not take argument ''prevLayout'' - the previous layout is the layout itself. This lets us remove some null-checks and other if-s. 60 61 The last argument in the update() is a ''lazy factor''. It indicates how lazy the algorithm should be. If you pass 0, it will be as lazy as possible. If out pass Integer.MAX_INT, it should work as the current layout. I think this factor will be useful for future testing and for dry-runs. 62 63 The main difference between the 2 algorithms is, that the update method creates/reuses area layouts only to the last visible area index + the lazy factor. The rest layouts are HotAreaLayout.INVALID. As a result, this method will generate: 64 65 * PARTIALLY_VALID layout (according the the given text and areas), if (''last visible index'' + ''lazy factor'') < ''The area list's size''; 66 * VALID layout (according the the given text and areas), otherwise. 67 68 After this, the create() method will look like ''HotTextLayout.EMPTY.update(..)''. 69 70 Create method '''validateNextArea()''' in HotTextLayout, which returns a new HotTextLayout with just one more valid area. Everything else will be re-used, so this method is as quick as HotAreaLayout permits. 71 72 59 73 = Implementation = 60 74 ^(Describe and link the implementation results here (from the wiki or the repository).)^