Changes between Version 1 and Version 2 of LINKS_ACTIONS_SHOWING_R0
- Timestamp:
- 02/20/09 08:18:56 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
LINKS_ACTIONS_SHOWING_R0
v1 v2 4 4 5 5 = Analysis = 6 ^(Give as much as possible of the needed information for designing and implementing the task in the following sections.)^7 6 8 7 == Overview == 9 ^(Provide a brief overview of the whole task in its first revision. Stick to the current revision of the task, but keep an eye to the whole task progress, and stay alert for possible smells.)^ 8 9 Implement actions that control the visible state of frames. These actions include: 10 11 * Show frame - Sets the visible of a frame to true 12 * Hide frame - Sets the visible of a frame to false 13 * Toggle frame - Inverts the visibility of a frame 14 * Show in Front - Sets the visible of a frame to true and sets the Z-Order to 1 15 * Toggle in Front - Hides the frame if visible, otherwise shows the frame and sets the Z-Order to 1 16 10 17 11 18 == Task requirements == 12 ^(List the necessary requirements that the task must fulfill.)^ 19 20 * Implement the actions listed in the overview 13 21 14 22 == Task result == … … 16 24 17 25 == Implementation idea == 18 ^(Provide some rough implementation idea(s).)^ 26 27 * The targets of these actions can only be frames 28 * Make sure the actions use the change system so that the effects of these actions are temporary 29 * See the actions common task for how to implement actions 19 30 20 31 == Related == 21 ^(Add links to related tasks that could be useful or helpful.)^ 32 33 * [wiki:LINKS_ACTIONS_COMMON_R0] 22 34 23 35 == How to demo == 24 ^(Provide instructions for demonstration of the task.)^ 36 37 Demo the actions by creating actions and triggering them 25 38 26 39 = Design =