Lines Matching refs:ypos
477 ypos = 0
482 row=ypos, column=0, sticky=W+E)
485 row=ypos, column=1, sticky=W+E)
488 row=ypos, column=2, sticky=W+E)
495 row=ypos, column=3, sticky=W+E)
496 ypos += 1
557 ypos = 0
574 l.grid(row=ypos, column=0, sticky=E+W)
575 r.grid(row=ypos, column=1, sticky=E+W)
578 ypos += 1
669 def draw(self, canvas, xpos, ypos, item): argument
715 def draw(self, canvas, xpos, ypos): argument
717 l = canvas.create_oval(xpos - XY_POINT, ypos,
718 xpos + XY_POINT, ypos - (XY_POINT * 2),
721 Event.draw(self, canvas, xpos, ypos, l)
730 def draw(self, canvas, xpos, ypos): argument
743 l = canvas.create_rectangle(xpos, ypos,
744 xpos + delta, ypos - 10, fill=color, width=0,
746 Event.draw(self, canvas, xpos, ypos, l)
757 def draw(self, canvas, xpos, ypos): argument
772 l = canvas.create_rectangle(xpos, ypos - yhight,
773 xpos + delta, ypos, fill=color, width=0,
775 Event.draw(self, canvas, xpos, ypos, l)
786 def draw(self, canvas, xpos, ypos): argument
792 Event.draw(self, canvas, xpos, ypos, None)
831 def draw(self, canvas, ypos): argument
839 self.drawcpu(canvas, cpu, cpux, xpos, ypos)
842 xpos = event.draw(canvas, xpos, ypos)
843 self.drawcpu(canvas, cpu, cpux, xpos, ypos)
845 def drawname(self, canvas, ypos): argument
846 self.y = ypos
847 ypos = ypos - (self.ysize() / 2)
848 self.item = canvas.create_text(X_BORDER, ypos, anchor="w",
852 def drawcpu(self, canvas, cpu, fromx, tox, ypos): argument
857 ypos - self.ysize() - canvas.bdheight,
858 tox, ypos + canvas.bdheight, fill=color, width=0,
862 def move(self, canvas, xpos, ypos): argument
863 canvas.move(self.tag, xpos, ypos)
865 def movename(self, canvas, xpos, ypos): argument
866 self.y += ypos
867 canvas.move(self.item, xpos, ypos)
1139 ypos = 0
1143 l = self.create_line(0, ypos, self["width"], ypos,
1146 ypos += self.bdheight
1147 ypos += source.ysize()
1148 t = source.drawname(self, ypos)
1150 ypos += self.bdheight
1151 self.ysize = ypos
1152 self.create_line(0, ypos, self["width"], ypos,
1183 ypos = 0
1187 l = self.create_line(0, ypos, xsize, ypos,
1190 ypos += self.bdheight
1191 ypos += source.ysize()
1192 source.draw(self, ypos)
1193 ypos += self.bdheight
1196 self.create_line(0, ypos, xsize, ypos,
1590 def sourceat(self, ypos): argument
1593 ypos += starty
1599 if (ypos >= ystart and ypos <= yend):