Changes between Version 8 and Version 9 of FRAME_SIZE_R1


Ignore:
Timestamp:
06/01/09 11:50:24 (16 years ago)
Author:
deni
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FRAME_SIZE_R1

    v8 v9  
    3030 
    3131= Design = 
    32 ^(Describe your design here.)^ 
     32 
     33As described in the analysis, the resize area will be a thin rectangular area around the border outline. [[BR]] 
     34It 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 
     41Each subarea changes the size and position of the frame in a different way, so that the opposite one stays in place.[[BR]] 
     42Each subarea will have the position used for its construction (from the Position enum) and 2 coefficients - changeX and changeY.[[BR]] 
     43changeX 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 
     47The same applies for changeY 
     48 
     49So if we drag some of the resize areas, the code that will resize the frame will look like: 
     50 
     51{{{ 
     52Frame f; // the frame we're resizing 
     53ImmRect r; // the border outline 
     54RezizeAreSceneElement resizeArea; // the resize subarea 
     55ImmPoint startPos; // the initial position of the point we started to drag 
     56ImmPoint mousePos; // the current position of the mouse, i.e. we dragged the resize area from startPos to mousePos 
     57 
     58float width = r.getWidth() +  
     59        resizeArea.changeX().get() * (startPos.getX() - mousePos.getX()); 
     60float height = r.getHeight() +  
     61        resizeArea.changeY().get() * (startPos.getY() - mousePos.getY()); 
     62 
     63Position positionToKeep = resizeArea.position().get().getOpposite(); 
     64ImmPoint pointToKeep = r.getPoint(opposite); 
     65 
     66f.setSize(BoundMode.MID_BORDER, new ImmSize(width, height)); 
     67f.setLocation(BoundMode.MID_BORDER, positionToKeep, pointToKeep); 
     68}}} 
     69 
     70A 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(); 
     75In 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 
     79A new ElementHelper for resize area scene elements is needed - ResizeAreaElementHelper [[BR]] 
     80In getResponsibleArea() it will construct a rectagular area around the border outline. 
     81 
     82 
     83 
     84In 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 
     87A new controller used by FrameView to resize the frame will be created. 
     88It will consist of 3 operations: 
     89 * RESIZE_START 
     90It has a filter with eventId = InputEventR3.MOUSE_CLICKED, source class - FrameView.class and tip class - ResizeAreaSceneElement.class [[BR]] 
     91In 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  
     93It has a filter with eventId = InputEventR3.MOUSE_DRAGGED, source class - FrameView.class and tip class - ResizeAreaSceneElement.class [[BR]] 
     94In the handle method it will actually resize the frame 
     95 * RESIZE_END 
     96It has a filter with eventId = InputEventR3.MOUSE_DRAGGED, source class - FrameView.class and tip class - ResizeAreaSceneElement.class [[BR]] 
     97In the handle method it will log a change for the UndoManager, so that the resize action could be undone. 
     98 
    3399 
    34100= Implementation =