Changes between Version 21 and Version 22 of TEXT_VIEW_MODEL
- Timestamp:
- 04/21/10 09:49:08 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TEXT_VIEW_MODEL
v21 v22 39 39 40 40 = 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: 42 44 * Empty interface '''Options'''. This is the criteria for processing the text, e.g. highlight color, caret position, highlight interval, etc. 43 45 * 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. … … 49 51 50 52 * 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. 52 56 * 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 53 58 54 59