(self, name, type, x, y, w, h, attr, prop, text, next, help)
| 457 | add_data(db, "Dialog", [(name, x,y,w,h,attr,title,first,default,cancel)]) |
| 458 | |
| 459 | def control(self, name, type, x, y, w, h, attr, prop, text, next, help): |
| 460 | add_data(self.db, "Control", |
| 461 | [(self.name, name, type, x, y, w, h, attr, prop, text, next, help)]) |
| 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, |
no test coverage detected