mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
integrate with stdwinq
This commit is contained in:
parent
dff84043e4
commit
0b7448020a
2 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
||||||
# This is used as a base class from which to derive other window types.
|
# This is used as a base class from which to derive other window types.
|
||||||
# The mainloop() function here is an event dispatcher for all window types.
|
# The mainloop() function here is an event dispatcher for all window types.
|
||||||
|
|
||||||
import stdwin
|
import stdwin, stdwinq
|
||||||
from stdwinevents import *
|
from stdwinevents import *
|
||||||
|
|
||||||
# XXX Old version of stdwinevents, should go
|
# XXX Old version of stdwinevents, should go
|
||||||
|
@ -46,7 +46,7 @@ def open(title): # Open a generic window
|
||||||
|
|
||||||
def mainloop(): # Handle events until no windows left
|
def mainloop(): # Handle events until no windows left
|
||||||
while windows:
|
while windows:
|
||||||
treatevent(stdwin.getevent())
|
treatevent(stdwinq.getevent())
|
||||||
|
|
||||||
def treatevent(e): # Handle a stdwin event
|
def treatevent(e): # Handle a stdwin event
|
||||||
type, w, detail = e
|
type, w, detail = e
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# This is used as a base class from which to derive other window types.
|
# This is used as a base class from which to derive other window types.
|
||||||
# The mainloop() function here is an event dispatcher for all window types.
|
# The mainloop() function here is an event dispatcher for all window types.
|
||||||
|
|
||||||
import stdwin
|
import stdwin, stdwinq
|
||||||
from stdwinevents import *
|
from stdwinevents import *
|
||||||
|
|
||||||
# XXX Old version of stdwinevents, should go
|
# XXX Old version of stdwinevents, should go
|
||||||
|
@ -46,7 +46,7 @@ def open(title): # Open a generic window
|
||||||
|
|
||||||
def mainloop(): # Handle events until no windows left
|
def mainloop(): # Handle events until no windows left
|
||||||
while windows:
|
while windows:
|
||||||
treatevent(stdwin.getevent())
|
treatevent(stdwinq.getevent())
|
||||||
|
|
||||||
def treatevent(e): # Handle a stdwin event
|
def treatevent(e): # Handle a stdwin event
|
||||||
type, w, detail = e
|
type, w, detail = e
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue