Changes between Version 12 and Version 13 of TEXT_MODEL_REDESIGN
- Timestamp:
- 03/29/10 11:25:14 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TEXT_MODEL_REDESIGN
v12 v13 79 79 Applies the styles from the first replaced text to the replacing text. 80 80 * T getStyleValue(HotAttr<T> attr, HotTextInterval interval) - Gets the style value for a given attribute and given interval. 81 If not all interval has the same value for the given attribute - the default valueis returned.81 If not all interval has the same value for the given attribute - null is returned. 82 82 * ImmText applyStyle(HotStyleDef style, HotTextInterval interval) - Applies style to the text for a given interval. 83 83 * int getBegin() - Gets the begin of the text. … … 98 98 * In HotStyleDef class add getAllAttr function that returns list of all the CommonAttr's values. 99 99 100 * In CommonAttr add two new values: HotAttr<String> LINK_ATTRIBUTE - represents the link id's for the text and 101 HotAttr<ImmList<String>> ATTACHMENT_ATTRIBUTE - represents the text attachments 102 (without text links(anchors and so on)). 103 * Two different attributes are needed because two different text processors will handle them(we may need to underline the links and change the 100 * In CommonAttr add a new value: HotAttr<String> LINK_ATTRIBUTE - represents the link id's for the text. 101 * Two different attributes are needed because two different text processors will handle them(we may need to underline the links and change the 104 102 foreground of the text with the attachments and this should be handled differently). 105 103 * The idea of the links and attachments is to handle them as styles (apply styles to the text when added).