Changes between Version 21 and Version 22 of TEXT_VIEW_MODEL


Ignore:
Timestamp:
04/21/10 09:49:08 (15 years ago)
Author:
kyli
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TEXT_VIEW_MODEL

    v21 v22  
    3939  
    4040= Design = 
    41  * Make interface '''TextProcessor'''. It will have:  
     41 * Make interface '''TextProcessor'''.  
     42  * Usage: Gets a text on its input and gives another text as a result. Processors get the model text of an element and make it ready for drawing, that is, they may put decorations, colors, may even change the text itself.   
     43  * Contents:  
    4244   * Empty interface '''Options'''. This is the criteria for processing the text, e.g. highlight color, caret position, highlight interval, etc. 
    4345   * Interface '''Effect'''. This consists of the resulting text after a processing and the change that is generated from it (the change that if applied to the raw text, the processed one will be the result). An Effect is actually an instruction for the next processor in a processing chain. 
     
    4951 
    5052 * Implement text search processor 
    51  
     53  * Usage: It is intended to draw the background highlight for the current quick search result. Since selection will also use a TestProcessor, the highlights() property somewhere in the text frame view, becomes unneeded. The quick search logic should stay unchanged, but the results will not be put in the highlights() property - they will be set as current options for the search processor.  
     54  * Contents: 
     55   * TextSearchOptions - they only contain the HotTextInterval for the highlight and the highlight color. 
    5256 * Implement text link processor 
     57  * Usage: The current text model has attributes with link Ids attached to the text units. The processor needs the colors associated with these IDs so it can set the text foreground - this way, the text will be drawn with different color in its link intervals 
    5358 
    5459