Changes between Version 1 and Version 2 of GROUP_BASE_MODEL_TEXT_R0


Ignore:
Timestamp:
03/19/09 09:55:49 (16 years ago)
Author:
nenko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_BASE_MODEL_TEXT_R0

    v1 v2  
    44 
    55= Analysis = 
    6 ^(Give as much as possible of the needed information for designing and implementing the task in the following sections.)^ 
    76 
    87== Overview == 
    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.)^ 
     8In 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 
     131. 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 
     252. 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 
     39A 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 
     41In 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 
     43Considering 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.  
    1044 
    1145== Task requirements == 
    12 ^(List the necessary requirements that the task must fulfill.)^ 
     46Focus on following requirements: 
     47 
     48    * The model should support chaining of views. 
     49    * The model should support styling of the text. 
     50    * The model should support selection split over more than one view. (selection of text starting in one view and continuing in another)  
    1351 
    1452== Task result == 
    15 ^(List the end product of the task (for example "Source code", "Wiki page", etc.))^ 
     53The result of this task should be design description and only a prove of concept prototype implementation code.  
    1654 
    1755== Implementation idea == 
    18 ^(Provide some rough implementation idea(s).)^ 
     56Currently the text support presented in JDK is not sufficient for our requirements. So we need to design our own such one. 
    1957 
    2058== Related == 
    21 ^(Add links to related tasks that could be useful or helpful.)^ 
     59 
     60[wiki:BASE_PERSISTENCE_INTERMEDIATE_STORAGE_R0][[BR]] 
     61[wiki:BASE_PERSISTENCE_COMMONS_R0][[BR]] 
     62[wiki:WRAPPING_TEXT_RENDERING_R0][[BR]] 
     63[wiki:PRO_CHANGE_UNDO_MANAGER_R0] 
    2264 
    2365== How to demo == 
    24 ^(Provide instructions for demonstration of the task.)^ 
     66 * Create a frame containing more than one text views over the same model, prefilled with text, with at least two different styles. 
     67 * Observe the different styles 
     68 * Type some text in the views and observe the splitting of the text on different views. 
     69 * Select some text with part of the selection at the end of the first view and part – at the beginning of the second.  
     70 * Copy and paste the selected text to ensure the selection is correct 
    2571 
    2672= Design =