0

我想使用 PyQt4 for Linux 制作一个类似面板的应用程序。为此,我需要创建的窗口:

  • 不装饰
  • 有预留空间
  • 出现在所有工作区

通过阅读文档,我知道我应该使用 QtWindowFlags。但我不知道如何做到这一点。另外我相信应该有一个 Qt.WindowType 提示告诉 WM 窗口是一个“停靠”应用程序。我在这个线程之后用pygtk做了这个,但是用Qt我真的不知道如何处理这个。(我需要 Qt 因为它能够更轻松地主题/皮肤应用程序。)

以下是我制作的当前代码(没什么特别的)。

import sys
from PyQt4 import QtGui

class Panel(QtGui.QWidget):
def __init__(self, parent=None): ## should the QtWindowFlag be here?
    QtGui.QWidget.__init__(self, parent) ## should the QtWindowFlag be there as well?

    self.setWindowTitle('QtPanel')
    self.resize(QtGui.QDesktopWidget().screenGeometry().width(), 25)
    self.move(0,0)

def main():
    app = QtGui.QApplication(sys.argv)
    panel = Panel()
    panel.show()
    sys.exit(app.exec_())
    return 0

if __name__ == '__main__':
    main()

谁能帮我这个?谢谢 :)

4

3 回答 3

5

阅读 QWidget.windowFlags 属性:http ://doc.qt.nokia.com/4.7/qwidget.html#windowFlags-prop

例子:

>>> from PyQt4 import QtGui, QtCore
>>> app = QtGui.QApplication([])
>>> win = QtGui.QMainWindow()
>>> win.setWindowFlags(win.windowFlags() | QtCore.Qt.FramelessWindowHint)
>>> win.show()
于 2011-05-06T15:42:22.687 回答
1
import sys
from PyQt4 import QtGui, QtCore


class Example(QtGui.QWidget):

    def __init__(self):
        super(Example, self).__init__()

        self.initUI()

    def initUI(self):               

        qbtn = QtGui.QPushButton('Quit', self)
        #qbtn.clicked.connect(QtCore.QCoreApplication.instance().quit)
        qbtn.clicked.connect(self.test)
        qbtn.resize(qbtn.sizeHint())
        qbtn.move(50, 50)       

        self.setGeometry(300, 300, 250, 150)
        self.setWindowTitle('Quit button')    
        self.setWindowFlags(self.windowFlags() | QtCore.Qt.FramelessWindowHint)
        self.show()

    def test(self):
      print "test"

def main():

    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()
于 2013-11-07T00:07:12.950 回答
0

解决方案是使用 Python-Xlib,它已在关于在 X 上保留屏幕空间的通用方法的答案中进行了描述。

于 2011-06-03T20:24:37.187 回答