Changes between Version 31 and Version 32 of IMAGE_CONTENT_R0


Ignore:
Timestamp:
12/22/08 14:43:53 (16 years ago)
Author:
alex
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IMAGE_CONTENT_R0

    v31 v32  
    77== Overview == 
    88Image content view is a view for images which supports scenes and advanced features such as cropping, zooming, rotation and etc. 
     9Image content is a model for image content (resources). 
     10 
    911== Task requirements == 
    1012 * Define an image content view. 
    1113 * 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. 
    1216 
    1317== Task result == 
     
    1923 * It should be able to construct an !ImageSceneElement. 
    2024 
     25 * Create !ImageFrameContent wich ia a model describing images as content. 
     26 * It should inherit !FrameContent. 
     27 * It should point to an !ImageBookResource. 
     28 
    2129== Related == 
    2230 * [wiki:FRAME_CONTENT_R0][[BR]] 
    2331 
    2432== How to demo == 
    25  * Create a !FrameView containing a Frame with !ImageFrameContent. 
     33 * Create C!FrameView containing a Frame with !ImageFrameContent. 
    2634 * The !FrameView should contain an !ImageContentView. 
    2735 * 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); 
    2837 
    2938= 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. 
    3240 * It should implement the model property of !ContentView with template type !ImageFrameContent. 
    3341 * It should implement the element property of !ContentView with template type !ImageSceneElement. 
    3442 * 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. 
    3546 
    3647= Implementation =