1
0
mirror of https://github.com/thp/pyotherside.git synced 2025-01-28 23:52:55 +08:00
pyotherside/examples/events_example.py
2014-02-19 22:09:52 +01:00

24 lines
546 B
Python

# This example demonstrates the use of pyotherside.send() to send events to Qt.
import pyotherside
import threading
import time
print('Using PyOtherSide version', pyotherside.version)
COLORS = ['red', 'green', 'blue']
def thread_func():
i = 0
while True:
pyotherside.send('append', 'Next Number: ', i)
if i % 2 == 0:
color = COLORS[int((i / 2) % len(COLORS))]
pyotherside.send('color', color)
i += 1
time.sleep(1)
thread = threading.Thread(target=thread_func)
thread.start()