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-13 11:41:18 (GMT)
committer Walther Neuper <neuper@neuper.(none)>2009-12-13 11:41:18 (GMT)
commitee38fc80adaa8fc3bb7c2509006f20200a303300 (patch)
treefd243f8fafbb7e7ad7ff5b8a3fcc5901dfc0bcbf
parent271d0b2e8affdb4bb616bbb203fabe9c423d0c47 (diff)
offer_topics --> offer_coll_to_learner
-rwxr-xr-xReckonPrimer.activity/coach.py4
-rwxr-xr-xReckonPrimer.activity/display.py8
2 files changed, 5 insertions, 7 deletions
diff --git a/ReckonPrimer.activity/coach.py b/ReckonPrimer.activity/coach.py
index 078c767..ceb785f 100755
--- a/ReckonPrimer.activity/coach.py
+++ b/ReckonPrimer.activity/coach.py
@@ -75,9 +75,7 @@ class Coach:
def request_exercise(self):
""" This preliminary version just lets the Learner select."""
print("in Coach.get_setting")
- # WN090624 self._dis.offer_topics(['addsub_simp',
- # 'passten', 'times_div'])
- self._dis.offer_topics([t.get_topic() for t in self._exs])
+ self._dis.offer_coll_to_learner([t.get_topic() for t in self._exs])
# calls back with notify('setting-done'...
def notify(self, (msg, data)):
diff --git a/ReckonPrimer.activity/display.py b/ReckonPrimer.activity/display.py
index b3c2dfe..78e2900 100755
--- a/ReckonPrimer.activity/display.py
+++ b/ReckonPrimer.activity/display.py
@@ -223,8 +223,8 @@ class Display:
self.progress_total.hide()
def offer_setting(self,ex):
- self._ex = ex
- self._sett = self._ex.get_setting()
+ self._ex = ex #WN.LV either drop this or self.current_exercise
+ self._sett = self._ex.get_setting() #WN.LV make _sett local
### START BUTTON BEGIN ###
self.start_button = gtk.Button(None, gtk.STOCK_GO_FORWARD)
@@ -237,7 +237,7 @@ class Display:
self.start_button.show()
### START BUTTON END ###
- self.current_exercise = ex
+ self.current_exercise = ex #WN.LV either drop this or self._ex
print('in Display.offer_setting, 241 self._sett=', self._sett)
self.current_exercise.define_buttons()
self.current_exercise.set_buttons(self._sett)
@@ -390,7 +390,7 @@ class Display:
self.display_table.destroy()
- def offer_topics(self, topics):
+ def offer_coll_to_learner(self, topics):
"""TODO: get the users choice from buttons above the settings"""
self.topic_box = gtk.HBox(True, 0)
self.topic_table.attach(self.topic_box, 0, 6, 0, 1)