Changes between Version 21 and Version 22 of IMAGE_CONTENT_R0


Ignore:
Timestamp:
12/19/08 11:59:21 (16 years ago)
Author:
alex
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IMAGE_CONTENT_R0

    v21 v22  
    33[[TicketQuery(summary=IMAGE_CONTENT_R0, format=table, col=summary|owner|status|type|component|priority|effort|importance, rows=description|analysis_owners|analysis_reviewers|analysis_score|design_owners|design_reviewers|design_score|implementation_owners|implementation_reviewers|implementation_score|test_owners|test_reviewers|test_score|)]] 
    44 
    5  
    6  
    75= Analysis = 
    86 
    97== Overview == 
    10  * Image content is a content of a frame representing images. 
    11  * Image resources are resources for images. 
    12  * Image resources have the same information as any other resources plus specific information about the images they are representing. 
    13  * There should be drag and drop support, so images can be dropped onto frame so image content is created automatically from them. Images are scaled if they are bigger than the frame they are dropped onto. 
    14  * There should be support for creating  a frame with image content by choosing an image file. 
    15  * Images should support cropping, resizing, zooming. 
     8 * Define a view model for image frame content. 
     9 * The model should be able to construct scene elements. 
     10 * The model should have a way to define advanced image features such as cropping, zooming, rotation etc. 
    1611 
    1712== Task requirements == 
    18  * Define basic image content. 
    19  * Define basic image resource. 
    20  * You should be able to retrieve the size of an image. 
     13 * Define image content view model. 
     14 * It should be able to construct a basic (supporting no advanced features) scene element representing an image. 
    2115 
    2216== Task result == 
     
    2418 
    2519== Implementation idea == 
    26  * Create class !ImageContent which is concrete implementation of org.sophie2.base.model.book.!FrameContent for images. 
    27  * !ImageContent should override mainResource() and return Prop<!ImageResource>. 
    28  * Create class !ImageResource which is concrete implementation of org.sophie2.base.model.book.resource.!BookResource for image resources. 
    29  * !ImageResource should have method size() for retrieving the image size. 
     20 * Create !ImageContentView  which is image content view model. 
     21 * It should inherit !ContentView. 
     22 * It should construct an !ImageSceneElement. 
    3023 
    3124== Related == 
    32  * [wiki:UNPLANNED_BASE_MODEL_FRAME_CONTENT_R0][[BR]] 
    33  * [wiki:BASE_RESOURCE_COMMONS_R0] 
     25 * [wiki:FRAME_CONTENT_R0][[BR]] 
    3426 
    3527== How to demo == 
    36  * Create a frame with image resource. 
    37  * Check if the resource is set correctly and check if the information about the resource is correct. 
    38  * Try changing the resource and check again the same things. 
     28 * Create a !FrameView containing a Frame with ImageFrameContent. 
     29 * The !FrameView should contain an !ImageContentView. 
     30 * We should be able to view a frame with an image using scenes and the scene element from the !FrameView. 
    3931 
    4032= Design =