Home | History | Annotate | Download | only in plat-mac

Lines Matching refs:wid

147     def appendwindow(self, wid, window):
148 self._windows[wid] = window
150 def removewindow(self, wid):
151 del self._windows[wid]
262 partcode, wid = FindWindow(where)
272 if wid is None:
282 elif wid in self._windows:
284 window = self._windows[wid]
292 handler(partcode, wid, event)
383 wid = WhichWindow(message)
384 if wid and wid in self._windows:
385 window = self._windows[wid]
386 window.do_rawupdate(wid, event)
393 wid = WhichWindow(message)
394 if wid and wid in self._windows:
395 window = self._windows[wid]
413 wid = MyFrontWindow()
414 if wid and wid in self._windows:
415 window = self._windows[wid]
517 wid = MyFrontWindow()
518 if wid and wid in self.parent._windows:
519 window = self.parent._windows[wid]
612 wid = MyFrontWindow()
613 if wid and wid in self.bar.parent._windows:
614 window = self.bar.parent._windows[wid]
657 wid = MyFrontWindow()
659 window = self.bar.parent._windows[wid]
750 self.wid = None
755 self.wid = GetNewWindow(resid, -1)
757 self.wid = NewWindow(bounds, self.__class__.__name__, 1,
763 self.parent.appendwindow(self.wid, self)
769 self.parent.removewindow(self.wid)
771 self.wid = None
775 SetPort(self.wid)
778 return self.wid
817 l, t, r, b = self.wid.GetWindowPort().GetPortBounds() # jvr, forGrowIcon
819 self.wid.InvalWindowRect((r - SCROLLBARWIDTH + 1, b - SCROLLBARWIDTH + 1, r, b)) # jvr
825 self.wid.InvalWindowRect(window.GetWindowPort().GetPortBounds())
863 if DEBUG: print 'Activate %d for %s'%(activate, self.wid)
908 SetPort(self.wid)
911 x0, y0, x1, y1 = self.wid.GetWindowPort().GetPortBounds()
917 self.barx = NewControl(self.wid, rect, "", 1, vx, 0, 32767, 16, 0)
919 ## self.wid.InvalWindowRect(rect)
922 self.bary = NewControl(self.wid, rect, "", 1, vy, 0, 32767, 16, 0)
924 ## self.wid.InvalWindowRect(rect)
944 self.wid.DrawGrowIcon() # jvr
947 l, t, r, b = self.wid.GetWindowPort().GetPortBounds()
959 self.wid.ValidWindowRect((l, b - SCROLLBARWIDTH + 1, r - SCROLLBARWIDTH + 2, b)) # jvr
962 self.wid.ValidWindowRect((r - SCROLLBARWIDTH + 1, t, r, b - SCROLLBARWIDTH + 2)) # jvr
963 self.wid.InvalWindowRect((r - SCROLLBARWIDTH + 1, b - SCROLLBARWIDTH + 1, r, b)) # jvr, growicon
1010 SetPort(self.wid)
1058 self.wid = self.dlg.GetDialogWindow()