2

如果活动窗口属于其他进程,如何在超时时使本示例的 QMessageBox 或 QmainWindow 在任何重叠的兄弟窗口小部件前面?我试过 raise_(​​) 和 activateWindow() ,但都不能在 WinXP 上工作

import sys
from PyQt4.QtGui import *
from PyQt4.QtCore import *

class MainWindow(QWidget):
    def __init__(self, parent=None):
        super(MainWindow, self).__init__(parent)
        self.resize(800,600)

        self.lcdNumber = QLCDNumber()
        self.lcdNumber.setNumDigits(8)

        layout =  QVBoxLayout(self)
        layout.addWidget(self.lcdNumber)

        self.currentTime = QTime(0,0,0)
        self.lcdNumber.display(self.currentTime.toString('hh:mm:ss'))

        self.timer = QTimer(self)
        self.timer.timeout.connect(self.updateLcdNumberContent)
        self.timer.start(1000)

    def updateLcdNumberContent(self):

        self.currentTime = self.currentTime.addSecs(1)
        self.lcdNumber.display(self.currentTime.toString('hh:mm:ss'))


        if self.currentTime == QTime(0,0,4) :
            msgBox = QMessageBox(self)
            msgBox.setWindowTitle('iTimer')
            msgBox.setIcon (QMessageBox.Information)
            msgBox.setText("Time Out !!")

            stopButton = msgBox.addButton("Stop", QMessageBox.ActionRole)
            ignoreButton = msgBox.addButton(QMessageBox.Ignore)

            stopButton.clicked.connect(self.timer.stop)


            msgBox.show()
#            self.raise_()
#            self.activateWindow()



if __name__ == '__main__':
    app =QApplication(sys.argv)
    frame = MainWindow()
    frame.show()
    sys.exit(app.exec_())
4

1 回答 1

1

尝试使用QWidget::setWindowFlags()QMessageBox 或 QMainWindow 的方法修改窗口标志。你应该Qt::WindowStaysOnTopHint为你的目的使用标志。
这将是类似的东西window->setWindowFlags(window->windowFlags() | Qt::WindowStaysOnTopHint)
如果使用 just 不能成功setWindowFlags(window->windowFlags() | Qt::WindowStaysOnTopHint),则需要使用Qt::CustomizeWindowHint | Qt::WindowStaysOnTopHint其他标志。尝试一下,你就会成功。

于 2013-03-28T14:25:43.990 回答