����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#! /usr/bin/env python
import sys
import os
from Tkinter import *
from idlelib.Percolator import Percolator
from idlelib.ColorDelegator import ColorDelegator
from idlelib.textView import TextViewer
import turtle
import time
STARTUP = 1
READY = 2
RUNNING = 3
DONE = 4
EVENTDRIVEN = 5
menufont = ("Arial", 12, NORMAL)
btnfont = ("Arial", 12, 'bold')
txtfont = ('Lucida Console', 8, 'normal')
def getExampleEntries():
cwd = os.getcwd()
if "turtleDemo.py" not in os.listdir(cwd):
print "Directory of turtleDemo must be current working directory!"
print "But in your case this is", cwd
sys.exit()
entries1 = [entry for entry in os.listdir(cwd) if
entry.startswith("tdemo_") and
not entry.endswith(".pyc")]
entries2 = []
for entry in entries1:
if entry.endswith(".py"):
entries2.append(entry)
else:
path = os.path.join(cwd,entry)
sys.path.append(path)
subdir = [entry]
scripts = [script for script in os.listdir(path) if
script.startswith("tdemo_") and
script.endswith(".py")]
entries2.append(subdir+scripts)
return entries2
def showDemoHelp():
TextViewer(demo.root, "Help on turtleDemo", "demohelp.txt")
def showAboutDemo():
TextViewer(demo.root, "About turtleDemo", "about_turtledemo.txt")
def showAboutTurtle():
TextViewer(demo.root, "About the new turtle module", "about_turtle.txt")
class DemoWindow(object):
def __init__(self, filename=None): #, root=None):
self.root = root = turtle._root = Tk()
root.wm_protocol("WM_DELETE_WINDOW", self._destroy)
#################
self.mBar = Frame(root, relief=RAISED, borderwidth=2)
self.mBar.pack(fill=X)
self.ExamplesBtn = self.makeLoadDemoMenu()
self.OptionsBtn = self.makeHelpMenu()
self.mBar.tk_menuBar(self.ExamplesBtn, self.OptionsBtn) #, QuitBtn)
root.title('Python turtle-graphics examples')
#################
self.left_frame = left_frame = Frame(root)
self.text_frame = text_frame = Frame(left_frame)
self.vbar = vbar =Scrollbar(text_frame, name='vbar')
self.text = text = Text(text_frame,
name='text', padx=5, wrap='none',
width=45)
vbar['command'] = text.yview
vbar.pack(side=LEFT, fill=Y)
#####################
self.hbar = hbar =Scrollbar(text_frame, name='hbar', orient=HORIZONTAL)
hbar['command'] = text.xview
hbar.pack(side=BOTTOM, fill=X)
#####################
text['yscrollcommand'] = vbar.set
text.config(font=txtfont)
text.config(xscrollcommand=hbar.set)
text.pack(side=LEFT, fill=Y, expand=1)
#####################
self.output_lbl = Label(left_frame, height= 1,text=" --- ", bg = "#ddf",
font = ("Arial", 16, 'normal'))
self.output_lbl.pack(side=BOTTOM, expand=0, fill=X)
#####################
text_frame.pack(side=LEFT, fill=BOTH, expand=0)
left_frame.pack(side=LEFT, fill=BOTH, expand=0)
self.graph_frame = g_frame = Frame(root)
turtle._Screen._root = g_frame
turtle._Screen._canvas = turtle.ScrolledCanvas(g_frame, 800, 600, 1000, 800)
#xturtle.Screen._canvas.pack(expand=1, fill="both")
self.screen = _s_ = turtle.Screen()
turtle.TurtleScreen.__init__(_s_, _s_._canvas)
self.scanvas = _s_._canvas
#xturtle.RawTurtle.canvases = [self.scanvas]
turtle.RawTurtle.screens = [_s_]
self.scanvas.pack(side=TOP, fill=BOTH, expand=1)
self.btn_frame = btn_frame = Frame(g_frame, height=100)
self.start_btn = Button(btn_frame, text=" START ", font=btnfont, fg = "white",
disabledforeground = "#fed", command=self.startDemo)
self.start_btn.pack(side=LEFT, fill=X, expand=1)
self.stop_btn = Button(btn_frame, text=" STOP ", font=btnfont, fg = "white",
disabledforeground = "#fed", command = self.stopIt)
self.stop_btn.pack(side=LEFT, fill=X, expand=1)
self.clear_btn = Button(btn_frame, text=" CLEAR ", font=btnfont, fg = "white",
disabledforeground = "#fed", command = self.clearCanvas)
self.clear_btn.pack(side=LEFT, fill=X, expand=1)
self.btn_frame.pack(side=TOP, fill=BOTH, expand=0)
self.graph_frame.pack(side=TOP, fill=BOTH, expand=1)
Percolator(text).insertfilter(ColorDelegator())
self.dirty = False
self.exitflag = False
if filename:
self.loadfile(filename)
self.configGUI(NORMAL, DISABLED, DISABLED, DISABLED,
"Choose example from menu", "black")
self.state = STARTUP
def _destroy(self):
self.root.destroy()
sys.exit()
def configGUI(self, menu, start, stop, clear, txt="", color="blue"):
self.ExamplesBtn.config(state=menu)
self.start_btn.config(state=start)
if start==NORMAL:
self.start_btn.config(bg="#d00")
else:
self.start_btn.config(bg="#fca")
self.stop_btn.config(state=stop)
if stop==NORMAL:
self.stop_btn.config(bg="#d00")
else:
self.stop_btn.config(bg="#fca")
self.clear_btn.config(state=clear)
self.clear_btn.config(state=clear)
if clear==NORMAL:
self.clear_btn.config(bg="#d00")
else:
self.clear_btn.config(bg="#fca")
self.output_lbl.config(text=txt, fg=color)
def makeLoadDemoMenu(self):
CmdBtn = Menubutton(self.mBar, text='Examples', underline=0, font=menufont)
CmdBtn.pack(side=LEFT, padx="2m")
CmdBtn.menu = Menu(CmdBtn)
for entry in getExampleEntries():
def loadexample(x):
def emit():
self.loadfile(x)
return emit
if isinstance(entry,str):
CmdBtn.menu.add_command(label=entry[6:-3], underline=0, font=menufont,
command=loadexample(entry))
else:
_dir, entries = entry[0], entry[1:]
CmdBtn.menu.choices = Menu(CmdBtn.menu)
for e in entries:
CmdBtn.menu.choices.add_command(label=e[6:-3], underline=0, font=menufont,
command = loadexample(os.path.join(_dir,e)))
CmdBtn.menu.add_cascade(label=_dir[6:],
menu = CmdBtn.menu.choices, font=menufont )
CmdBtn['menu'] = CmdBtn.menu
return CmdBtn
def makeHelpMenu(self):
CmdBtn = Menubutton(self.mBar, text='Help', underline=0, font = menufont)
CmdBtn.pack(side=LEFT, padx='2m')
CmdBtn.menu = Menu(CmdBtn)
CmdBtn.menu.add_command(label='About turtle.py', font=menufont, command=showAboutTurtle)
CmdBtn.menu.add_command(label='turtleDemo - Help', font=menufont, command=showDemoHelp)
CmdBtn.menu.add_command(label='About turtleDemo', font=menufont, command=showAboutDemo)
CmdBtn['menu'] = CmdBtn.menu
return CmdBtn
def refreshCanvas(self):
if not self.dirty: return
self.screen.clear()
#self.screen.mode("standard")
self.dirty=False
def loadfile(self,filename):
self.refreshCanvas()
if os.path.exists(filename) and not os.path.isdir(filename):
# load and display file text
f = open(filename,'r')
chars = f.read()
f.close()
self.text.delete("1.0", "end")
self.text.insert("1.0",chars)
direc, fname = os.path.split(filename)
self.root.title(fname[6:-3]+" - a Python turtle graphics example")
self.module = __import__(fname[:-3])
reload(self.module)
self.configGUI(NORMAL, NORMAL, DISABLED, DISABLED,
"Press start button", "red")
self.state = READY
def startDemo(self):
self.refreshCanvas()
self.dirty = True
turtle.TurtleScreen._RUNNING = True
self.configGUI(DISABLED, DISABLED, NORMAL, DISABLED,
"demo running...", "black")
self.screen.clear()
self.screen.mode("standard")
self.state = RUNNING
try:
result = self.module.main()
if result == "EVENTLOOP":
self.state = EVENTDRIVEN
else:
self.state = DONE
except turtle.Terminator:
self.state = DONE
result = "stopped!"
if self.state == DONE:
self.configGUI(NORMAL, NORMAL, DISABLED, NORMAL,
result)
elif self.state == EVENTDRIVEN:
self.exitflag = True
self.configGUI(DISABLED, DISABLED, NORMAL, DISABLED,
"use mouse/keys or STOP", "red")
def clearCanvas(self):
self.refreshCanvas()
self.scanvas.config(cursor="")
self.configGUI(NORMAL, NORMAL, DISABLED, DISABLED)
def stopIt(self):
if self.exitflag:
self.clearCanvas()
self.exitflag = False
self.configGUI(NORMAL, NORMAL, DISABLED, DISABLED,
"STOPPED!", "red")
turtle.TurtleScreen._RUNNING = False
#print "stopIT: exitflag = True"
else:
turtle.TurtleScreen._RUNNING = False
#print "stopIt: exitflag = False"
if __name__ == '__main__':
demo = DemoWindow()
RUN = True
while RUN:
try:
print "ENTERING mainloop"
demo.root.mainloop()
except AttributeError:
print "CRASH!!!- WAIT A MOMENT!"
time.sleep(0.3)
print "GOING ON .."
demo.refreshCanvas()
## time.sleep(1)
except:
RUN = FALSE
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| about_turtle.txt | File | 3.44 KB | 0644 |
|
| about_turtledemo.txt | File | 302 B | 0644 |
|
| demohelp.txt | File | 2.38 KB | 0644 |
|
| tdemo_I_dontlike_tiltdemo.py | File | 1.05 KB | 0644 |
|
| tdemo_I_dontlike_tiltdemo.pyc | File | 1.62 KB | 0644 |
|
| tdemo_I_dontlike_tiltdemo.pyo | File | 1.62 KB | 0644 |
|
| tdemo_bytedesign.py | File | 4.12 KB | 0644 |
|
| tdemo_bytedesign.pyc | File | 5.19 KB | 0644 |
|
| tdemo_bytedesign.pyo | File | 5.19 KB | 0644 |
|
| tdemo_chaos.py | File | 953 B | 0644 |
|
| tdemo_chaos.pyc | File | 2.24 KB | 0644 |
|
| tdemo_chaos.pyo | File | 2.24 KB | 0644 |
|
| tdemo_clock.py | File | 2.95 KB | 0644 |
|
| tdemo_clock.pyc | File | 4.38 KB | 0644 |
|
| tdemo_clock.pyo | File | 4.38 KB | 0644 |
|
| tdemo_colormixer.py | File | 1.31 KB | 0644 |
|
| tdemo_colormixer.pyc | File | 2.31 KB | 0644 |
|
| tdemo_colormixer.pyo | File | 2.31 KB | 0644 |
|
| tdemo_fractalcurves.py | File | 3.33 KB | 0644 |
|
| tdemo_fractalcurves.pyc | File | 3.44 KB | 0644 |
|
| tdemo_fractalcurves.pyo | File | 3.44 KB | 0644 |
|
| tdemo_lindenmayer_indian.py | File | 2.38 KB | 0644 |
|
| tdemo_lindenmayer_indian.pyc | File | 3.52 KB | 0644 |
|
| tdemo_lindenmayer_indian.pyo | File | 3.52 KB | 0644 |
|
| tdemo_minimal_hanoi.py | File | 1.92 KB | 0644 |
|
| tdemo_minimal_hanoi.pyc | File | 3.5 KB | 0644 |
|
| tdemo_minimal_hanoi.pyo | File | 3.5 KB | 0644 |
|
| tdemo_nim.py | File | 6.43 KB | 0644 |
|
| tdemo_nim.pyc | File | 9.16 KB | 0644 |
|
| tdemo_nim.pyo | File | 9.16 KB | 0644 |
|
| tdemo_paint.py | File | 1.1 KB | 0644 |
|
| tdemo_paint.pyc | File | 1.7 KB | 0644 |
|
| tdemo_paint.pyo | File | 1.7 KB | 0644 |
|
| tdemo_peace.py | File | 1.09 KB | 0644 |
|
| tdemo_peace.pyc | File | 1.41 KB | 0644 |
|
| tdemo_peace.pyo | File | 1.41 KB | 0644 |
|
| tdemo_penrose.py | File | 3.45 KB | 0644 |
|
| tdemo_penrose.pyc | File | 5.86 KB | 0644 |
|
| tdemo_penrose.pyo | File | 5.86 KB | 0644 |
|
| tdemo_planet_and_moon.py | File | 2.77 KB | 0644 |
|
| tdemo_planet_and_moon.pyc | File | 4.44 KB | 0644 |
|
| tdemo_planet_and_moon.pyo | File | 4.44 KB | 0644 |
|
| tdemo_tree.py | File | 1.38 KB | 0644 |
|
| tdemo_tree.pyc | File | 2.07 KB | 0644 |
|
| tdemo_tree.pyo | File | 2.07 KB | 0644 |
|
| tdemo_wikipedia.py | File | 1.32 KB | 0644 |
|
| tdemo_wikipedia.pyc | File | 1.91 KB | 0644 |
|
| tdemo_wikipedia.pyo | File | 1.91 KB | 0644 |
|
| tdemo_yinyang.py | File | 808 B | 0644 |
|
| tdemo_yinyang.pyc | File | 1.29 KB | 0644 |
|
| tdemo_yinyang.pyo | File | 1.29 KB | 0644 |
|
| turtle.cfg | File | 160 B | 0644 |
|
| turtleDemo.py | File | 9.94 KB | 0644 |
|
| turtleDemo.pyc | File | 9.97 KB | 0644 |
|
| turtleDemo.pyo | File | 9.97 KB | 0644 |
|
| turtledemo_two_canvases.py | File | 885 B | 0644 |
|
| turtledemo_two_canvases.pyc | File | 1.22 KB | 0644 |
|
| turtledemo_two_canvases.pyo | File | 1.22 KB | 0644 |
|