Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: b022eb54e6544499c9f689a3b4343380d28c8852 authored by cvs2svn on 22 March 1995, 12:27:16 UTC
This commit was manufactured by cvs2svn to create tag 'r12beta4'.
Tip revision: b022eb5
basewin.py
# basewin.py

import stdwin
import mainloop
from stdwinevents import *

class BaseWindow:
	
	def __init__(self, title):
		self.win = stdwin.open(title)
		self.win.dispatch = self.dispatch
		mainloop.register(self.win)
	
#	def reopen(self):
#		title = self.win.gettitle()
#		winpos = self.win.getwinpos()
#		winsize = self.win.getwinsize()
#		origin = self.win.getorigin()
#		docsize = self.win.getdocsize()
#		mainloop.unregister(self.win)
#		del self.win.dispatch
#		self.win.close()
#		stdwin.setdefwinpos(winpos)
#		stdwin.setdefwinsize(winsize)
#		self.win = stdwin.open(title)
#		stdwin.setdefwinpos(0, 0)
#		stdwin.setdefwinsize(0, 0)
#		self.win.setdocsize(docsize)
#		self.win.setorigin(origin)
#		self.win.dispatch = self.dispatch
#		mainloop.register(self.win)
	
	def popup(self):
		if self.win is not stdwin.getactive():
			self.win.setactive()
	
	def close(self):
		mainloop.unregister(self.win)
		del self.win.dispatch
		self.win.close()
	
	def dispatch(self, event):
		type, win, detail = event
		if type == WE_CHAR:
			self.char(detail)
		elif type == WE_COMMAND:
			self.command(detail)
		elif type == WE_MOUSE_DOWN:
			self.mouse_down(detail)
		elif type == WE_MOUSE_MOVE:
			self.mouse_move(detail)
		elif type == WE_MOUSE_UP:
			self.mouse_up(detail)
		elif type == WE_DRAW:
			self.draw(detail)
		elif type == WE_CLOSE:
			self.close()
	
	def no_op(self, detail):
		pass
	char = command = mouse_down = mouse_move = mouse_up = draw = no_op
	
	def refreshall(self):
		self.win.change((-10, 0), (10000, 30000))
back to top