9 | | ^(Provide a brief overview of the whole task in its first revision. Stick to the current revision of the task, but keep an eye to the whole task progress, and stay alert for possible smells.)^ |
| 8 | In this group the model and the functionality for the text elements should be defined. The model should allow the creation of chained views, styling of text, rotation, transparency and different modes of wrapping . It should allow persisting of texts along with all the applied attributes. The task consists of two logical parts |
| 9 | |
| 10 | * a model for the text itself |
| 11 | * a model for the view components. |
| 12 | |
| 13 | 1. Text model |
| 14 | |
| 15 | * The model for the text consist of styled text and contains information about the attributes of the text itself |
| 16 | o font |
| 17 | o size |
| 18 | o color |
| 19 | o opacity |
| 20 | o modifiers (bold, italic, underline, strikethrough) |
| 21 | o attached actions |
| 22 | o other attributes that may appear |
| 23 | * The chained view components will share a common text model and each will display only part of it. |
| 24 | |
| 25 | 2. Individual text component model |
| 26 | |
| 27 | * The model of the individual text component should contain additional information for the rendering of the text in the particular view – transparency |
| 28 | o rotation |
| 29 | o wrapping mode |
| 30 | o other attributes that may appear |
| 31 | * The view component model should contain information what part of the text model it should display, in the case of chained views. |
| 32 | * A mechanism should exist that will trigger recalculation of the ranges of the texts displayed in different chained views if some change is made in one of them, causing its range to change. Among this kind of changes include |
| 33 | o insert/remove/replace text |
| 34 | o change the size of the view component |
| 35 | o changes in the size of some part of the text inside the component |
| 36 | o change the wrapping mode of the component |
| 37 | o maybe other |
| 38 | |
| 39 | A mechanism for persisting both models should be designed and it should be consistent with the overall persistent strategy in Sophie (BASE_PERSISTENCE_INTERMEDIATE_STORAGE_R0, BASE_PERSISTENCE_COMMONS_R0) |
| 40 | |
| 41 | In both models a undo/redo mechanism should be designed in a way that will allow it so seamlessly integrate with the properties oriented undo/redo mechanism used in Sophie (PRO_CHANGE_UNDO_MANAGER_R0). |
| 42 | |
| 43 | Considering the complexity of this task it is probable that parts of it will have to be moved to separate tasks and, in addition, unplanned related tasks can emerge. Such tasks have to be identified and described, during the work. Such tasks may be, for example, the persistence mechanism, the undo/redo mechanism, the attachment of actions (hyperlink style) to the text, and others. |