#include <image_create.h>
Inheritance diagram for GDKImageCreateAdapter:


Public Member Functions | |
| GDKImageCreateAdapter (ImageCreate *creator) | |
| virtual | ~GDKImageCreateAdapter () |
| void | AttachWidgets (GtkBin *bin) |
| void | DetachWidgets (GtkBin *bin) |
| void | InterpretWidgets (GtkBin *bin) |
| char * | GetDescription () const |
| void | CreateFrame (uint8_t *pixels, int width, int height, double position, double frame_delta) |
Private Attributes | |
| ImageCreate * | creator |
Since not all filters will require additional GUI functionality, this class is provided as a convenience to wrap the non-GDK filters into basic GDK filters.
Definition at line 106 of file image_create.h.
|
|
Definition at line 112 of file image_create.h. 00112 { this->creator = creator; }
|
|
|
Definition at line 113 of file image_create.h. References creator. 00113 { delete creator; }
|
|
|
Reimplemented from GDKImageCreate. Definition at line 114 of file image_create.h. 00114 { }
|
|
||||||||||||||||||||||||
|
Implements ImageCreate. Definition at line 118 of file image_create.h. References ImageCreate::CreateFrame(), and creator. 00119 {
00120 return this->creator->CreateFrame( pixels, width, height, position, frame_delta );
00121 }
|
|
|
Reimplemented from GDKImageCreate. Definition at line 115 of file image_create.h. 00115 { }
|
|
|
Implements ImageCreate. Definition at line 117 of file image_create.h. References creator, and ImageCreate::GetDescription(). 00117 { return this->creator->GetDescription( ); }
|
|
|
Reimplemented from GDKImageCreate. Definition at line 116 of file image_create.h. 00116 { }
|
|
|
Definition at line 109 of file image_create.h. Referenced by CreateFrame(), GetDescription(), and ~GDKImageCreateAdapter(). |
1.4.2