28 | | ^(Describe your design here.)^ |
29 | | |
| 28 | Build an hierarchy on both the Java and C++ parts using the common design described in GROUP_WRAPPERS_R0. |
| 29 | In 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)]] |