Документ взят из кэша поисковой машины. Адрес оригинального документа : http://kodomo.fbb.msu.ru/hg/cca/raw-rev/031f654a7b7d
Дата изменения: Unknown
Дата индексирования: Tue Oct 2 04:30:03 2012
Кодировка:

# HG changeset patch
# User Ilia
# Date 1291551150 -10800
# Node ID 031f654a7b7da848986313abe1e4856dff5dfa04
# Parent 282ebe06d5acdb8d9e6ce2d83ecef89fe4b08643
some little correct

diff -r 282ebe06d5ac -r 031f654a7b7d Interface.py
--- a/Interface.py Sun Dec 05 14:47:25 2010 +0300
+++ b/Interface.py Sun Dec 05 15:12:30 2010 +0300
@@ -270,7 +270,7 @@
symboles = dict()

#infoPanel=Frame
-automata_frame=Frame(root, background="grey")
+automata_frame=Frame(root, background="white")

headline_frame=Frame(automata_frame, background="white")
head = Label(headline_frame, text= "Automata Panel", font=16)
@@ -327,31 +327,31 @@
condition.pack(side="top", fill="x")
condition_frame=Frame(automata_frame, background="white")
Label(condition_frame, text="0: ").grid(row=0, column=0)
-c_button_0 = Checkbutton(condition_frame, variable=check_box[0])
+c_button_0 = Checkbutton(condition_frame, variable=ckeckbox_nums[0])
c_button_0.grid(row=0, column=1)
Label(condition_frame, text="1: ").grid(row=0, column=2)
-c_button_1 = Checkbutton(condition_frame, variable=check_box[1])
+c_button_1 = Checkbutton(condition_frame, variable=ckeckbox_nums[1])
c_button_1.grid(row=0, column=3)
Label(condition_frame, text="2: ").grid(row=0, column=4)
-c_button_2 = Checkbutton(condition_frame, variable=check_box[2])
+c_button_2 = Checkbutton(condition_frame, variable=ckeckbox_nums[2])
c_button_2.grid(row=0, column=5)
Label(condition_frame, text="3: ").grid(row=1, column=0)
-c_button_3 = Checkbutton(condition_frame, variable=check_box[3])
+c_button_3 = Checkbutton(condition_frame, variable=ckeckbox_nums[3])
c_button_3.grid(row=1, column=1)
Label(condition_frame, text="4: ").grid(row=1, column=2)
-c_button_4 = Checkbutton(condition_frame, variable=check_box[4])
+c_button_4 = Checkbutton(condition_frame, variable=ckeckbox_nums[4])
c_button_4.grid(row=1, column=3)
Label(condition_frame, text="5: ").grid(row=1, column=4)
-c_button_5 = Checkbutton(condition_frame, variable=check_box[5])
+c_button_5 = Checkbutton(condition_frame, variable=ckeckbox_nums[5])
c_button_5.grid(row=1, column=5)
Label(condition_frame, text="6: ").grid(row=2, column=0)
-c_button_6 = Checkbutton(condition_frame, variable=check_box[6])
+c_button_6 = Checkbutton(condition_frame, variable=ckeckbox_nums[6])
c_button_6.grid(row=2, column=1)
Label(condition_frame, text="7: ").grid(row=2, column=2)
-c_button_7 = Checkbutton(condition_frame, variable=check_box[7])
+c_button_7 = Checkbutton(condition_frame, variable=ckeckbox_nums[7])
c_button_7.grid(row=2, column=3)
Label(condition_frame, text="8: ").grid(row=2, column=4)
-c_button_8 = Checkbutton(condition_frame, variable=check_box[8])
+c_button_8 = Checkbutton(condition_frame, variable=ckeckbox_nums[8])
c_button_8.grid(row=2, column=5)
condition_frame.pack(side="top")