33 | | ^(Describe your design here.)^ |
| 33 | * Remove the HotPosKind class from org.sophie2.base.model.text.smart package. The places where functions of this class were used are refactored only by deleting the usage of the functions (example: HotPosKind.getIndexForKind(beginIndex, prevPos.getKind()) is reduced to beginIndex). |
| 34 | * In TextViewFlow class add a RwProp<HotStyleDef> inputStyle to hold the current inputStyle, selected by the user. |
| 35 | * In TextFlowLogic: ON_APPLY_STYLE if there is no selected interval add the selected user style in the inputStyle of the current flow. |
| 36 | * In TextFlowLogic : fireSetText function fire the newly created event with styled text created from the styles hold in the inputStyle property. |
| 37 | And if the handled, the inputStyle property is set to HotStyleDef.empty().(in order to prevent typing with the old styles in the future) |
| 38 | * In HotPos class remove the getKind function(no longer needed). |
| 39 | * In HeadTextFrameView class in textLayout() property remove the setting of the caret and mark pos to the end of the last changed text interval because now the last index is also updated when inserting or removing fragments of the text.(this was needed for the undo) |
| 40 | * In HotTextLogic: pasteText function remove the block with setting the mark pos and caret pos again because the last position is updated. |
| 41 | * In ImmHotText class reduce the usage of HotPosKind class.Now the indexes of the chars begins from 0 and ends with length of the text's chars. There are no mid, after ot before poses. The styles are applied from the beginning of the given interval inclusive to the end of this interval exclusive. insertChar function's body is removed and now this function uses replaceText function. |
| 42 | * ImmHotText:getStyleValue(HotPos,Attr) now uses getStyleValue(HotInterval,Attr) function. |
| 43 | * ImmHotText:changePosKind function is removed.(no longer needed) |
| 44 | * In ImmHotText:ElemeOp:InsertOp:updatePastIndex the index that is >= from the InsertOp's position should be updated(the logic is that you insert before the given index so the given index also should be updated)(this is really a mystery to me how the previos text has updated only the indexes that were > from the position...sholud have had troubles...so maybe some ugly dirty fix is inserted somewhere to reduce the exceptions...but I haven't managed to find it yet...) |
| 45 | source of the tests may be found here: [8668] |
| 46 | Note: some of the tests are changed because of the changed logic(the exclusion of the interval that the styles are applied to).And the last test sholud not pass yet(it's fixing is related to another ticket but is a good test so I won't remove it :)). |