Changes between Initial Version and Version 1 of BUG_BASE_HALOS_R0_LAYOUT_ZOOMED


Ignore:
Timestamp:
05/19/09 19:39:50 (16 years ago)
Author:
sriggins
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BUG_BASE_HALOS_R0_LAYOUT_ZOOMED

    v1 v1  
     1= Analysis = 
     2 
     3== Overview == 
     4 
     5Halo menus are laid out with absolute coordinates defined by the halo menu.  This means that there is no coordination going on between halo menus to prevent them from overlapping.  This happens now when the user zooms the book out ot 10%, but it can happen later if plugins are allowed to provide their own halo menus. 
     6 
     7This task should change the way halos lay out so they don't overlap when there is a small frame or the page work area is zoomed in. 
     8 
     9== Task requirements == 
     10 
     11 * Determine how to handle overlapping halo menus, or more importantly how to layout halo menus in ways other than absolute coordinates 
     12 * For now, a simple minimal bounding rectangle, aligned with the selection topLeft will suffice 
     13 
     14== Task result == 
     15 
     16 * The result of this task is code 
     17 
     18== Implementation idea == 
     19 
     20 * For a first pass, we can add a helper method to aid in determined what a true rectangle for halos should be.  This would help with the issue of the frame (for example) getting smaller, but it won't help with plugins deciding they want to be placed where some other menu decided it should be.  Potentially we'll need a halo menu layout system, that takes all of the halo menus, moves them so they don't overlap, and determines what the minimal bounding rectangle for them is.  This may prove to be difficult given the existing absolute coordinate system, where halo menus place themselves on the page.  Maybe we need halo menus to be able to also provide some hinting, for example topRight, or bottomCenter, and a HaloContainer can lay out the halo menus itself, sorted in order by the sort key within the position. 
     21 
     22== Related == 
     23 * [wiki:BASE_HALOS_R0] 
     24 
     25== How to demo == 
     26  
     27 * Demo how the halo menus lay out properly when the page work area is zoomed to 10%, or a small frame is created 
     28 
     29= Design = 
     30  
     31 * Due to time constraints, we decided to not implement a new halo menu layout system.  Instead, I will add two static ints to AppHaloUtil that determine the smallest width and height of a rectangle that the halo menus should use 
     32 
     33  * I'll then write a method to return the selection bounds constrained by this minimal rectangle, and utilize it in the halo menus that wrap frames. 
     34 
     35= Implementation = 
     36 
     37  * Added a method to AppHaloUtil that gets the minimum selection bounds 
     38  * Replace code with call to new method in rotate, move and main halo menus 
     39  * see [2422] 
     40 
     41= Testing = 
     42^(Place the testing results here.)^ 
     43 
     44= Comments = 
     45^(Write comments for this or later revisions here.)