Changes between Version 11 and Version 12 of TEXT_MODEL_REDESIGN


Ignore:
Timestamp:
03/26/10 11:48:40 (15 years ago)
Author:
diana
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TEXT_MODEL_REDESIGN

    v11 v12  
    6767 single text unit in sophie text. This class is needed mostly to hold the styled value of every single text 
    6868 unit in the whole text. 
    69    * Every text unit holds a char value and HotStyleDef value(only reference to a text style). 
     69   * Every text unit holds a char value and HotStyleDef value. 
    7070   * Add getUnitStyle function in the class to get the unit style. 
    7171   * Add getUnitChar function to get the char. 
     
    7474  * Hash getStyledHash() - Returns the styled hash of the text. 
    7575  * CharSequence toSequence() - Gets the chars of the text as CharSequence. 
    76   * char getCharAt(int index) - Method for getting the char at a specific text's index. 
    77   * TextUnit getAt(int index) - Method for getting a text unit at a specific index. 
     76  * TextUnit unitAt(int index) - Method for getting a text unit at a specific index. 
    7877  * ImmText replace(HotTextInterval interval, ImmText text) - Method for replacing interval  
    7978  of the given text with another text. Replaces form the begin index inclusive to the end index exclusive. 
     
    102101 HotAttr<ImmList<String>> ATTACHMENT_ATTRIBUTE - represents the text attachments 
    103102(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  
     104foreground of the text with the attachments and this should be handled differently). 
     105 * The idea of the links and attachments is to handle them as styles (apply styles to the text when added).   
     106 
    104107 
    105108 * In LinkAttachment class add String linkId attribute - this is a random final value that is unique for every 
     
    119122 
    120123 * In org.sophie2.base.model.text.smart add new utility class ImmTextUtils that has: 
    121   * ImmText empty() - Creates an empty text. 
     124  * ImmText createEmptyText() - Creates an empty text. 
    122125  * int advance(ImmText text, int index, int offset) - navigates in text(if negative offset - navigate backwards 
    123126   else advande forwards). 
    124   *  HotTextInterval getNextAttrInterval - Returns interval from the given position to the last position in the given text   
    125 before which the value of the given attribute in this position is the same as the value of the attribute in the given position. 
    126   * boolean checkBounds - Checks if the given index is in the bounds of the given text. 
    127   * ImmText addLinkAttachment - Adds LINK_ATTRIBUTE to the given text with given link id. 
    128   * ImmText removeLinkAttachment - Removes LINK_ATTRIBUTE from the given text.This method only applies style to the given  
     127  * HotTextInterval getIntervalForAttr(ImmText text, HotAttr<T> attribute, int position) - Returns interval from the given position to the last position in the given text before which the value of the given attribute in this position is the same as the value of the attribute in the given position. 
     128  * boolean isIndexInText(int index, ImmText text) - Checks if the given index is in the bounds of the given text. 
     129  * ImmText addLinkAttachment(ImmText text, String linkAttachmentId,HotTextInterval attachmentInterval) - Adds LINK_ATTRIBUTE to the given text with given link id. 
     130  * ImmText removeLinkAttachment(ImmText text,HotTextInterval attachmentInterval)- Removes LINK_ATTRIBUTE from the given text.This method only applies style to the given  
    129131  interval that has link attribute set to it's default value. Does not check if the interval has consistent link attribute. 
    130   * getStyleValue - Retrieves a specific text attribute's value at a specific position of the given text. 
     132  * <T> T getStyleValue(ImmText text, int position, HotAttr<T> attribute) - Retrieves a specific text attribute's value at a specific position of the given text. 
    131133  
    132134== TEXT LAYOUT PART ==