plotter/funzioni.py
2013-03-23 14:21:13 +01:00

103 lines
4.4 KiB
Python

import tkinter, tkinter.filedialog, re, canvas2svg, grafico
from math import *
class applicazione(tkinter.Frame):
def __init__(self, finestra):
tkinter.Frame.__init__(self, finestra)
finestra.geometry("{}x{}+{}+{}".format(645, 110, int((finestra.winfo_screenwidth() / 2) - 320), finestra.winfo_screenheight()))
self.tipo = tkinter.StringVar()
self.testo = tkinter.StringVar()
self.tipo.set("normale")
self.grafico = grafico.grafico(20,20)
self.frame = self.grafico.frame
self.widgets()
self.scritta()
def widgets(self):
self.label1 = tkinter.Label(finestra, textvariable=self.testo)
self.label2 = tkinter.Label(finestra, text="Intervallo:")
self.label3 = tkinter.Label(finestra, text="Colore:")
self.casella1 = tkinter.Entry(finestra)
self.casella2 = tkinter.Entry(finestra)
self.casella3 = tkinter.Entry(finestra)
self.scelta1 = tkinter.Radiobutton(finestra, value="normale", text="Normale", variable=self.tipo, command=self.scritta)
self.scelta2 = tkinter.Radiobutton(finestra, value="punti", text="Definita a punti", variable=self.tipo, command=self.scritta)
self.scelta3 = tkinter.Radiobutton(finestra, value="tratti", text="Definita a tratti", variable=self.tipo, command=self.scritta)
self.pulsante1 = tkinter.Button(finestra, text="Disegna", command=self.disegna)
self.pulsante2 = tkinter.Button(finestra, text="Cancella", command=self.vuota)
self.pulsante3 = tkinter.Button(finestra, text="Pulisci Canvas", command=self.grafico.pulisci)
self.pulsante4 = tkinter.Button(finestra, text="Salva", command=self.salva)
self.pulsante5 = tkinter.Button(finestra, text="Esci", command=finestra.quit)
self.label1.grid(column=0, row=0, sticky="nw", pady=5, padx=5)
self.label2.grid(column=0, row=1, sticky="nw", pady=2.5, padx=5)
self.label3.grid(column=0, row=2, sticky="nw", pady=2.5, padx=5)
self.casella1.grid(column=1, row=0, sticky="nw", pady=5, padx=5)
self.casella2.grid(column=1, row=1, sticky="nw", pady=2.5, padx=5)
self.casella3.grid(column=1, row=2, padx=5, pady=2.5)
self.scelta1.grid(column= 2, row=1, sticky="nw", pady=2.5, padx=5)
self.scelta2.grid(column= 3, row=1, sticky="nw", pady=2.5, padx=5)
self.scelta3.grid(column= 4, row=1, sticky="nw", pady=2.5, padx=5)
self.pulsante1.grid(column= 2, row=0, sticky="nwes", pady=2.5, padx=5)
self.pulsante2.grid(column= 3, row=0, sticky="nwes", pady=2.5, padx=5)
self.pulsante3.grid(column=4, row=0, sticky="nwes", pady=2.5, padx=5)
self.pulsante4.grid(column=2, row=2, sticky="nwes", pady=2.5, padx=5, columnspan=2)
self.pulsante5.grid(column=4, row=2, sticky="nwes", pady=2.5, padx=5)
def scritta(self):
if self.tipo.get() == "normale":
self.testo.set("f(x): y =")
elif self.tipo.get() == "tratti":
self.testo.set("[f1(x),(intervallo)],[f2(x),(intervallo)],...")
else:
self.testo.set("(x1,y1),(x2,y2),...")
def disegna(self):
funzione = re.sub("([\+-\-]?\d+)(x)", "\\1*x", self.casella1.get().replace("^", "**"))
funzione = re.sub("(\|)(.+)(\|)", "abs(\\2)", funzione)
funzione = re.sub("(.+)(\!)", "factorial(\\1)", funzione)
try:
intervallo = eval(self.casella2.get())
except SyntaxError:
inizio = -self.grafico.X
fine = self.grafico.X
else:
inizio = float(intervallo[0])
fine = float(intervallo[1])
colore = self.casella3.get()
if colore == "":
colore = "orange"
if self.tipo.get() == "normale":
funzione = eval("lambda x:" + funzione)
self.grafico.disegna(funzione, inizio, fine, colore)
elif self.tipo.get() == "tratti":
funzioni = re.sub("(\[\()(.+?\))", "\\1lambda x:\\2", funzione)
funzioni = re.sub("(\[)", "(", funzioni.replace("]",")"))
for funzione in eval(funzioni):
self.grafico.disegna(funzione[0], funzione[1][0], funzione[1][1], colore)
else:
funzione = grafico.punti(eval(self.casella1.get()))
self.grafico.disegna(funzione, punti[0][0], punti[len(punti)-1][1], colore)
def vuota(self):
self.casella1.delete(0, "end")
self.casella2.delete(0, "end")
self.casella3.delete(0, "end")
self.finestra.withdraw()
def salva(self):
opzioni ={
"parent": self.frame,
"defaultextension": ".svg",
"initialfile": "grafico.svg",
"title": "Salva il grafico"
}
file = tkinter.filedialog.asksaveasfilename(**opzioni)
canvas2svg.saveall(file, self.grafico.canvas)
finestra = tkinter.Tk()
finestra.title("Impostazioni")
finestra.resizable(0,0)
app = applicazione(finestra)
app.mainloop()