mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Allow resizing of log and comments windows
This commit is contained in:
parent
4c031b9686
commit
5d1ed621e3
3 changed files with 10 additions and 3 deletions
|
@ -555,7 +555,8 @@ class PysolMenubar(PysolMenubarTk):
|
||||||
'id': game.getGameNumber(format=1)}
|
'id': game.getGameNumber(format=1)}
|
||||||
cc = _("Comments for %(game)s %(id)s:\n\n") % kw
|
cc = _("Comments for %(game)s %(id)s:\n\n") % kw
|
||||||
c = game.gsaveinfo.comment or cc
|
c = game.gsaveinfo.comment or cc
|
||||||
d = EditTextDialog(game.top, _("Comments for %(id)s") % kw, text=c)
|
d = EditTextDialog(game.top, _("Comments for %(id)s") % kw, text=c,
|
||||||
|
resizable=True)
|
||||||
if d.status == 0 and d.button == 0:
|
if d.status == 0 and d.button == 0:
|
||||||
text = d.text
|
text = d.text
|
||||||
if text.strip() == cc.strip():
|
if text.strip() == cc.strip():
|
||||||
|
@ -644,13 +645,15 @@ class PysolMenubar(PysolMenubarTk):
|
||||||
elif mode == 103:
|
elif mode == 103:
|
||||||
header = (_("%(app)s Demo Full log") if demo
|
header = (_("%(app)s Demo Full log") if demo
|
||||||
else _("Full log for %(player)s")) % transkw
|
else _("Full log for %(player)s")) % transkw
|
||||||
d = FullLog_StatsDialog(self.top, header, self.app, player)
|
d = FullLog_StatsDialog(self.top, header, self.app, player,
|
||||||
|
resizable=True)
|
||||||
gameid = d.selected_game
|
gameid = d.selected_game
|
||||||
gamenum = d.selected_game_num
|
gamenum = d.selected_game_num
|
||||||
elif mode == 104:
|
elif mode == 104:
|
||||||
header = (_("%(app)s Demo Session log") if demo
|
header = (_("%(app)s Demo Session log") if demo
|
||||||
else _("Session log for %(player)s")) % transkw
|
else _("Session log for %(player)s")) % transkw
|
||||||
d = SessionLog_StatsDialog(self.top, header, self.app, player)
|
d = SessionLog_StatsDialog(self.top, header, self.app, player,
|
||||||
|
resizable=True)
|
||||||
gameid = d.selected_game
|
gameid = d.selected_game
|
||||||
gamenum = d.selected_game_num
|
gamenum = d.selected_game_num
|
||||||
elif mode == 105:
|
elif mode == 105:
|
||||||
|
|
|
@ -514,6 +514,8 @@ class LogDialog(MfxDialog):
|
||||||
title = _('Log')
|
title = _('Log')
|
||||||
MfxDialog.__init__(self, parent, title, kw.resizable, kw.default)
|
MfxDialog.__init__(self, parent, title, kw.resizable, kw.default)
|
||||||
|
|
||||||
|
self.top.wm_minsize(400, 200)
|
||||||
|
|
||||||
self.selected_game = None
|
self.selected_game = None
|
||||||
self.selected_game_num = None
|
self.selected_game_num = None
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,8 @@ class BaseEditTextDialog:
|
||||||
self, parent, title, kw.resizable, kw.default)
|
self, parent, title, kw.resizable, kw.default)
|
||||||
top_frame, bottom_frame = self.createFrames(kw)
|
top_frame, bottom_frame = self.createFrames(kw)
|
||||||
self.createBitmaps(top_frame, kw)
|
self.createBitmaps(top_frame, kw)
|
||||||
|
self.top.wm_minsize(300, 150)
|
||||||
|
|
||||||
#
|
#
|
||||||
self.text_w = tkinter.Text(top_frame, bd=1, relief="sunken",
|
self.text_w = tkinter.Text(top_frame, bd=1, relief="sunken",
|
||||||
wrap="word", width=64, height=16)
|
wrap="word", width=64, height=16)
|
||||||
|
|
Loading…
Add table
Reference in a new issue