##// END OF EJS Templates
making prompt_tolkit history search configurable
making prompt_tolkit history search configurable

File last commit:

r23055:2fb521c3
r24145:61a08c53
Show More
gui-tk.py
34 lines | 625 B | text/x-python | PythonLexer
Brian Granger
More work on the Tk and GTK gui integration.
r2216 #!/usr/bin/env python
"""Simple Tk example to manually test event loop integration.
This is meant to run tests manually in ipython as:
In [5]: %gui tk
In [6]: %run gui-tk.py
"""
Srinivas Reddy Thatiparthy
remove python2 import statement
r23055 from tkinter import *
Brian Granger
More work on the Tk and GTK gui integration.
r2216
class MyApp:
def __init__(self, root):
frame = Frame(root)
frame.pack()
self.button = Button(frame, text="Hello", command=self.hello_world)
self.button.pack(side=LEFT)
def hello_world(self):
Thomas Kluyver
Make print syntax in GUI integration examples Python 3 compatible.
r6453 print("Hello World!")
Brian Granger
More work on the Tk and GTK gui integration.
r2216
root = Tk()
app = MyApp(root)
try:
Thomas Kluyver
Deprecation warnings for enable_* functions in inputhook...
r17899 from IPython.lib.inputhook import enable_gui
enable_gui('tk', root)
Brian Granger
More work on the Tk and GTK gui integration.
r2216 except ImportError:
root.mainloop()