Changes between Version 4 and Version 5 of PRO_CHANGE_UNDO_MANAGER_R0
- Timestamp:
- 01/20/09 00:56:55 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PRO_CHANGE_UNDO_MANAGER_R0
v4 v5 8 8 9 9 == Overview == 10 Evaluate the current undo code with regard to PRO_LIB needs. 10 The PRO_LIB needs to be able to track and undo/redo changes made to properties. I believe these are called "auto properties" You will need to write a module, or modify the existing undo manager, that can be used when auto properties are indeed changed. 11 12 Grouping is also important, because changing one property may cascade and change 12 others. This task needs to track this and make sure it is undoable. 13 14 This task also needs to document the undo manager so that others use it properly. 15 16 Also consider the need to merge change sets. This would be applicable in, for example, a collaborative environment. Whatever sets come out of the grouping requirement, determine if those change sets are able to be merged, or if this is an impossible task for now. 11 17 12 18 == Task requirements == 13 19 14 20 * Evaluate the current undo mechanism in PRO_LIB 15 * Ensure the ability to undo/redo property changes16 * Ensurethe ability to group changes17 * Addthe ability to merge change sets21 * Add the ability to undo/redo auto property changes 22 * Add the ability to group changes 23 * Evaluate the ability to merge change sets 18 24 19 25 == Task result == 20 A module that adds change set management to PRO_LIB 26 27 A module that adds change set management to PRO_LIB. 21 28 22 29 == Implementation idea == 23 * org.sophie2.core.prolib.util.UndoManager 24 * org.sophie2.core.prolib.events.ProChange 30 * Look at: 31 * org.sophie2.core.prolib.util.UndoManager 32 * org.sophie2.core.prolib.events.ProChange 25 33 26 34 == Related == 27 ^(Here you can add related tasks that could be useful or helpful.)^ 35 36 [wiki:PRO_CHANGE_INFOS_R0] 37 [wiki:PRO_CHANGE_MANAGER_R0] 28 38 29 39 == How to demo == 30 ^(In this section you must add instructions for the demo of the task.)^ 40 41 Demo actions that use change the values of auto properties and then undoing them. 31 42 32 43 = Design =