Changes between Version 2 and Version 3 of GROUP_BASE_HALOS_AND_FRAME_POSITION_R1


Ignore:
Timestamp:
07/10/09 11:51:30 (16 years ago)
Author:
peko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_BASE_HALOS_AND_FRAME_POSITION_R1

    v2 v3  
    1515  * The HaloMenu currently deals with all buttons and we have only one type of halo. As the halo menus multiply, we need a way to restrict location of halo buttons in the menu. That is way we will have two types of halo menus: 
    1616   * [source:branches/private/peko/sophie2-base-halos-r1/sophie2-platform/modules/org.sophie2.base.halos/src/main/java/org/sophie2/base/halos/FloatingHaloMenu.java FloatingHaloMenu] - which is more of less like the current HaloMenu. It can have different locations. This is the case with the content halo idea, where the halo menu follows the caret in the text for example. 
    17    * In addition to that one we will introduce another kind of halo menu that is bound to a rectangle - [source:branches/private/peko/sophie2-base-halos-r1/sophie2-platform/modules/org.sophie2.base.halos/src/main/java/org/sophie2/base/halos/StaticHaloMenu.java StaticHaloMenu] 
     17   * In addition to that one we will introduce another kind of halo menu that is bound to a rectangle - [source:branches/private/peko/sophie2-base-halos-r1/sophie2-platform/modules/org.sophie2.base.halos/src/main/java/org/sophie2/base/halos/StaticHaloMenu.java StaticHaloMenu]. The implementations of this halo should provide a position according to the rectangle and the rectangle itself: 
     18{{{                 
     19////////////////////////////////////////// 
     20                //                                                                              // 
     21                //              *-upper left                                    // 
     22                //              +-----------+* - right                  // 
     23                //              |                       |*                                      // 
     24                //              |                       |*                                      // 
     25                //              |                       |                                       // 
     26                //              |                       |*                                      // 
     27                //              +-----------+                                   // 
     28                //               ****            ** - bottom right  // 
     29                //                 |                                                    // 
     30                //              bottom                                                  // 
     31                //                                                                              // 
     32                ////////////////////////////////////////// 
     33                 
     34         
     35                TOP, BOTTOM, LEFT, RIGHT, TOP_LEFT_CORNER, BOTTOM_LEFT_CORNER, TOP_RIGHT_CORNER, BOTTOM_RIGHT_CORNER 
     36}}} 
    1837 
    1938= Implementation =