31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
|
|
import tkinter as tk
|
||
|
|
import ttkbootstrap as ttk
|
||
|
|
|
||
|
|
class PQLogGUI(ttk.Frame):
|
||
|
|
def __init__(self, parent):
|
||
|
|
super().__init__(parent)
|
||
|
|
self.create_widgets()
|
||
|
|
|
||
|
|
def create_widgets(self):
|
||
|
|
log_frame = ttk.LabelFrame(self, text="测试日志")
|
||
|
|
log_frame.pack(fill=tk.BOTH, expand=True, padx=5, pady=5)
|
||
|
|
|
||
|
|
self.log_text = ttk.Text(log_frame, height=8, width=50)
|
||
|
|
self.log_text.pack(fill=tk.BOTH, expand=True, side=tk.LEFT)
|
||
|
|
|
||
|
|
log_scrollbar = ttk.Scrollbar(log_frame, command=self.log_text.yview)
|
||
|
|
log_scrollbar.pack(fill=tk.Y, side=tk.RIGHT)
|
||
|
|
self.log_text.config(yscrollcommand=log_scrollbar.set)
|
||
|
|
|
||
|
|
self.log_text.config(state=tk.DISABLED)
|
||
|
|
|
||
|
|
def log(self, message):
|
||
|
|
self.log_text.config(state=tk.NORMAL)
|
||
|
|
self.log_text.insert(tk.END, message + "\n")
|
||
|
|
self.log_text.see(tk.END)
|
||
|
|
self.log_text.config(state=tk.DISABLED)
|
||
|
|
|
||
|
|
def clear_log(self):
|
||
|
|
self.log_text.config(state=tk.NORMAL)
|
||
|
|
self.log_text.delete(1.0, tk.END)
|
||
|
|
self.log_text.config(state=tk.DISABLED)
|