Lines Matching full:getvalue
58 def GetValue(self):
59 val = wx.SpinCtrl.GetValue(self)
220 def GetValue(self):
277 def GetValue(self):
278 return StrNoneChk(self.cmb.GetValue())
336 def GetValue(self):
337 return StrNoneChk(self.txt.GetValue())
440 GetValue()) > self.mx[self.iCtrl]:
442 if int(self.time[self.iCtrl].GetValue()) < self.mn[self.iCtrl]:
450 if int(self.time[self.iCtrl].GetValue()) < self.mx[self.iCtrl]:
451 self.time[self.iCtrl].SetValue(str(int(self.time[self.iCtrl].GetValue()) + 1))
455 if int(self.time[self.iCtrl].GetValue()) > self.mn[self.iCtrl]:
456 self.time[self.iCtrl].SetValue(str(int(self.time[self.iCtrl].GetValue()) - 1))
485 def GetValue(self, typ='str'):
488 ret = "%d:%d:%d" % (int(self.time[0].GetValue()), int(self.time[1].GetValue()), int(self.time[2].GetValue()))
490 ret = (int(self.time[0].GetValue()), int(self.time[1].GetValue()), int(self.time[2].GetValue()))
526 return int(self.time[0].GetValue())
529 return int(self.time[1].GetValue())
532 return int(self.time[2].GetValue())
546 #print(tc.GetValue())