2017-11-25 399 views
0

我的目標是擁有一個「sizegrip部件」,使用戶可以調整文本部件的大小。tkinter - 調整文本部件的大小(文本部件的sizegrip)

圖片來說明:(我很抱歉的壞網格)

enter image description here

是否有可能使sizegrip控件調整文本窗口小部件,而不是根窗口?

任何可以替代我的需求的替代部件?

+0

打應該是可能的,但可能並不容易。您期望在文本小部件下面的小部件發生什麼? –

+0

他們只會向下移動。想象一下,文本小部件的高增長。我其實不在乎調整文本部件的寬度。其實現在我不知道這件事,如果你只能調整文本部件的高度,我可能會更好。 – Bjango

+0

_「他們只會向下移動」_ - 如果沒有額外的空間會怎麼樣?爲什麼不設計UI,以便在調整窗口大小時,文本小部件會增長? –

回答

0

如果您確實想要這樣做,請使用place來管理包含文本窗口小部件,滾動條和sizegrip的框架。如果您刪除了默認綁定併爲sizegrip提供了新綁定,那麼您可以防止它更改頂層幾何並使其執行其他操作。 請注意,一個或兩個窗格是這種事情更正常的UI設計。

import sys 
import tkinter as tk 
import tkinter.ttk as ttk 

class App(ttk.Frame): 
    def __init__(self, parent, title=None): 
     super().__init__(parent) 
     parent.wm_geometry("600x400") 
     parent.wm_title(title) 
     self.top = tk.Frame(self, height=100, background="green4") 
     self.middle = tk.Frame(self, background="red4") 
     self.lower = tk.Frame(self, height=100, background="blue4") 

     self.textframe = ttk.Frame(self.middle) 
     self.text = tk.Text(self.textframe) 
     self.vs = ttk.Scrollbar(self.textframe, 
           command=self.text.yview) 
     self.sg = ttk.Sizegrip(self.textframe) 
     self.text.configure(yscrollcommand=self.vs.set) 
     self.text.grid(row=0, column=0, sticky="news") 
     self.vs.grid(row=0, column=1, sticky="news") 
     self.sg.grid(row=1, column=1, sticky="sew") 
     self.textframe.grid_rowconfigure(0, weight=1) 
     self.textframe.grid_columnconfigure(0, weight=1) 
     self.middle.bind('<Map>', self.Place) 

     self.sg.bindtags((self.sg, '.','all')) 
     self.sg.bind('<Button-1>', self.Press) 
     self.sg.bind('<B1-Motion>', self.Drag) 
     self.sg.bind('<ButtonRelease-1>', self.Release) 

     self.top.grid(row=0, column=0, sticky="news") 
     self.middle.grid(row=1, column=0, sticky="news") 
     self.lower.grid(row=2, column=0, sticky="news") 
     self.grid_rowconfigure(1, weight=1) 
     self.grid_columnconfigure(0, weight=1) 
     self.grid(row=0,column=0, sticky="news") 
     parent.grid_rowconfigure(0, weight=1) 
     parent.grid_columnconfigure(0, weight=1) 

    def Press(self, ev): 
     self.dragging=True 
     self.dragpos = (ev.x_root, ev.y_root) 

    def Drag(self, ev): 
     if self.dragging: 
      dx = ev.x_root - self.dragpos[0] 
      dy = ev.y_root - self.dragpos[1] 
      sgx = self.sg.winfo_x() + dx 
      sgy = self.sg.winfo_y() + dy 
      sgw = self.sg.winfo_reqwidth() 
      sgh = self.sg.winfo_reqheight() 
      max_w = self.middle.winfo_width() - sgw 
      max_h = self.middle.winfo_height() - sgh 
      if sgx < 0 or sgx > max_w or sgy < 0 or sgy > max_h: 
       return 
      self.textframe.place(x=0, y=0, 
          width=sgx+sgw, height=sgy+sgh) 
      self.dragpos = (ev.x_root, ev.y_root) 

    def Release(self, ev): 
     self.dragging=False 

    def Place(self, ev): 
     """Place the text widget controls once the rest of the 
     application has been mapped so we actually have a size 
     to work from. 
     Reset the Map event to avoid re-calling this code.""" 
     self.textframe.bind('<Map>', None) 
     self.textframe.place(x=0, y=0, 
          width=self.middle.winfo_width(), 
          height=self.middle.winfo_height()) 

def main(args=None): 
    root = tk.Tk() 
    app = App(root, "Sizegrip demo") 
    root.mainloop() 
    return 0 

if __name__ == '__main__': 
    sys.exit(main(sys.argv[1:])) 

結果: screenshot of the resulting UI

+0

在tkinter應用中將位置和網格混合起來不是一個壞主意嗎?只有在電網的幫助下才能實現同樣的目標嗎? – Bjango

+1

不是。爲同一個小部件混合幾何管理器是一個問題。在這裏,文本框架的孩子被網格化,並且所有主框架(頂部,中部,下部)被網格化。但中框架的孩子獨佔用地。只需要避免在其他中間孩子身上使用網格。您可以使用網格併爲每個單元格操作權重參數以獲得類似的效果。 – patthoyts

相關問題