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:
parent
c81ccfa186
commit
a39251f5a5
3 changed files with 27 additions and 30 deletions
|
@ -228,17 +228,16 @@ class SelectCardsetDialogWithPreview(MfxDialog):
|
|||
self.TreeDataHolder_Class.data = self.TreeData_Class(manager, key)
|
||||
#
|
||||
|
||||
# Title bar height - based on parent window as this window
|
||||
# isn't visible yet. Less accurate, but looks cleaner.
|
||||
th = int(parent.winfo_rooty() - parent.winfo_y())
|
||||
pw = parent.winfo_width()
|
||||
ph = parent.winfo_height()
|
||||
py = parent.winfo_y()
|
||||
px = parent.winfo_x()
|
||||
|
||||
sw = self.top.winfo_screenwidth()
|
||||
sh = self.top.winfo_screenheight()
|
||||
|
||||
h = int(sh * .8)
|
||||
w = int(sw * .8)
|
||||
w1 = int(min(275, sw / 2.5))
|
||||
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
|
||||
h = int(ph * .8)
|
||||
w = int(pw * .8)
|
||||
w1 = int(min(275, pw / 2.5))
|
||||
geometry = ("%dx%d+%d+%d" % (w, h, px + ((pw - w) / 2),
|
||||
py + (int((ph - h) / 1.5))))
|
||||
self.top.wm_minsize(400, 200)
|
||||
|
||||
paned_window = ttk.PanedWindow(top_frame, orient='horizontal')
|
||||
|
|
|
@ -360,17 +360,16 @@ class SelectGameDialogWithPreview(SelectGameDialog):
|
|||
self.TreeDataHolder_Class.data = self.TreeData_Class(app)
|
||||
#
|
||||
|
||||
# Title bar height - based on parent window as this window
|
||||
# isn't visible yet. Less accurate, but looks cleaner.
|
||||
th = int(parent.winfo_rooty() - parent.winfo_y())
|
||||
pw = parent.winfo_width()
|
||||
ph = parent.winfo_height()
|
||||
py = parent.winfo_y()
|
||||
px = parent.winfo_x()
|
||||
|
||||
sw = self.top.winfo_screenwidth()
|
||||
sh = self.top.winfo_screenheight()
|
||||
|
||||
h = int(sh * .8)
|
||||
w = int(sw * .8)
|
||||
w1 = int(min(275, sw / 2.5))
|
||||
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
|
||||
h = int(ph * .8)
|
||||
w = int(pw * .8)
|
||||
w1 = int(min(275, pw / 2.5))
|
||||
geometry = ("%dx%d+%d+%d" % (w, h, px + ((pw - w) / 2),
|
||||
py + (int((ph - h) / 1.5))))
|
||||
self.top.wm_minsize(400, 200)
|
||||
|
||||
# print sw, w1, w2
|
||||
|
|
|
@ -130,17 +130,16 @@ class SelectTileDialogWithPreview(MfxDialog):
|
|||
self.TreeDataHolder_Class.data = self.TreeData_Class(manager, key)
|
||||
#
|
||||
|
||||
# Title bar height - based on parent window as this window
|
||||
# isn't visible yet. Less accurate, but looks cleaner.
|
||||
th = int(parent.winfo_rooty() - parent.winfo_y())
|
||||
pw = parent.winfo_width()
|
||||
ph = parent.winfo_height()
|
||||
py = parent.winfo_y()
|
||||
px = parent.winfo_x()
|
||||
|
||||
sw = self.top.winfo_screenwidth()
|
||||
sh = self.top.winfo_screenheight()
|
||||
|
||||
h = int(sh * .8)
|
||||
w = int(sw * .8)
|
||||
w1 = int(min(275, sw / 2.5))
|
||||
geometry = ("%dx%d+%d+%d" % (w, h, (sw - w) / 2, ((sh - h) / 2) - th))
|
||||
h = int(ph * .8)
|
||||
w = int(pw * .8)
|
||||
w1 = int(min(275, pw / 2.5))
|
||||
geometry = ("%dx%d+%d+%d" % (w, h, px + ((pw - w) / 2),
|
||||
py + (int((ph - h) / 1.5))))
|
||||
self.top.wm_minsize(400, 200)
|
||||
|
||||
padx, pady = 4, 4
|
||||
|
|
Loading…
Add table
Reference in a new issue