(self, name, x, y, w, h, attr, text)
| 462 | return Control(self, name) |
| 463 | |
| 464 | def text(self, name, x, y, w, h, attr, text): |
| 465 | return self.control(name, "Text", x, y, w, h, attr, None, |
| 466 | text, None, None) |
| 467 | |
| 468 | def bitmap(self, name, x, y, w, h, text): |
| 469 | return self.control(name, "Bitmap", x, y, w, h, 1, None, text, None, None) |