码迷,mamicode.com
首页 > 其他好文 > 详细

PyQt4重写事件处理方法

时间:2016-04-02 02:01:13      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:

PyQt中的事件处理主要以来重写事件处理函数来实现。

#!/usr/bin/python
# -*- coding: utf-8 -*-

import sys
from PyQt4 import QtGui, QtCore 

class Escape(QtGui.QWidget):
    def __init__(self, parent = None):
        QtGui.QWidget.__init__(self)
        
        self.setWindowTitle(escape)
        self.resize(250, 150)
        self.connect(self, QtCore.SIGNAL(closeEmitApp()),
                            QtCore.SLOT(close()))
    
    def keyPressEvent(self, event):
        if event.key() == QtCore.Qt.Key_Escape:
            self.close()
            
app = QtGui.QApplication(sys.argv)
escape = Escape()
escape.show()
sys.exit(app.exec_())            

在上面的示例中,我们重新实现了keyPressEvent()事件处理方法。

    def keyPressEvent(self, event):
        if event.key() == QtCore.Qt.Key_Escape:
            self.close()

通过上面的方法,当我们按下ESC键时程序就会结束。

PyQt4重写事件处理方法

标签:

原文地址:http://www.cnblogs.com/moonlightpoet/p/5346767.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!