Replaced InvalRect and friends with the Carbon-compliant InvalWindowRect.
This commit is contained in:
parent
d829e9e8e3
commit
43bb2a4f44
|
@ -80,7 +80,7 @@ class MT_TextWidget:
|
||||||
except ValueError:
|
except ValueError:
|
||||||
break
|
break
|
||||||
self.line_index.append(len(data))
|
self.line_index.append(len(data))
|
||||||
Win.InvalRect(self.rect)
|
self.wid.InvalWindowRect(self.rect)
|
||||||
self.ted.TESetSelect(0,0)
|
self.ted.TESetSelect(0,0)
|
||||||
self.ted.TECalText()
|
self.ted.TECalText()
|
||||||
self.ted.TESelView()
|
self.ted.TESelView()
|
||||||
|
@ -192,7 +192,7 @@ class MT_IconTextWidget(MT_TextWidget):
|
||||||
def setbreaks(self, list):
|
def setbreaks(self, list):
|
||||||
self.breakpointlist = list[:]
|
self.breakpointlist = list[:]
|
||||||
Qd.SetPort(self.wid)
|
Qd.SetPort(self.wid)
|
||||||
Win.InvalRect(self.iconrect)
|
self.wid.InvalWindowRect(self.iconrect)
|
||||||
|
|
||||||
def setcurline(self, line, pic=PIC_CURRENT):
|
def setcurline(self, line, pic=PIC_CURRENT):
|
||||||
self.curline = line
|
self.curline = line
|
||||||
|
@ -214,7 +214,7 @@ class MT_IconTextWidget(MT_TextWidget):
|
||||||
|
|
||||||
def setscrollbars(self):
|
def setscrollbars(self):
|
||||||
MT_TextWidget.setscrollbars(self)
|
MT_TextWidget.setscrollbars(self)
|
||||||
Win.InvalRect(self.iconrect)
|
self.wid.InvalWindowRect(self.iconrect)
|
||||||
|
|
||||||
def update(self, rgn):
|
def update(self, rgn):
|
||||||
MT_TextWidget.update(self, rgn)
|
MT_TextWidget.update(self, rgn)
|
||||||
|
@ -268,7 +268,7 @@ class MT_IndexList:
|
||||||
for y in range(len(column)):
|
for y in range(len(column)):
|
||||||
self.list.LSetCell(column[y], (x, y))
|
self.list.LSetCell(column[y], (x, y))
|
||||||
self.list.LSetDrawingMode(1)
|
self.list.LSetDrawingMode(1)
|
||||||
Win.InvalRect(self.rect)
|
self.wid.InvalWindowRect(self.rect)
|
||||||
|
|
||||||
def deselectall(self):
|
def deselectall(self):
|
||||||
while 1:
|
while 1:
|
||||||
|
|
|
@ -94,7 +94,7 @@ class ModuleBrowser(FrameWork.DialogWindow, TwitCore.ModuleBrowser):
|
||||||
|
|
||||||
def force_redraw(self):
|
def force_redraw(self):
|
||||||
Qd.SetPort(self.wid)
|
Qd.SetPort(self.wid)
|
||||||
Win.InvalRgn(self.wid.GetWindowPort().visRgn)
|
self.wid.InvalWindowRgn(self.wid.GetWindowPort().visRgn)
|
||||||
|
|
||||||
def do_activate(self, activate, event):
|
def do_activate(self, activate, event):
|
||||||
self.modules.activate(activate)
|
self.modules.activate(activate)
|
||||||
|
|
|
@ -144,7 +144,7 @@ class StackBrowser(FrameWork.DialogWindow, TwitCore.StackBrowser):
|
||||||
|
|
||||||
def force_redraw(self):
|
def force_redraw(self):
|
||||||
Qd.SetPort(self.wid)
|
Qd.SetPort(self.wid)
|
||||||
Win.InvalRgn(self.wid.GetWindowPort().visRgn)
|
self.wid.InvalWindowRgn(self.wid.GetWindowPort().visRgn)
|
||||||
|
|
||||||
def do_activate(self, activate, event):
|
def do_activate(self, activate, event):
|
||||||
self.stack.activate(activate)
|
self.stack.activate(activate)
|
||||||
|
|
Loading…
Reference in New Issue