62 | | * In org.sophie2.base.model.text.mvc package add new class public static class '''SelectionOptions<T>''' implements TextProcessor.Options - a class representing the options of the selection processor. This class has private final HotAttr<T> attribute, private final T value, private final HotTextInterval selectionInterval. The first one holds the attribute of the selection (CommonAttr.BACKGROUND_COLOR), the second one holds it's value (Ex: ImmColor.Blue) and the third one holds the selection interval. |
63 | | * In org.sophie2.base.model.text.mvc package add new class '''SelectionProcessor''' implements TextProcessor<SelectionOptions, DefaultTextEffect> - Processes text selection and caret.Its work consists of modifying some of the the color attributes for the selected chars, as well as to put a LayoutAttr#CARET_ATTR somewhere. |
| 62 | * In org.sophie2.base.model.text.mvc package add new class public static class '''SelectionOptions<T>''' implements TextProcessor.Options - a class representing the options of the selection processor. This class has private final HotAttr<T> attribute, private final T value, private final ImmTextInterval selectionInterval. The first one holds the attribute of the selection (CommonAttr.BACKGROUND_COLOR), the second one holds it's value (Ex: ImmColor.Blue) and the third one holds the selection interval. |
| 63 | * In org.sophie2.base.model.text.mvc package add new class '''SelectionProcessor''' implements TextProcessor<SelectionOptions, DefaultTextEffect> - Processes text selection and caret.Its work consists of modifying some of the the color attributes for the selected chars. |
75 | | * In org.sophie2.base.model.text add new class '''TextReplaceChange''' that extends TextChange. This class gives basic implementation of the TextChange's functions for a change representing replacing in the ImmText. This class has two private fields: ''final HotTextInterval interval'' and ''final ImmText substitution'' - the first one holds the interval that will be replaced and the second one holds the text for the substitution. The ''applyTo'' method simply calls ImmText#replace function. |
76 | | * 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. |
| 75 | * In org.sophie2.base.model.text add new class '''TextReplaceChange''' that extends TextChange. This class gives basic implementation of the TextChange's functions for a change representing replacing in the ImmText. This class has two private fields: ''final ImmTextInterval interval'' and ''final ImmText substitution'' - the first one holds the interval that will be replaced and the second one holds the text for the substitution. The ''applyTo'' method simply calls ImmText#replace function. |
| 76 | * 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 ImmTextInterval 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. |
82 | | * 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. |
83 | | * 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. |
84 | | * Rename '''TextViewFlow''' to '''TextModel''' and add new functions as follows: |
| 82 | * In '''ImmTextInterval''' class add new function: ''public ImmTextInterval unite(ImmTextInterval interval)'' - Unites two intervals - gets the largest possible interval from the given one and the current. This is needed when the text processors setOptions and changeOptions is called - to reuse some of the processed text before the change. |
| 83 | * 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. This is needed in the processors to add the DOC_BREAK in the end of the text and to keep its style. |
| 84 | * Rename '''TextViewFlow''' to '''TextModel''' , make it extend BaseProObject class and add new functions as follows: |
90 | | * In org.sophie2.main.func.text.view package add new class : abstract class '''TextResourceModel''' extends BaseTextModel - Base implementation of the TextModel that connects the view with the text resource. It has one function: public void changeModel(final TextChange change, ResourceAccess access, |
91 | | final ImmText text, boolean significant, String description) - Method for updating the text model with a given TextChange. Changes the text resource, related to the view that holds the current TextResourceModel and updates the caret and mark posses to stay consistent. |
92 | | * Make the class '''HeadTextModel''' extend TextResourceModel. |
| 90 | * In org.sophie2.main.func.text.view package add new class : abstract class '''ResourceTextModel''' extends BaseTextModel - Base implementation of the TextModel that connects the view with the text resource. It has one function: public void changeModel(final TextChange change, ResourceAccess access, |
| 91 | final ImmText text, boolean significant, String description) - Method for updating the text model with a given TextChange. Changes the text resource, related to the view that holds the current ResourceTextModel and updates the caret and mark posses to stay consistent. |
| 92 | * Make the class '''HeadTextModel''' extend ResourceTextModel. |
96 | | * 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). |
97 | | |
| 96 | * In org.sophie2.base.model.text.mvc pachage add new class CaretProcessor implements TextProcessor<CaretOptions, DefaultTextEffect> - Processes text with caret. It puts the LayoutAttr#CARET_ATTR somewhere. |
| 97 | * In CaretProcessor class add new class - CaretOptions implements TextProcessor.Options - Class representing the options of the caret processor. |
| 98 | * this class has two fvields : private final int caretPos and private final boolean withCaret - the first one represents the caret position in the |
| 99 | current text and the second one is true only if the caret should be drawn. |
| 100 | * the class has a default constructor - public CaretOptions(int caretPos, boolean withCaret). |
| 101 | * public int getCaretPos() - Getter for the caret position. Returns the position of the caret(will be drawn before the char in the returned position). |
| 102 | * public boolean getWithCaret() - Getter for the caret visibility. Returns true if the caret will be drawn, false otherwise. |