Lines Matching defs:text
444 def add(self, name, x, y, w, h, text, value = None):
449 x, y, w, h, text, None)])
459 def control(self, name, type, x, y, w, h, attr, prop, text, next, help):
461 [(self.name, name, type, x, y, w, h, attr, prop, text, next, help)])
464 def text(self, name, x, y, w, h, attr, text):
466 text, None, None)
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)
474 def pushbutton(self, name, x, y, w, h, attr, text, next):
475 return self.control(name, "PushButton", x, y, w, h, attr, None, text, next, None)
477 def radiogroup(self, name, x, y, w, h, attr, prop, text, next):
480 x, y, w, h, attr, prop, text, next, None)])
483 def checkbox(self, name, x, y, w, h, attr, prop, text, next):
484 return self.control(name, "CheckBox", x, y, w, h, attr, prop, text, next, None)