1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Scaled select windows to main window size.

This commit is contained in:
Joe R 2022-09-16 22:16:31 -04:00
parent c81ccfa186
commit a39251f5a5
3 changed files with 27 additions and 30 deletions

View file

@ -228,17 +228,16 @@ class SelectCardsetDialogWithPreview(MfxDialog):
self.TreeDataHolder_Class.data = self.TreeData_Class(manager, key) self.TreeDataHolder_Class.data = self.TreeData_Class(manager, key)
# #
# Title bar height - based on parent window as this window pw = parent.winfo_width()
# isn't visible yet. Less accurate, but looks cleaner. ph = parent.winfo_height()
th = int(parent.winfo_rooty() - parent.winfo_y()) py = parent.winfo_y()
px = parent.winfo_x()
sw = self.top.winfo_screenwidth() h = int(ph * .8)
sh = self.top.winfo_screenheight() w = int(pw * .8)
w1 = int(min(275, pw / 2.5))
h = int(sh * .8) geometry = ("%dx%d+%d+%d" % (w, h, px + ((pw - w) / 2),
w = int(sw * .8) py + (int((ph - h) / 1.5))))
w1 = int(min(275, sw / 2.5))
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
self.top.wm_minsize(400, 200) self.top.wm_minsize(400, 200)
paned_window = ttk.PanedWindow(top_frame, orient='horizontal') paned_window = ttk.PanedWindow(top_frame, orient='horizontal')

View file

@ -360,17 +360,16 @@ class SelectGameDialogWithPreview(SelectGameDialog):
self.TreeDataHolder_Class.data = self.TreeData_Class(app) self.TreeDataHolder_Class.data = self.TreeData_Class(app)
# #
# Title bar height - based on parent window as this window pw = parent.winfo_width()
# isn't visible yet. Less accurate, but looks cleaner. ph = parent.winfo_height()
th = int(parent.winfo_rooty() - parent.winfo_y()) py = parent.winfo_y()
px = parent.winfo_x()
sw = self.top.winfo_screenwidth() h = int(ph * .8)
sh = self.top.winfo_screenheight() w = int(pw * .8)
w1 = int(min(275, pw / 2.5))
h = int(sh * .8) geometry = ("%dx%d+%d+%d" % (w, h, px + ((pw - w) / 2),
w = int(sw * .8) py + (int((ph - h) / 1.5))))
w1 = int(min(275, sw / 2.5))
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
self.top.wm_minsize(400, 200) self.top.wm_minsize(400, 200)
# print sw, w1, w2 # print sw, w1, w2

View file

@ -130,17 +130,16 @@ class SelectTileDialogWithPreview(MfxDialog):
self.TreeDataHolder_Class.data = self.TreeData_Class(manager, key) self.TreeDataHolder_Class.data = self.TreeData_Class(manager, key)
# #
# Title bar height - based on parent window as this window pw = parent.winfo_width()
# isn't visible yet. Less accurate, but looks cleaner. ph = parent.winfo_height()
th = int(parent.winfo_rooty() - parent.winfo_y()) py = parent.winfo_y()
px = parent.winfo_x()
sw = self.top.winfo_screenwidth() h = int(ph * .8)
sh = self.top.winfo_screenheight() w = int(pw * .8)
w1 = int(min(275, pw / 2.5))
h = int(sh * .8) geometry = ("%dx%d+%d+%d" % (w, h, px + ((pw - w) / 2),
w = int(sw * .8) py + (int((ph - h) / 1.5))))
w1 = int(min(275, sw / 2.5))
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
self.top.wm_minsize(400, 200) self.top.wm_minsize(400, 200)
padx, pady = 4, 4 padx, pady = 4, 4