#include <image_transitions.h>
Inheritance diagram for GDKImageTransitionAdapter:


Public Member Functions | |
| GDKImageTransitionAdapter (ImageTransition *transition) | |
| virtual | ~GDKImageTransitionAdapter () |
| char * | GetDescription () const |
| void | GetFrame (uint8_t *io, uint8_t *mesh, int width, int height, double position, double frame_delta, bool reverse) |
Private Attributes | |
| ImageTransition * | transition |
Since not all transitions will require additional GUI functionality, this class is provided as a convenience to wrap the non-GDK transitions into basic GDK transitions.
Definition at line 82 of file image_transitions.h.
|
|
Definition at line 88 of file image_transitions.h. 00088 { this->transition = transition; }
|
|
|
Definition at line 89 of file image_transitions.h. References transition. 00089 { delete transition; }
|
|
|
Implements ImageTransition. Definition at line 90 of file image_transitions.h. References ImageTransition::GetDescription(), and transition. 00090 { return this->transition->GetDescription( ); }
|
|
||||||||||||||||||||||||||||||||
|
Implements ImageTransition. Definition at line 91 of file image_transitions.h. References ImageTransition::GetFrame(), and transition. 00092 {
00093 return this->transition->GetFrame( io, mesh, width, height, position, frame_delta, reverse );
00094 }
|
|
|
Definition at line 85 of file image_transitions.h. Referenced by GetDescription(), GetFrame(), and ~GDKImageTransitionAdapter(). |
1.4.2