|
A gui control that is used to display an image. More...
Public Member Functions | |
void | setBitmap (String filename, bool resize) |
Assign an image to the control. | |
void | setBitmap (String filename) |
Assign an image to the control. | |
void | setValue (int x, int y) |
Set the offset of the bitmap within the control. | |
Public Attributes | |
Bitmap | |
filename | bitmap |
The bitmap file to display in the control. | |
bool | wrap |
If true, the bitmap is tiled inside the control rather than stretched to fit. |
A gui control that is used to display an image.
The image is stretched to the constraints of the control by default. However, the control can also tile the image as well.
The image itself is stored inside the GuiBitmapCtrl::bitmap field. The boolean value that decides whether the image is stretched or tiled is stored inside the GuiBitmapCtrl::wrap field.
// Create a tiling GuiBitmapCtrl that displays "myImage.png" %bitmapCtrl = new GuiBitmapCtrl() { bitmap = "myImage.png"; wrap = "true"; };
void GuiBitmapCtrl::setBitmap | ( | String | filename, | |
bool | resize | |||
) |
Assign an image to the control.
Child controls with resize according to their layout settings.
filename | The filename of the image. | |
resize | Optional parameter. If true, the GUI will resize to fit the image. |
void GuiBitmapCtrl::setBitmap | ( | String | filename | ) |
Assign an image to the control.
Child controls will resize according to their layout settings.
filename | The filename of the image. | |
resize | A boolean value that decides whether the ctrl refreshes or not. |
void GuiBitmapCtrl::setValue | ( | int | x, | |
int | y | |||
) |
Set the offset of the bitmap within the control.
x | The x-axis offset of the image. | |
y | The y-axis offset of the image. |
filename GuiBitmapCtrl::bitmap |
The bitmap file to display in the control.
bool GuiBitmapCtrl::wrap |
If true, the bitmap is tiled inside the control rather than stretched to fit.