Changes between Version 13 and Version 14 of HALOS_REDESIGN_R0
- Timestamp:
- 07/29/09 14:39:47 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HALOS_REDESIGN_R0
v13 v14 52 52 = Design = 53 53 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 54 66 * '''The hud appears under the hud halo button it is connected to:''' 55 67 * Refactor {{{HudDialog.swingComponent}}}: … … 77 89 * Remove the constant {{{HudDialog.HUD_SIZE_PROP_ID}}}. 78 90 * 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. 80 94 81 95 * '''The subhud should align with the sub hud button:'''