Buttonを押したら、Treeviewに表示しているデータ1行が選択されているかどうかを判別したいです。
focus_getがtreeviewかどうかで判別してしまうと、データ1行に対してフォーカスが当たっているとき以外でもTrueになってしまいます(Tabキーでfocusをそれぞれのウィジェットに移しながら確認。)
データ1行が選択されているかどうかを判別するための関数ってありますか?
Python
1from tkinter import font 2from tkinter import ttk 3import tkinter as tk 4 5class App: 6 def __init__(self, win): 7 self.win = win 8 self.win.geometry("400x124") 9 self.create_view() 10 11 def create_view(self): 12 self.win.rowconfigure(tuple(range(2)), weight=1) 13 self.win.columnconfigure(tuple(range(2)), weight=1) 14 15 columns = 5 16 data = [] 17 for i in range(0, 100, 5): 18 data.append([str(i)+"abcdefghijklmnopqrstuvwxyzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", str(i+1), str(i+2), str(i+3), str(i+4)]) 19 self.tree = ttk.Treeview(self.win) 20 ttk.Style().configure("Treeview.Heading", font=("", 30)) 21 fontsize = 30 22 treefont = font.Font(size=fontsize) 23 ttk.Style().configure("Treeview", font=("", fontsize), rowheight=treefont.metrics()["linespace"]) 24 self.tree.grid(row=0, column=0, rowspan=2, columnspan=2, sticky="nsew", padx=5, pady=5) 25 self.tree["columns"] = tuple(range(1, columns + 1)) 26 self.tree["show"] = "headings" 27 #w = self.win.winfo_width() 28 #ww = int(w / 7) 29 for i in range(1, columns + 1): 30 self.tree.heading(i, text="Data"+str(i)) 31 #self.tree.column(i, width=ww) 32 id = None 33 width_li = [100, 100, 100, 100, 100] # width初期値 34 for i in data: 35 for j in range(len(i)): 36 if width_li[j] < len(i[j]): 37 width_li[j] = len(i[j]) 38 print(width_li) 39 id = self.tree.insert("", "end", value=(i)) 40 41 self.tree.see(id) 42 43 self.button1 = tk.Button(self.win, text="▲", command=self.push_button1) 44 self.button1.grid(row=0, column=2, sticky="nsew") 45 self.button2 = tk.Button(self.win, text="▼", command=self.push_button2) 46 self.button2.grid(row=1, column=2, sticky="nsew") 47 self.button3 = tk.Button(self.win, text="◀", command=self.push_button3) 48 self.button3.grid(row=2, column=0, sticky="nsew") 49 self.button4 = tk.Button(self.win, text="▶", command=self.push_button4) 50 self.button4.grid(row=2, column=1, sticky="nsew") 51 52 self.button5 = tk.Button(self.win, text="Button", command=self.push_button5) 53 self.button5.grid(row=3, column=0, sticky="nsew") 54 55 def push_button1(self): 56 self.tree.yview("scroll", -1, "units") 57 58 def push_button2(self): 59 self.tree.yview("scroll", +1, "units") 60 61 def push_button3(self): 62 self.tree.xview("scroll", -1, "pages") 63 64 def push_button4(self): 65 self.tree.xview("scroll", +1, "pages") 66 67 def push_button5(self): 68 if self.win.focus_get() == self.tree: 69 print("データが選ばれている") 70 else: 71 print("データが選ばれていない") 72 73 74 75def main(): 76 win = tk.Tk() 77 App(win) 78 win.mainloop() 79 80if __name__ == "__main__": 81 main()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/04/08 10:28