开发者

catch close gtk.window

开发者 https://www.devze.com 2022-12-21 00:55 出处:网络
I have gtk.Window and I need to catch closure. I need to close the show the message dialog and click Yes if the window should be closed unless there is a show win开发者_如何学运维dow

I have gtk.Window and I need to catch closure. I need to close the show the message dialog and click Yes if the window should be closed unless there is a show win开发者_如何学运维dow

Thank you.


Handle the delete-event signal. Return False to close, True to cancel.


Here is how I use it:

# in constructor:
        self.connect('destroy', gtk.main_quit)
        self.connect('delete-event', self.on_destroy)

    def on_destroy(self, widget=None, *data):
        # return True --> no, don't close

        messagedialog = gtk.MessageDialog(parent=self, flags= gtk.DIALOG_MODAL & gtk.DIALOG_DESTROY_WITH_PARENT, 
                                          type=gtk.MESSAGE_QUESTION, buttons=gtk.BUTTONS_OK_CANCEL, message_format="Click on 'Cancel' to leave the application open.")
        messagedialog.show_all()
        result=messagedialog.run()
        messagedialog.destroy()
        if result==gtk.RESPONSE_CANCEL:
            return True
        return False
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号