mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Extract a different method.
As a precursor to extracting a method in the base class.
This commit is contained in:
parent
ab8d445b49
commit
6ffefe1db5
2 changed files with 10 additions and 4 deletions
|
@ -129,8 +129,7 @@ class SolverDialog(BaseSolverDialog, MfxDialog):
|
|||
row += 1
|
||||
self.progress_var = Tkinter.BooleanVar()
|
||||
self.progress_var.set(True)
|
||||
w = self._calcToolkit().Checkbutton(frame, variable=self.progress_var,
|
||||
text=_('Show progress'))
|
||||
w = self._createShowProgressButton(frame)
|
||||
w.grid(row=row, column=0, columnspan=2, sticky='ew', padx=2, pady=2)
|
||||
|
||||
#
|
||||
|
@ -172,6 +171,10 @@ class SolverDialog(BaseSolverDialog, MfxDialog):
|
|||
self.connectGame(self.app.game)
|
||||
self.mainloop(focus, kw.timeout, transient=False)
|
||||
|
||||
def _createShowProgressButton(self, frame):
|
||||
return self._calcToolkit().Checkbutton(frame, variable=self.progress_var,
|
||||
text=_('Show progress'))
|
||||
|
||||
def initKw(self, kw):
|
||||
strings=[_('&Start'), _('&Play'), _('&New'), 'sep', _('&Close'),]
|
||||
kw = KwStruct(kw,
|
||||
|
|
|
@ -131,8 +131,7 @@ class SolverDialog(BaseSolverDialog, MfxDialog):
|
|||
row += 1
|
||||
self.progress_var = Tkinter.BooleanVar()
|
||||
self.progress_var.set(True)
|
||||
w = self._calcToolkit().Checkbutton(frame, variable=self.progress_var,
|
||||
text=_('Show progress'), anchor='w')
|
||||
w = self._createShowProgressButton(frame)
|
||||
w.grid(row=row, column=0, columnspan=2, sticky='ew', padx=2, pady=2)
|
||||
|
||||
#
|
||||
|
@ -174,6 +173,10 @@ class SolverDialog(BaseSolverDialog, MfxDialog):
|
|||
self.connectGame(self.app.game)
|
||||
self.mainloop(focus, kw.timeout, transient=False)
|
||||
|
||||
def _createShowProgressButton(self, frame):
|
||||
return self._calcToolkit().Checkbutton(frame, variable=self.progress_var,
|
||||
text=_('Show progress'), anchor='w')
|
||||
|
||||
def initKw(self, kw):
|
||||
strings=[_('&Start'), _('&Play'), _('&New'), _('&Close'),]
|
||||
kw = KwStruct(kw,
|
||||
|
|
Loading…
Add table
Reference in a new issue