python-3.x 显示pygtk线程弹出窗口,使GUI冻结

pxiryf3j  于 2023-10-21  发布在  Python
关注(0)|答案(1)|浏览(103)

我正在用pygtk 3开发一个图形界面,与此界面并行,我在第二个线程中运行一个函数,该函数读取由外部程序更新的文件。
当这个文件中的值超过某个值时,我想显示一个弹出窗口来警告用户已经达到这个值。
问题是,当弹出窗口显示时,程序冻结。
在看了几个类似的问题之后,我明白了你不能在第二个线程中启动另一个gtk窗口,但是无论我怎么努力,我都不知道如何做到这一点.也许从线程发出一个信号,这个信号会被gtk主循环接收?但我还没想好怎么做
这里是一个简化的代码(我没有把所有的代码的图形用户界面它的大,没有相关的这个问题),所以只有一个主gtk窗口,弹出窗口和功能阅读文件.

import gi

gi.require_version("Gtk", "3.0")

from gi.repository import Gtk
from threading import Thread
import time
    
    
#The Popup window classe    
class DeepMonitorWindow(Gtk.Window):
    def __init__(self):
        super().__init__(title="Sounder")
        
        self.set_border_width(10)
        label=Gtk.Label(label="som popup message")
        hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=6)
        hbox.pack_start(label,True,True,6)
        button=Gtk.Button.new_with_label("OK")
        button.connect("clicked",self.on_click)
        hbox.pack_start(button,True,True,6)
        self.add(hbox)
    def on_click(self,event):
        self.destroy() 

#the function that run ine the thread
def DeepMonitor():
    
    flagUpDown=True
    while(1):
        
        with open("seasave_shared.txt","r") as f:
            depth=f.readlines()[-1]
            print(float(depth.lstrip().strip("\n")))
            if float(depth.lstrip().strip("\n")) > 150 and flagUpDown==True :
                print("deep reached 150m")
                window=DeepMonitorWindow()
                window.show_all()
                flagUpDown=False
            if float(depth.lstrip().strip("\n")) < 150 and flagUpDown==False:
                print("deep reached 150m")
                window=DeepMonitorWindow()
                window.show_all()
                flagUpDown=True
                break
        time.sleep(1)     

#the main window        
class StationSheet():
    
    
    def __init__(self):
        
             
        
        self.window=Gtk.Window() 
        self.window.show_all()
        self.window.connect("destroy", Gtk.main_quit)
        
        #the thread
        t=Thread(target=DeepMonitor)
        t.start()
    
def main():
    
    app = StationSheet()
    Gtk.main()
 

if __name__ == "__main__":
    main()
bfnvny8b

bfnvny8b1#

我终于找到了一种方法让它工作!我的灵感来自以下链接:https://pygobject.readthedocs.io/en/latest/guide/threading.html
使用lang-python GLib.idle_add(function)显示窗口,并在启动线程之前使用lang-python thread.deamon()
我还创建了一个函数来显示弹出窗口。
下面是工作代码

import gi

gi.require_version("Gtk", "3.0")

from gi.repository import Gtk
from threading import Thread
import time
    
    
#The Popup window classe    
class DeepMonitorWindow(Gtk.Window):
    def __init__(self):
        super().__init__(title="Sounder")
        
        self.set_border_width(10)
        label=Gtk.Label(label="som popup message")
        hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=6)
        hbox.pack_start(label,True,True,6)
        button=Gtk.Button.new_with_label("OK")
        button.connect("clicked",self.on_click)
        hbox.pack_start(button,True,True,6)
        self.add(hbox)
    def on_click(self,event):
        self.destroy() 

    

#the main window        
class StationSheet():
    
    
    def __init__(self):
        
             
        
        self.window=Gtk.Window() 
        self.window.show_all()
        self.window.connect("destroy", Gtk.main_quit)
        
        #the thread
        t=Thread(target=self.DeepMonitor)
        t.daemon=True
        t.start()
        
    #the function that run ine the thread
    def show_popup(self):
        p=DeepMonitorWindow()
        p.set_transient_for(self.window)
        p.show_all()
    def DeepMonitor():
        
        flagUpDown=True
        while(1):
            
            with open("seasave_shared.txt","r") as f:
                depth=f.readlines()[-1]
                print(float(depth.lstrip().strip("\n")))
                if float(depth.lstrip().strip("\n")) > 150 and flagUpDown==True :
                    print("deep reached 150m")
                    window=DeepMonitorWindow()
                    window.show_all()
                    flagUpDown=False
                if float(depth.lstrip().strip("\n")) < 150 and flagUpDown==False:
                    print("deep reached 150m")
                    window=DeepMonitorWindow()
                    window.show_all()
                    flagUpDown=True
                    break
            time.sleep(1) 
    
def main():
    
    app = StationSheet()
    Gtk.main()

相关问题