我想在PyQt中创建一个可以点击的窗口;即点击一个窗口,点击就会通过,这样你就可以与它背后的任何东西互动,同时窗口仍然在顶部。我试图实现的效果的一个示例就像默认情况下出现在右上角的Ubuntu上的通知,您可以点击它。
我希望能够在PyQt中做到这一点;如果没有,我的平台是Linux,但欢迎Windows解决方案!
提前帮助干杯!我一直在考虑这个问题和研究,能够做到这一点真是太好了。
编辑:我正在尝试创建一个窗口,您可以使用跟踪窗口后面的描图纸答案 0 :(得分:1)
这是使用PyQt4在Windows上的解决方案。
您需要覆盖Front小部件中的eventFilter(在Windows上它是winEvent),然后将事件转发到Back窗口。
我不完全确定,但必须有类似的方法可以在其他平台上使用(而不是winEvent,也许是x11Event?)
祝你好运!from PyQt4 import QtCore, QtGui
import win32api, win32con, win32gui, win32ui
class Front(QtGui.QPushButton):
def __init__(self,text="",whndl=None):
super(Front,self).__init__(text)
self.pycwnd = win32ui.CreateWindowFromHandle(whndl)
# install an event filter for Windows' messages. Forward messages to
# the other HWND
def winEvent(self,MSG):
# forward Left button down message to the other window. Not sure
# what you want to do exactly, so I'm only showing a left button click. You could
if MSG.message == win32con.WM_LBUTTONDOWN or \
MSG.message == win32con.WM_LBUTTONUP:
print "left click in front window"
self.pycwnd.SendMessage(MSG.message, MSG.wParam, MSG.lParam)
return True, 0 # tells Qt to ignore the message
return super(Front,self).winEvent(MSG)
class Back(QtGui.QPushButton):
def __init__(self,text=""):
super(Back,self).__init__(text)
self.clicked.connect(self.onClick)
def onClick(self):
print 'back has been clicked'
def main():
a = QtGui.QApplication([])
back = Back("I'm in back...")
back.setWindowTitle("I'm in back...")
back.show()
# Get the HWND of the window in back (You need to use the exact title of that window)
whndl = win32gui.FindWindowEx(0, 0, None, "I'm in back...")
# I'm just making the front button bigger so that it is obvious it is in front ...
front = Front(text="*____________________________*",whndl=whndl)
front.setWindowOpacity(0.8)
front.show()
a.exec_()
if __name__ == "__main__":
main()
答案 1 :(得分:0)
self.setAttribute(Qt.WA_TransparentForMouseEvents, True)
self.setAttribute(Qt.WA_NoChildEventsForParent, True)
self.setWindowFlags(Qt.Window|Qt.X11BypassWindowManagerHint|Qt.WindowStaysOnTopHint|Qt.FramelessWindowHint)
self.setAttribute(Qt.WA_TranslucentBackground)
这有效。它在 Linux Mint 20.1 Cinnamon 上进行了测试。
这意味着父母一直阻止它WA_TransparentForMouseEvents