Changes between Version 13 and Version 14 of HALOS_REDESIGN_R0


Ignore:
Timestamp:
07/29/09 14:39:47 (16 years ago)
Author:
mitex
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HALOS_REDESIGN_R0

    v13 v14  
    5252= Design = 
    5353 
     54 * LogicR3: 
     55  * In {{{HaloButton}}} remove the method {{{userClick}}}. 
     56  * Create enum {{{HaloEventIds}}}: 
     57   * {{{HALO_CLICK}}}, 
     58   * {{{HALO_MOUSE_OVER}}}, 
     59   * {{{HALO_MOUSE_EXITED}}}. 
     60  * In {{{HaloButton.swingComponent}}} replace the call to {{{userClick}}} with firing an R3 event {{{HALO_CLICK}}}. 
     61  * Refactor all subclasses - move the logic in {{{userClick}}} to R3 logic enums. 
     62  * In {{{HaloButton.swingComponent}}}, in the {{{create}}} method, add new mouse listener: 
     63   * {{{mouseEntered}}} should fire {{{HALO_MOUSE_OVER}}} event, 
     64   * {{{mouseExited}}} should fire {{{HALO_MOUSE_EXITED}}} event. 
     65 
    5466 * '''The hud appears under the hud halo button it is connected to:''' 
    5567  * Refactor {{{HudDialog.swingComponent}}}: 
     
    7789  * Remove the constant {{{HudDialog.HUD_SIZE_PROP_ID}}}. 
    7890  * In all huds remove the skin records with {{{HUD_SIZE_PROP_ID}}}. 
    79   * In {{{HudDialog.computeSize}}} ............. 
     91  * In {{{HudDialog.computeSize}}} use the sizes of all swing components of the items in the {{{elements}}} list: 
     92   * The height should be the sum of all heights, plus some margin for each item. 
     93   * The width should be the maximum width of all elements, plus some margin. 
    8094 
    8195 * '''The subhud should align with the sub hud button:'''