Compare commits

..

4 Commits
dev ... master

Author SHA1 Message Date
vincent
ccb5b80d6d fix scrollbar 2018-08-26 20:22:48 +02:00
vincent
f1dbacc033 modif import in json class 2018-08-26 19:16:27 +02:00
vincent
62664cfca0 correct parser chaine 2018-08-23 23:18:17 +02:00
vincent
4f17444750 Mettre à jour 'README.md' 2018-08-23 21:30:05 +02:00
2 changed files with 13 additions and 9 deletions

View File

@ -1,2 +1,6 @@
# chainetv
## to do
* finish class json
* crée class emission
* crée class cli?

View File

@ -35,7 +35,7 @@ class ScrollableCanvas(Frame):
def __init__(self, parent, *args, **kw):
Frame.__init__(self, parent, *args, **kw)
canvas=Canvas(self,width=300,height=300,scrollregion=(0,0,500,500))
self.canvas=canvas=Canvas(self,width=300,height=300,scrollregion=(0,0,500,500))
vbar=Scrollbar(self,orient=VERTICAL)
vbar.pack(side=RIGHT, fill=Y)
@ -54,7 +54,6 @@ class ScrollableCanvas(Frame):
# update the scrollbars to match the size of the inner frame
size = (interior.winfo_reqwidth(), interior.winfo_reqheight())
canvas.config(scrollregion="0 0 %s %s" % size)
canvas.yview_moveto(1)
if interior.winfo_reqwidth() != canvas.winfo_width():
# update the canvas's width to fit the inner frame
canvas.config(width=interior.winfo_reqwidth())
@ -67,8 +66,9 @@ class ScrollableCanvas(Frame):
canvas.bind('<Configure>', _configure_canvas)
def _MouseWhell(event):
print (event.delta/120)
canvas.yview_scroll(-1*(event.delta/120), "units")
self.bind_all("<MouseWheel>",_MouseWhell)
self.bind("<MouseWheel>",_MouseWhell)
@ -143,12 +143,13 @@ class Interface:
emmisionGUI(self.resultframe.interior,**emision).pack()
else:
Label(self.resultframe.interior,text="pas de connection internet impossible de determiner l'émission du soir").pack()
except KeyError:
print("numero de chaine inconnue")
unknow=Label(self.resultframe.interior, text="numero de chaine inconnue")
unknow.pack()
self.resultframe.canvas.yview_moveto(1)
self.value.set("")
@ -160,7 +161,7 @@ class Interface:
def click_update(self):
self.data.parsechaine()
labelupdate = Label(self.resultframe, text="update chaine done"+"\r")
labelupdate = Label(self.resultframe.interior, text="update chaine done"+"\r")
labelupdate.pack()
def _openlink(self,link):
@ -170,7 +171,6 @@ class Interface:
class JSONfile:
def __init__(self,filename):
import os,json
self.datafilepath=os.path.dirname(os.path.realpath(__file__))+"/"+filename
try:
with open(self.datafilepath, 'r', encoding='utf-8') as f:
@ -198,17 +198,17 @@ class JSONfile:
if RepresentsInt(firstTD.find_next().string):
#print(firstTD.find_next().find_next().text)
liste_chaine[int(num)] = firstTD.find_next().find_next().text
liste_chaine[str(int(num))] = firstTD.find_next().find_next().text
else:
#print(firstTD.find_next().string)
liste_chaine[int(num)] = firstTD.find_next().text
liste_chaine[str(int(num))] = firstTD.find_next().text
print(json.dumps(liste_chaine, indent=4))
self.data=liste_chaine
with open(self.datafilepath, 'w', encoding='utf-8') as f:
json.dump(liste_chaine, f, indent=4)
def __repr__(self):
return str(self.data)
def RepresentsInt(s):
try:
int(s)