summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2019-06-28 11:58:31 +0200
committeremkael <emkael@tlen.pl>2019-06-28 11:58:31 +0200
commit8fbb85176b183fe72be568beb04f11bc472e1a5e (patch)
tree699146e9c0a611fcb2383dca85b3e1a5dc5174ae
parenta46d3f05a9bc95932414ee8bc200e9d414d81487 (diff)
Separating OptionMenu labels from values
-rw-r--r--jfr_playoff/gui/frames/__init__.py49
-rw-r--r--jfr_playoff/gui/frames/match.py7
-rw-r--r--jfr_playoff/gui/frames/visual.py3
3 files changed, 47 insertions, 12 deletions
diff --git a/jfr_playoff/gui/frames/__init__.py b/jfr_playoff/gui/frames/__init__.py
index dad25e5..4d8ad13 100644
--- a/jfr_playoff/gui/frames/__init__.py
+++ b/jfr_playoff/gui/frames/__init__.py
@@ -337,26 +337,45 @@ class SelectionFrame(ScrollableFrame):
self.values[key].set(True)
class RefreshableOptionMenu(ttk.OptionMenu):
- def __init__(self, *args, **kwargs):
- ttk.OptionMenu.__init__(self, *args, **kwargs)
- self._lastValue = self._variable.get()
- self._variable.trace('w', self._valueSet)
+ def __init__(self, master, variable, *args, **kwargs):
+ self._valueVariable = variable
+ self._valueVariable.trace('w', self._valueSet)
+ self._lastValue = variable.get()
+ newVar = tk.StringVar()
+ ttk.OptionMenu.__init__(self, master, newVar, *args, **kwargs)
self._valueLock = False
self.refreshOptions()
+ class _setit(tk._setit):
+ def __init__(self, var, valVar, label, value, callback=None):
+ tk._setit.__init__(self, var, label, callback)
+ self._valueVariable = valVar
+ self._properValue = value
+ def __call__(self, *args):
+ self.__var.set(self.__value)
+ self._valueVariable.set(self._properValue)
+ if self.__callback:
+ self.__callback(self._valueVariable, *args)
+
def refreshOptions(self, *args):
options = self.getOptions()
self['menu'].delete(0, tk.END)
- for option in options:
+ for label, option in options:
self['menu'].add_command(
- label=option, command=tk._setit(self._variable, option))
+ label=label,
+ command=self._setit(
+ self._variable, self._valueVariable,
+ label, option, self._callback))
self._valueLock = True
- self._variable.set(
- self._lastValue if self._lastValue in options else '')
+ self._valueVariable.set(
+ self._lastValue
+ if self._lastValue in [option[1] for option in options] else '')
self._valueLock = False
def getOptions(self):
- return [self.getLabel(value) for value in self.getValues()]
+ return [
+ (self.getLabel(value), self.getVarValue(value))
+ for value in self.getValues()]
def getLabel(self, value):
pass
@@ -364,9 +383,19 @@ class RefreshableOptionMenu(ttk.OptionMenu):
def getValues(self):
pass
+ def getVarValue(self, value):
+ return self.getLabel(value)
+
def _valueSet(self, *args):
if not self._valueLock:
- self._lastValue = self._variable.get()
+ self._lastValue = self._valueVariable.get()
+ options = self.getOptions()
+ value = self._valueVariable.get()
+ for label, val in options:
+ if unicode(value) == unicode(val):
+ tk._setit(self._variable, label)()
+ return
+ tk._setit(self._variable, '')()
class TraceableText(tk.Text):
def __init__(self, *args, **kwargs):
diff --git a/jfr_playoff/gui/frames/match.py b/jfr_playoff/gui/frames/match.py
index b44bfe0..c2f7026 100644
--- a/jfr_playoff/gui/frames/match.py
+++ b/jfr_playoff/gui/frames/match.py
@@ -231,6 +231,9 @@ class SelectedTeamList(RefreshableOptionMenu):
def getLabel(self, value):
return self.VALUE_LABELS[value[0]] % (value[1])
+ def getVarValue(self, value):
+ return unicode(value)
+
class BracketMatchSettingsFrame(GuiFrame):
SOURCE_TEAM=0
@@ -376,10 +379,10 @@ class BracketMatchSettingsFrame(GuiFrame):
def setSelectedTeam(self, team):
if team > -1:
- self.selectedIndex.set(self.bracketWidgets[7].getOptions()[team+1])
+ self.selectedIndex.set(self.bracketWidgets[7].getValues()[team+1])
self.selected.set(1)
else:
- self.selectedIndex.set(0)
+ self.selectedIndex.set(('none', ''))
self.selected.set(0)
def getConfig(self):
diff --git a/jfr_playoff/gui/frames/visual.py b/jfr_playoff/gui/frames/visual.py
index 28d1827..03f9a14 100644
--- a/jfr_playoff/gui/frames/visual.py
+++ b/jfr_playoff/gui/frames/visual.py
@@ -191,6 +191,9 @@ class MatchList(RefreshableOptionMenu):
def getValues(self):
return self.winfo_toplevel().getMatches()
+ def getVarValue(self, match):
+ return unicode(match.getMatchID())
+
class BoxPositionFrame(RepeatableFrame):
def renderContent(self):