32 | | ^(Describe your design here.)^ |
| 32 | |
| 33 | As described in the analysis, the resize area will be a thin rectangular area around the border outline. [[BR]] |
| 34 | It will be divided into 8 subareas in the following way: |
| 35 | * The border outline has 8 interesting points described in the Position enum - TOP_LEFT, MIDDLE_LEFT, etc. |
| 36 | * 8 rectangles with centers these points that are twice smaller than the border outline will be created. |
| 37 | * Each subarea will be constructed as the intersection of the resize area with one of these rectangles. |
| 38 | |
| 39 | [picture...] |
| 40 | |
| 41 | Each subarea changes the size and position of the frame in a different way, so that the opposite one stays in place.[[BR]] |
| 42 | Each subarea will have the position used for its construction (from the Position enum) and 2 coefficients - changeX and changeY.[[BR]] |
| 43 | changeX could be: |
| 44 | * 0 if the resize area does not change the width of the frame |
| 45 | * +1 if dragging this area down (increasing x) will make the frame bigger |
| 46 | * -1 if dragging this area down will make the frame smaller |
| 47 | The same applies for changeY |
| 48 | |
| 49 | So if we drag some of the resize areas, the code that will resize the frame will look like: |
| 50 | |
| 51 | {{{ |
| 52 | Frame f; // the frame we're resizing |
| 53 | ImmRect r; // the border outline |
| 54 | RezizeAreSceneElement resizeArea; // the resize subarea |
| 55 | ImmPoint startPos; // the initial position of the point we started to drag |
| 56 | ImmPoint mousePos; // the current position of the mouse, i.e. we dragged the resize area from startPos to mousePos |
| 57 | |
| 58 | float width = r.getWidth() + |
| 59 | resizeArea.changeX().get() * (startPos.getX() - mousePos.getX()); |
| 60 | float height = r.getHeight() + |
| 61 | resizeArea.changeY().get() * (startPos.getY() - mousePos.getY()); |
| 62 | |
| 63 | Position positionToKeep = resizeArea.position().get().getOpposite(); |
| 64 | ImmPoint pointToKeep = r.getPoint(opposite); |
| 65 | |
| 66 | f.setSize(BoundMode.MID_BORDER, new ImmSize(width, height)); |
| 67 | f.setLocation(BoundMode.MID_BORDER, positionToKeep, pointToKeep); |
| 68 | }}} |
| 69 | |
| 70 | A new class ResizeAreaSceneElement extending DefaultSceneElement with the following fields will be created: |
| 71 | * public Prop<ImmRect> borderOutline(); |
| 72 | * public Prop<Position> position(); |
| 73 | * public Prop<Integer> changeX(); |
| 74 | * public Prop<Integer> changeY(); |
| 75 | In addition, it will override clip() to construct the clipping rectangle - with center borderOutline().get().getPoint(position().get()) and width and height twice as small as the border outline's width and height. [[BR]] |
| 76 | |
| 77 | |
| 78 | |
| 79 | A new ElementHelper for resize area scene elements is needed - ResizeAreaElementHelper [[BR]] |
| 80 | In getResponsibleArea() it will construct a rectagular area around the border outline. |
| 81 | |
| 82 | |
| 83 | |
| 84 | In FrameView 8 resize scene elements will be added. They will also be added as subelements of FrameView.sceneElement after the border element (the order is important because the resize area should be above the border). |
| 85 | |
| 86 | |
| 87 | A new controller used by FrameView to resize the frame will be created. |
| 88 | It will consist of 3 operations: |
| 89 | * RESIZE_START |
| 90 | It has a filter with eventId = InputEventR3.MOUSE_CLICKED, source class - FrameView.class and tip class - ResizeAreaSceneElement.class [[BR]] |
| 91 | In the handle method it should save the current position of the border outline, so that it could be used for resizing later. It is necessary to do so because if we consider only the current state, the error accumulated will be too big. |
| 92 | * RESIZE |
| 93 | It has a filter with eventId = InputEventR3.MOUSE_DRAGGED, source class - FrameView.class and tip class - ResizeAreaSceneElement.class [[BR]] |
| 94 | In the handle method it will actually resize the frame |
| 95 | * RESIZE_END |
| 96 | It has a filter with eventId = InputEventR3.MOUSE_DRAGGED, source class - FrameView.class and tip class - ResizeAreaSceneElement.class [[BR]] |
| 97 | In the handle method it will log a change for the UndoManager, so that the resize action could be undone. |
| 98 | |