Changes between Version 6 and Version 7 of FRAME_SIZE_R0
- Timestamp:
- 01/06/09 19:03:14 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FRAME_SIZE_R0
v6 v7 34 34 = Design = 35 35 In the Frame class: 36 * Create sizeToDo() property for the size of the frames rectangle in default mode. This is the contents size. The name ends with "todo" because there is size property used by the !FrameView to visualize the frame with JComponents. In later revisions (when the JComponents are no longer used and the view is only creating scene elements) it should be changed to just size().36 * Rename the size() property which is used for the size of the frames rectangle in default mode to contentSize() for more clearance. 37 37 38 * There should be Create boundsTodo() Auto property computed by the locationTodo and sizeTodo so that they could be manipulated simultaneously. If it is not created, create it, too. 39 40 * Create the method !ImmSize getSize(!BoundMode mode). Using the !BoundMode enum it should calculate the size of any of the bound modes rectangles. 38 * Create the method !ImmSize getSize(!BoundMode mode). Using the !BoundMode enum it should calculate the size of the frame rectangle in the given mode. 41 39 42 * Create the method setSize(!BoundMode mode, !ImmSize size). The arguments represent the size of any of the bound modes rectangles. Using the !BoundMode enum it should calculate the size of the default rectangular. This is the size of the frame content.40 * Create the method setSize(!BoundMode mode, !ImmSize size). It could use the !BoundModes setSize() method to calculate the size to be set to content according to the mode in which the new size is given. 43 41 44 * It uses the BoundMode.getSize method to calculate the size of frame 45 * rectangular in the given mode 46 * It uses the BoundMode.setSize method to calculate the size to set 47 * according to the mode in which it is given. 48 49 * !TestBoundMode demonstrates the use of those frame bounds functionalities in different modes. 50 [source:trunk/sophie2-platform/modules//org.sophie2.base.model.book/src/test/java/org/sophie2/base/model/book/TestFrameSize.java?rev=992] 42 * !TestFrameSize demonstrates the use of those frame bounds functionalities in different modes. 43 [source:trunk/sophie2-platform/modules/org.sophie2.base.model.book/src/test/java/org/sophie2/base/model/book/TestFrameSize.java?rev=992] 51 44 52 45 = Implementation =