| 110 | sp<Image> Graphic::getImage() const { return image; } |
| 111 | |
| 112 | void Graphic::setImage(sp<Image> Image) |
| 113 | { |
| 114 | image = Image; |
| 115 | this->setDirty(); |
| 116 | } |
| 117 | |
| 118 | sp<Control> Graphic::copyTo(sp<Control> CopyParent) |
| 119 | { |
no test coverage detected