Changes between Version 13 and Version 14 of TEXT_VIEW_MODEL


Ignore:
Timestamp:
04/12/10 10:48:59 (15 years ago)
Author:
kyli
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TEXT_VIEW_MODEL

    v13 v14  
    4040= Design = 
    4141 * Make interface '''TextProcessor'''. It will have:  
    42  
    4342   * Empty interface '''Options'''. This is the criteria for processing the text, e.g. highlight color, caret position, highlight interval, etc. 
    44  
    4543   * 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. 
    46  
    4744    * '''public ImmText getText();'''   
    48  
    4945    * '''public TextStyleChange getChange();'''  Note that the result is a Style change, that is, the processors will not e able to modify the text itself, but only its styles. Otherwise, weird navigation problems could occur with the current implementation :)  
    50  
    5146   * '''ImmText process(ImmText sourceText, T procOptions);''' You give the processor a text and the rules for processing, then it returns the processed text. For example: TextSelectionProcessor, which has text 'abc' and options 'caret: 2, mark:1, color: red' will return 'abc' with colored in green 'b' and 'c', as well as a caret after the 'c'. 
    52  
    5347   * '''Effect applyChange(Effect prevEffect, ImmText oldSource, T procOptions);'''  Processes the text again after a TextChange has been applied to it. You could actually use ''process'' in this case, but it will do a whole processing of the text, which will be slow. So, this method's purpose is to be effective.  
    54  
    5548   * '''Effect setOptions(ImmText source, ImmText oldProcessed, T oldOptions, T newOptions);''' If the text is not modified itself, but only the options are changed, then it could perform even faster. This method should implement this idea. 
    5649