Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalther Neuper <neuper@neuper.(none)>2009-12-15 09:31:03 (GMT)
committer Walther Neuper <neuper@neuper.(none)>2009-12-15 09:31:03 (GMT)
commit428e459100309c47209da317f4dffaf129bb7cd5 (patch)
tree3895720cfb0133dc6437766753d4d182697da629
parent2dd3d1609a14d6c7ebfa7084b65eb10957cde3fa (diff)
collect_table --> calc; rename finish_learner_collect
-rwxr-xr-xReckonPrimer.activity/display.py15
1 files changed, 12 insertions, 3 deletions
diff --git a/ReckonPrimer.activity/display.py b/ReckonPrimer.activity/display.py
index 1fbdee3..008d076 100755
--- a/ReckonPrimer.activity/display.py
+++ b/ReckonPrimer.activity/display.py
@@ -365,8 +365,8 @@ class Display:
def offer_coll_to_learner(self, collect):
"""TODO: get the users choice from buttons above the settings"""
collect.define_coll_gui()
- collect.set_coll_gui(collect) # sets callbacks
- self.finish_learner_collect() # set finish_learner_collect_butt + callb
+ collect.set_coll_gui(collect) # sets callbacks
+ self.set_finish_learner_coll() # set finish_learner_coll_butt + callb
def switch_exercise(self):
""" Another exercise has been selected. """
@@ -384,5 +384,14 @@ class Display:
""" Sets a semaphore for finish_collect_callback. """
self._coll_key = coll_key
- def finish_learner_collect(self):
+ def set_finish_learner_coll(self):
+ """ """
+# self.start_button = gtk.Button(None, gtk.STOCK_GO_FORWARD)
+# self.start_button.connect("clicked", self.clicked_start_callback)
+# self.feedback_table.attach(self.start_button, 0, 6, 14, 15)
+# self.start_alignment = self.start_button.get_children()[0]
+# self.start_hbox = self.start_alignment.get_children()[0]
+# self.start_image, self.start_label = self.start_hbox.get_children()
+# self.start_label.set_label("")
+# self.start_button.show()
pass