Changes between Version 31 and Version 32 of IMAGE_CONTENT_R0
- Timestamp:
- 12/22/08 14:43:53 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IMAGE_CONTENT_R0
v31 v32 7 7 == Overview == 8 8 Image content view is a view for images which supports scenes and advanced features such as cropping, zooming, rotation and etc. 9 Image content is a model for image content (resources). 10 9 11 == Task requirements == 10 12 * Define an image content view. 11 13 * It should contain a basic (supporting no advanced features) scene element representing an image. 14 * Define image content. 15 * It should be associated with an image resource. 12 16 13 17 == Task result == … … 19 23 * It should be able to construct an !ImageSceneElement. 20 24 25 * Create !ImageFrameContent wich ia a model describing images as content. 26 * It should inherit !FrameContent. 27 * It should point to an !ImageBookResource. 28 21 29 == Related == 22 30 * [wiki:FRAME_CONTENT_R0][[BR]] 23 31 24 32 == How to demo == 25 * Create a!FrameView containing a Frame with !ImageFrameContent.33 * Create C!FrameView containing a Frame with !ImageFrameContent. 26 34 * The !FrameView should contain an !ImageContentView. 27 35 * We should be able to view a frame with an image using scenes and the scene element from the !FrameView. 36 (Can't be created at the moment because of problems with !FrameView); 28 37 29 38 = Design = 30 * Create !ImageContentView class extending !ContentView. 31 * It's concrete implementation of !ContentView for image content. 39 * Create !ImageContentView class extending !ContentView. It's concrete implementation of !ContentView for images. 32 40 * It should implement the model property of !ContentView with template type !ImageFrameContent. 33 41 * It should implement the element property of !ContentView with template type !ImageSceneElement. 34 42 * It should implement the contentHaloMenu property of !ContentView with template type !ImageContentHaloMenu. 43 44 * Create !ImageFrameContent class extending !FrameContent. It's concrete implementation of !FrameContent for images. 45 * It should implement the mainResource property of !FrameContent with template type !ImageBookResource. 35 46 36 47 = Implementation =