Changes between Version 12 and Version 13 of APP_LAYOUT_MYDOGGY_R0
- Timestamp:
- 01/14/09 10:21:31 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
APP_LAYOUT_MYDOGGY_R0
v12 v13 54 54 55 55 * Create class MDCompoundLayoutElement which extends MDLayoutElement and implement MDManageable. It describes containers like the flaps and tabs, that holds other MDLayoutElements and manage them. Apart of the implementation of the method toolWindowManager(), it should declare the abstract methods: 56 * add(MdLayoutElement) used for adding element to the list of contained elements and registering it in the corresponding tool window manager 57 * remove(MdLayoutElement) used for removing element from the list of the contained elements and unregistering it from the tool window manager 56 * addMDElement(MdLayoutElement) used for adding element to the list of contained elements and registering it in the corresponding tool window manager 57 * removeMDElement(MdLayoutElement) used for removing element from the list of the contained elements and unregistering it from the tool window manager 58 * and also should implement the inherited property by MDManageable toolWindowManager() used by the flaps and the tabs for managing of the children elements (correspondingly tabs and palettes). 58 59 59 60 * Create class MDFlap which should extend MDCompoundLayoutElement and implement the methods toolWindowManager(), add() and remove(). It should have the properties: 60 61 * flap() used for the Flap structure 61 62 * tabs() used for the list of all tabs which belongs to this flap 62 * parent() - used for link to the main window, where this flap is attached to. 63 * parentMainWindow() - used for link to the main window, where this flap is attached to 64 * swingComponent() - (inherited by MDLayoutElement) used for graphical representation of the flap. 63 65 64 66 * Create class MDTab which should extend MDCompoundLayoutElement and implement the methods toolWindowManager(), add() and remove(). It also should have the properties: 65 67 * tab() used for the Tab structure 66 68 * palettes() used for the list of all palettes which are attached to this tab 67 * parent() - used for link to the flap, which holds this tab. 69 * parentFlap() - used for link to the flap, which holds this tab. 70 * swingComponent() - (inherited by MDLayoutElement) used for graphical representation of the tab. 68 71 69 72 * Create class MDPalette which should extend MDLayoutElement class. It should have the properties: 70 73 * palette() used for the Palette structure 71 * parent() - used for connection to the tab, which possess this palette. 74 * parentTab() - used for connection to the tab, which possess this palette. 75 * swingComponent() - (inherited by MDLayoutElement) used for graphical representation of the palette. 72 76 73 * The demo test org.sophie2.main.layout.mydoggy.MyDoggyLayoutTest.java tests creation, updating, showing and hiding of MDMainWindow components. 77 * Create abstract factory class MDToolWindowFactory, which is used for graphical configuration of the tool windows that the contained elements posses. 78 79 * The demo test org.sophie2.main.layout.mydoggy.MyDoggyLayoutDemo.java tests creation, updating, showing and hiding of MDMainWindow components. 74 80 75 81 = Implementation =