Draw text at the given coordinates.
| 656 | |
| 657 | // Draw text at the given coordinates. |
| 658 | void ScrollView::Text(int x, int y, const char* mystring) { |
| 659 | SendMsg("drawText(%d,%d,'%s')", x, TranslateYCoordinate(y), mystring); |
| 660 | } |
| 661 | |
| 662 | // Open and draw an image given a name at (x,y). |
| 663 | void ScrollView::Image(const char* image, int x_pos, int y_pos) { |
no outgoing calls
no test coverage detected