Changes between Version 6 and Version 7 of APP_LAYOUT_MYDOGGY_R0


Ignore:
Timestamp:
01/08/09 10:52:47 (16 years ago)
Author:
nvasilev
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • APP_LAYOUT_MYDOGGY_R0

    v6 v7  
    2626 
    2727= Design = 
    28  * Create org.sophie2.layout.mydoggy module 
     28 * Create org.sophie2.main.layout.mydoggy 
    2929The new module should depend on org.sophie2.base and org.sophie2.base.layout. It should include all classes related to the concrete !MyDoggy layout implementation. 
    3030 
     
    4949  * tooltip() used by !GuiElement 
    5050  * orientation() used to keep the initial orientation of the element in its container. This property should be of type Orientation, described above 
    51   * manager() used for link to the container to which this elements belongs to. It should be of type MdManageable. 
    5251  * swingComponent() used for the graphical representation of the element. !JPanel was used during the exploring the MyDoggy library, but during the implementation should be clarified what type it must be for any of the elements. 
    5352 
     
    5958  * flap() used for the Flap structure 
    6059  * tabs() used for the list of all tabs which belongs to this flap 
    61   * manager() - used for link to the main window, where this flap is attached to. 
     60  * parent() - used for link to the main window, where this flap is attached to. 
    6261   
    6362 * Create class MDTab which should extend MDCompoundLayoutElement and implement the methods toolWindowManager(), add() and remove(). It also should have the properties: 
    6463  * tab() used for the Tab structure 
    6564  * palettes() used for the list of all palettes which are attached to this tab 
    66  
    67   * manager() (overrided property) - used for link to the flap, which holds this tab. 
     65  * parent() - used for link to the flap, which holds this tab. 
    6866 
    6967 * Create class MDPalette which should extend MDLayoutElement class. It should have the properties: 
    7068  * palette() used for the Palette structure 
    71   * manager() - used for connection to the tab, which possess this palette. 
     69  * parent() - used for connection to the tab, which possess this palette. 
    7270 
    7371* The demo test org.sophie2.layout.mydoggy.!MyDoggyDemo.java tests creation, updating, showing and hiding of !MDMainWindow components.