使用Tkinter,如何在启动时放置对话框,或者在设置几何形状后如何自动调整窗口大小?

时间:2018-11-01 17:17:09

标签: python encryption tkinter resize position

免责声明:在所有情况下,这很可能是XY问题,如果您能指出正确的方向,我将不胜感激。

目标:我有一个文件,我希望tkinter可以读取该文件,然后根据文件内容动态创建窗口小部件。 我希望窗口始终以我的光标为中心打开。

为了进行MCVE,让我们考虑一个纯文本文件,其内容为:

Madness?
This
IS
T K I N T E R

然后tkinter应该创建4个标签窗口小部件,并调整主窗口的大小以适合该窗口。这很简单... 直到文件被加密。在读取加密文件之前,我需要先askstring()输入密码(MCVE:我们还假设我们只询问用于key)。

我的问题:

  1. askstring对话框始终位于默认位置。我知道应该相对于父级(根)...

  2. 但是我无法在创建窗口小部件之前设置geometry(),否则它将无法调整为窗口小部件的大小...

  3. 我无法预先确定geometry()的大小,因为没有密码(密钥)就无法打开文件...

这是我最成功的尝试的MCVE示例:

import tkinter as tk
from tkinter.simpledialog import askstring
from cryptography.fernet import Fernet

class GUI(tk.Tk):
    def __init__(self):
        super().__init__()

        # side note: If I don't withdraw() the root first, the dialog ends up behind the root
        # and I couldn't find a way to get around this.
        self.withdraw()
        self.create_widgets()

        # Attempt: I tried doing this instead of self.create_widgets():
            # self.reposition()
            # self.after(ms=1,func=self.create_widgets)
        # The dialog is positioned correctly, but the window size doesn't resize

        self.deiconify()

        # I have to do the reposition AFTER mainloop or else the window size becomes 1x1
        self.after(ms=1, func=self.reposition)
        self.mainloop()

    def get_key(self):
        return askstring('Locked','Enter Key', show='*', parent=self)

    def create_widgets(self):
        self.lbls = []
        with open('test2.txt', 'rb') as file:
            encrypted = file.read()
        key = self.get_key()
        suite = Fernet(key)
        self.data = suite.decrypt(encrypted).decode('utf-8')
        for i in self.data.split('\n'):
            self.lbls.append(tk.Label(self, text=i.strip()))
            self.lbls[-1].pack()

    def reposition(self):
        width, height = self.winfo_width(), self.winfo_height()
        self.geometry(f'{width}x{height}+{self.winfo_pointerx()-int(width/2)}+{self.winfo_pointery()-int(height/2)}')

gui = GUI()

达到(我可以忍受)的地方:

  • ✓根据文件内容正确设置大小
  • ✓根位于光标中心
  • ⨯在光标中心提示输入键

我的问题是:

  1. 设置pack_propagate()之后,是否可以基于类似于geometry()的窗口小部件功能在根上再次执行自动调整大小?似乎一旦设置geometry(),根将不再传播。

  2. 如果没有,如何在代码中手动调整其大小?我尝试检索小部件height = sum([i.winfo_reqheight() for i in self.lbls])的总高度,但是height变成了0。但是,当我在print(self.lbls[-1].winfo_reqheight())中的self.create_widgets()中分别返回26时,他们实际上在我的self.reposition()呼叫之后的 之后打印了,这很奇怪。

  3. 是否失败,是否可以在创建窗口小部件之前放置askstring()对话框?

我很困惑。我觉得我的方法是错误的,但是我不确定解决这种情况以打破依赖周期的正确方法是什么。


为帮助再现,这里是加密的字符串和密钥:

数据:

gAAAAABb2z3y-Kva7bdgMEbvnqGGRRJc9ZMrt8oc092_fuxSK1x4qlP72aVy13xR-jQV1vLD7NQdOTT6YBI17pGYpUZiFpIOQGih9jYsd-u1EPUeV2iqPLG7wYcNxYq-u4Z4phkHllvP

键:

SecretKeyAnyhowGoWatchDareDevilS3ItsAmazing=

编辑:基于@BryanOakley's answer here,我可以调用self.geometry("")进行重置,但是它恢复为原始的200x200大小,并且仍然不会扩展小部件。

1 个答案:

答案 0 :(得分:0)

经过十多次尝试,我认为它可以正常工作,以下是我修改的相关部分:

def __init__(self):
    super().__init__()
    self.withdraw()

    # reposition the window first...
    self.reposition()

    # For some reason I can't seem to figure out, 
    # without the .after(ms=1) the dialog still goes to my top left corner
    self.after(ms=1, func=self.do_stuff)
    self.mainloop()

# wrap these functions to be called by .after()
def do_stuff(self):
    self.create_widgets()
    self.deiconify()

def reposition(self):
    width, height = self.winfo_width(), self.winfo_height()
    self.geometry(f'{width}x{height}+{self.winfo_pointerx()-int(width/2)}+{self.winfo_pointery()-int(height/2)}')

    # reset the geometry per @BryanOakley's answer in the linked thread
    # Seems it resets the width/height but still retains the x/y
    self.geometry("")

对于tkinter来说,它会显示@BryanOakley have answers

我仍在等待是否会有其他人对此主题提出意见,并且很乐意接受您的回答以使该主题更加清晰。