Changes between Version 22 and Version 23 of FRAME_BORDERS_R0


Ignore:
Timestamp:
12/12/08 19:39:17 (16 years ago)
Author:
mira
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FRAME_BORDERS_R0

    v22 v23  
    3333= Design = 
    3434 
    35  * Create org.sophie2.base.model.book.!BorderProperties class 
    36 The new class should extend !BaseProObject class and have all needed properties for the borders definition: 
    37   * Float width() - the width of the border 
     35 * Create org.sophie2.base.model.book.!ColorProps class 
     36The new class should extend !BaseProObject class and have needed properties for color definition: 
    3837  * Color color() - the color of the border 
    3938  * Float transparency() -  the transparency of the border (an float between 0 and 1) 
    4039 
    41  * Create org.sophie2.base.model.book.Border class 
    42 The new class should extend !BaseProObject class and have four properties for the left, right, bottom and top borders: 
    43    * !BorderProperties left() 
    44    * !BorderProperties right() 
    45    * !BorderProperties bottom() 
    46    * !BorderProperties top() 
     40 * Create org.sophie2.base.model.book.Insets class 
     41The new class should extend !BaseProObject class and have four properties for the left, right, bottom and top widths: 
     42   * !Float left() 
     43   * !Float right() 
     44   * !Float bottom() 
     45   * !Float top() 
    4746 
    48  * Add Border border property to the Frame  
     47 * Add !ColorProps color and !Insets !borderInsets properties to the Frame  
    4948 
    5049* The demo test org.sophie2.base.model.book.!BordersTets.java tests creation and changing of frames with different borders.