Changes between Version 20 and Version 21 of TEXT_VIEW_MODEL
- Timestamp:
- 04/20/10 19:01:14 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TEXT_VIEW_MODEL
v20 v21 64 64 * In org.sophie2.base.model.text package add class '''TextStyleChange''' that extends TextChange class. This class is basic implementation of the functions in TextChange class for changes in text that represent applying styles on ImmText. It has two private fields - ''final HotTextInterval interval'' and ''final HotStyleDef style''. The first one holds the interval that the styles will be applied to and the second one holds the styles. The ''applyTo'' method calls ImmText#applyStyle function. 65 65 * In '''CommonAttr''' class add ''public static ImmList<HotAttr<?>> getAllAttr()'' function and remove the same from HotStyleDef class. This function gets all the attributes that are defined in the class. 66 * In '''CommonAttr''' class add new ''public static final HotAttr<Boolean> DUMMY_ATTRIBUTE'' - Attribute that is true only if the char is EMPTY_CHAR.This is needed because the last text run in the text layout has to consist only of the ''EMPTY_CHAR'' in order not to be drawn and not to be handled in complicated ways.67 * In '''ImmTextUtils''' class add new method: ''public static ImmText createDefaultText()'' - Creates a text with one char equal to '' EMPTY_CHAR''.66 * In '''CommonAttr''' class add new ''public static final HotAttr<Boolean> DUMMY_ATTRIBUTE'' - Attribute that is true only if the char is DOC_BREAK.This is needed because the last text run in the text layout has to consist only of the ''DOC_BREAK'' in order not to be drawn and not to be handled in complicated ways. 67 * In '''ImmTextUtils''' class add new method: ''public static ImmText createDefaultText()'' - Creates a text with one char equal to ''DOC_BREAK''. 68 68 * In org.sophie2.base.model.text.elements package add new final class : '''LayoutAttr''' that holds all the attributes that only the processors can apply to the text. 69 69 * In '''LayoutAttr''' class add ''HotAttr<Boolean> CARET_ATTR'' - this attribute represents the caret in the view. True if the caret is before that char. 70 * In '''CommonChar''' class add static final char ''EMPTY_CHAR'' - A dummy char inserted at the end of a text to help the text navigation. Used only in the layout.71 70 * In '''HotTextInterval''' class add new function: ''public HotTextInterval unite(HotTextInterval interval)'' - Unites two intervals - gets the largest possible interval from the given one and the current. 72 71 * In '''ImmTextUtils''' add new function: ''public static ImmText concat(ImmText text1, ImmText text2)'' - Concatenates the two given texts. Keeps the styles as the origin texts. … … 85 84 * In TextView class : EventIds rename the SET_TEXT to SET_CHANGE and set its event params to: 86 85 TextChange.class, String.class, Boolean.class - the change to be made, the description of the action and the significance (if it can be undo/redo). 87 86 * In HotLayout, HotTextLayout, HotAreaLayout, HotLineLayout, HotSegmentLayout:draw method add another parameter : isEditable that is true if the book is not preview mode (this is used to show if the caret should be drawn). 88 87 89 88 = Implementation =