Документ взят из кэша поисковой машины. Адрес оригинального документа : http://kodomo.fbb.msu.ru/hg/cca/rev/22499c1165dd
Дата изменения: Unknown
Дата индексирования: Mon Oct 1 23:06:04 2012
Кодировка:
cca: 22499c1165dd

cca

changeset 40:22499c1165dd

Automated merge with ssh://kodomo.fbb.msu.ru/cca
author Ilia
date Sun, 05 Dec 2010 15:12:34 +0300
parents fa1a99c88a0b 031f654a7b7d
children 008b6e43ca47
files
diffstat 1 files changed, 10 insertions(+), 10 deletions(-) [+]
line diff
     1.1 --- a/Interface.py	Sun Dec 05 14:54:22 2010 +0300
     1.2 +++ b/Interface.py	Sun Dec 05 15:12:34 2010 +0300
     1.3 @@ -270,7 +270,7 @@
     1.4  symboles = dict()
     1.5  
     1.6  #infoPanel=Frame
     1.7 -automata_frame=Frame(root, background="grey")
     1.8 +automata_frame=Frame(root, background="white")
     1.9  
    1.10  headline_frame=Frame(automata_frame, background="white")
    1.11  head = Label(headline_frame, text= "Automata Panel", font=16)
    1.12 @@ -327,31 +327,31 @@
    1.13  condition.pack(side="top", fill="x")
    1.14  condition_frame=Frame(automata_frame, background="white")
    1.15  Label(condition_frame, text="0: ").grid(row=0, column=0)
    1.16 -c_button_0 = Checkbutton(condition_frame, variable=check_box[0])
    1.17 +c_button_0 = Checkbutton(condition_frame, variable=ckeckbox_nums[0])
    1.18  c_button_0.grid(row=0, column=1)
    1.19  Label(condition_frame, text="1: ").grid(row=0, column=2)
    1.20 -c_button_1 = Checkbutton(condition_frame, variable=check_box[1])
    1.21 +c_button_1 = Checkbutton(condition_frame, variable=ckeckbox_nums[1])
    1.22  c_button_1.grid(row=0, column=3)
    1.23  Label(condition_frame, text="2: ").grid(row=0, column=4)
    1.24 -c_button_2 = Checkbutton(condition_frame, variable=check_box[2])
    1.25 +c_button_2 = Checkbutton(condition_frame, variable=ckeckbox_nums[2])
    1.26  c_button_2.grid(row=0, column=5)
    1.27  Label(condition_frame, text="3: ").grid(row=1, column=0)
    1.28 -c_button_3 = Checkbutton(condition_frame, variable=check_box[3])
    1.29 +c_button_3 = Checkbutton(condition_frame, variable=ckeckbox_nums[3])
    1.30  c_button_3.grid(row=1, column=1)
    1.31  Label(condition_frame, text="4: ").grid(row=1, column=2)
    1.32 -c_button_4 = Checkbutton(condition_frame, variable=check_box[4])
    1.33 +c_button_4 = Checkbutton(condition_frame, variable=ckeckbox_nums[4])
    1.34  c_button_4.grid(row=1, column=3)
    1.35  Label(condition_frame, text="5: ").grid(row=1, column=4)
    1.36 -c_button_5 = Checkbutton(condition_frame, variable=check_box[5])
    1.37 +c_button_5 = Checkbutton(condition_frame, variable=ckeckbox_nums[5])
    1.38  c_button_5.grid(row=1, column=5)
    1.39  Label(condition_frame, text="6: ").grid(row=2, column=0)
    1.40 -c_button_6 = Checkbutton(condition_frame, variable=check_box[6])
    1.41 +c_button_6 = Checkbutton(condition_frame, variable=ckeckbox_nums[6])
    1.42  c_button_6.grid(row=2, column=1)
    1.43  Label(condition_frame, text="7: ").grid(row=2, column=2)
    1.44 -c_button_7 = Checkbutton(condition_frame, variable=check_box[7])
    1.45 +c_button_7 = Checkbutton(condition_frame, variable=ckeckbox_nums[7])
    1.46  c_button_7.grid(row=2, column=3)
    1.47  Label(condition_frame, text="8: ").grid(row=2, column=4)
    1.48 -c_button_8 = Checkbutton(condition_frame, variable=check_box[8])
    1.49 +c_button_8 = Checkbutton(condition_frame, variable=ckeckbox_nums[8])
    1.50  c_button_8.grid(row=2, column=5)
    1.51  condition_frame.pack(side="top")
    1.52