Changes between Version 6 and Version 7 of APP_LAYOUT_MYDOGGY_R0
- Timestamp:
- 01/08/09 10:52:47 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
APP_LAYOUT_MYDOGGY_R0
v6 v7 26 26 27 27 = Design = 28 * Create org.sophie2. layout.mydoggy module28 * Create org.sophie2.main.layout.mydoggy 29 29 The 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. 30 30 … … 49 49 * tooltip() used by !GuiElement 50 50 * 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.52 51 * 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. 53 52 … … 59 58 * flap() used for the Flap structure 60 59 * 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. 62 61 63 62 * Create class MDTab which should extend MDCompoundLayoutElement and implement the methods toolWindowManager(), add() and remove(). It also should have the properties: 64 63 * tab() used for the Tab structure 65 64 * 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. 68 66 69 67 * Create class MDPalette which should extend MDLayoutElement class. It should have the properties: 70 68 * 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. 72 70 73 71 * The demo test org.sophie2.layout.mydoggy.!MyDoggyDemo.java tests creation, updating, showing and hiding of !MDMainWindow components.