0

Mac OSX で (command + q) キーを押すと、PyQt アプリケーションが閉じます。

(つまり) 私のアプリは、Windows で (Alt + F4) キーを押すのと同様の終了イベントを受け取ります

しかし、Mac ネイティブの閉じるキーボード ショートカットであるこのタイプの終了イベントを無効にするにはどうすればよいですか。

以下は、qmainwindow が close イベントを受信しないようにするサンプル pyqt コードです。

#! /usr/bin/python 
import sys 
import os
from PyQt4 import QtGui 
class Notepad(QtGui.QMainWindow):
    def __init__(self):
        super(Notepad, self).__init__()
        self.initUI()
    def initUI(self):
        self.setGeometry(300,300,300,300)
        self.setWindowTitle('Notepad')
        self.show()
        self.raise_()
    #def keyPressEvent(self, keyEvent):
    #    print(keyEvent,'hi')
    #    print('close 0', keyEvent.InputMethod)
    #    if keyEvent.key() != 16777249:
    #        super().keyPressEvent(keyEvent)
    #    else:
    #        print(dir(keyEvent))
    #        return False
    def closeEvent(self, event):
        reply = QtGui.QMessageBox.question(self, 'Message',
            "Are you sure to quit?", QtGui.QMessageBox.Yes | 
            QtGui.QMessageBox.No, QtGui.QMessageBox.No)

        if reply == QtGui.QMessageBox.Yes:
            event.accept()
        else:
            event.ignore()        
def main():
    app = QtGui.QApplication(sys.argv)
    notepad = Notepad()
    sys.exit(app.exec_())

if __name__ == '__main__':
    main()

???

4

1 に答える 1

0

QtGui.QApplication::events() メソッドを拡張して、このコマンド + q close イベントを受け取り、それを無視します。

以下は、それを達成するための私のサンプルコードです。

def main():
    app = Application()
    notepad = Notepad()
    sys.exit(app.exec_())

class Application(QtGui.QApplication):
    def event(self, event):
        # Ignore command + q close app keyboard shortcut event in mac
        if event.type() == QtCore.QEvent.Close and event.spontaneous():
            if sys.platform.startswith('darwin'):
                event.ignore()
                return False

みんな、ありがとう

于 2013-08-01T11:33:03.360 に答える