Changes between Version 1 and Version 2 of FLASH_CONTENT_BASIC_R2


Ignore:
Timestamp:
08/27/09 10:55:37 (16 years ago)
Author:
izomorphius
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FLASH_CONTENT_BASIC_R2

    v1 v2  
    2626 
    2727= Design = 
    28 ^(Describe your design here.)^ 
    29  
     28Build an hierarchy on both the Java and C++ parts using the common design described in GROUP_WRAPPERS_R0. 
     29In the C++ part: 
     30 * Add folder flash_utils in the src/ directory with four files in it - flash_player.h, flash_player.cpp cairo_handler.h and cairo_handler.cpp. The first two defining a class to handle a SwfdecPlayer object and the second two - a class to encapsulate operations on cairo objects 
     31   * Add class FlashException inheriting JavaMessageException 
     32   * Add class FlashPlayer 
     33   * Add class CairoHandler 
     34 * Create two files flash_messages.cpp and flash_messages.h in the commands folder in the src/ directory. 
     35   * Add class FlashBridge inheriting JavaBridge 
     36   * Add class OpenCommand that represents a command to open new flash file 
     37   * Add class SetSizeCommand that represents a command to edit the flash player size 
     38   * Add class GetSizeCommand that represents a command to get the current flash player size 
     39   * Add class GetFlashFrameCommand that represents a command to get the current frame's pixel data 
     40   * Add class FlashFrameResponse that represents the result of a successful GetFlashFrameCommand 
     41   * Add class FlashSizeResponse that represents the result of a successful SetSizeCommand 
     42   * Add two enumerations FlashCommandIds and FlashResponseIds(their names are self-explanatory) 
     43 C++ part class diagram:[[BR]] 
     44 [[Image(source:/branches/private/ivo/flash_content_basic_r2/FlashCppPart.png)]] 
    3045= Implementation = 
    3146^(Describe and link the implementation results here (from the wiki or the repository).)^