12345678910111213141516171819 |
- '''
- Created on 27-jul.-2014
- @author: Simon
- '''
- import Tkinter as tk
- import target_py.sccd as sccd
- from python_runtime.libs.ui import ui
- from python_runtime.statecharts_core import Event
- from python_runtime.tkinter_eventloop import *
- if __name__ == '__main__':
- ui.window = tk.Tk()
- controller = sccd.Controller(TkEventLoop(ui.window))
- controller.start()
- ui.window.mainloop()
|