如何检测任务栏上的点击?

时间:2015-01-18 19:51:53

标签: python click pyqt py2exe taskbar

我正在使用PyQt4。我可以最小化和最大化窗口,但我不能通过单击任务栏图标来最小化它。

该程序由py2exe编译并显示为" python.exe"在任务栏中。如何捕获点击事件?

我正在使用QWebView。事件QWebView.event(e)无效。

下一个代码提供了窗口状态更改的事件:

...

class LauncherView(QWebView, object):
    def __init__(self, QWidget_parent=None):
        super(LauncherView, self).__init__(QWidget_parent)
        self.setWindowFlags(Qt.FramelessWindowHint)
        self.setContextMenuPolicy(Qt.CustomContextMenu)
        self.resize(801, 601)

    ...

    def event(self, e):
        if e.type() == e.WindowStateChange and self.windowState() & QtCore.Qt.WindowMinimized:  # Event if I click the minimize button 
            self.showMinimized()
        elif e.type() == e.WindowStateChange and self.windowState() == QtCore.Qt.WindowNoState:  # Event if I restore the window by clicking on taskbar
            self.showMaximized()  # or showNormal
        elif ???????:  # What event I must catch if I want to minimize window by clicking on taskbar? Now it does not occur...
            self.showMinimized()
        return super(QWebView, self).event(e)

...


def Main(*args):
    app = QApplication(args)
    app.setWindowIcon(QIcon('icon.png'))
    view = LauncherView()

    view.setWindowTitle('*** Launcher')
    frame = view.page().mainFrame()
    JavaScript = JSCaller(view)
    events = PyEvents(view, JavaScript)
    Python = PyCaller(events)
    html = HTML_data()
    thisDirPath = 'file:///' + getCurrentPath() + '/Views/'
    view.setHtml(html, QtCore.QUrl(thisDirPath))
        frame.addToJavaScriptWindowObject('Python', Python)
        frame.evaluateJavaScript("Python.Print('Python context works normally');")
        view.show()
    app.exec_()

if __name__ = '__main__':
    Main(*sys.argv)

1 个答案:

答案 0 :(得分:3)

您无法使用任务栏图标最小化应用程序的原因是您已覆盖现有窗口标志。

现在,通常你会做self.setWindowFlags(self.windowFlags()|Qt.FramelessWindowHint)但是我测试了这个,并且框架会显示在它不应该的时候。据推测,其中一个现有标志与无框标志冲突。

所以,至少看来你需要有这些标志:

self.setWindowFlags(Qt.Window|Qt.FramelessWindowHint|Qt.WindowMinMaxButtonsHint)

完成此操作后,您不需要任何特殊代码来通过单击任务栏图标来最小化/最大化窗口。

您可能还需要其他标志来获取其他行为。您可以在此处查看完整列表:http://qt-project.org/doc/qt-4.8/qt.html#WindowType-enum