如何使QMenu中的图标变大(PyQt)?

问题描述 投票:0回答:2

我还没有找到如何使 QMenu 中的图标变大。我试图定义一个样式表,其中图标尺寸被放大。但这不起作用。这是我的代码:

menuStyleSheet = ("""
        QMenu {
            font-size: 18px;
            color: black;
            border: 2px solid black;
            left: 20px;
            background-color:qlineargradient(x1:0, y1:0, x2:0, y2:1, stop: 0 #cccccc, stop: 1 #ffffff);
        }

        QMenu::item {
            padding: 2px 20px 2px 30px;
            border: 1px solid transparent; /* reserve space for selection border */
            spacing: 20px;
            height: 60px;
        }

        QMenu::icon {
            padding-left: 20px;
            width: 50px;        /* <- unfortunately, doesn't work */
            height: 50px;       /* <- unfortunately, doesn't work */
        }
    """)

#####################################################
#               THE PYQT APPLICATION                #
#####################################################
class GMainWindow(QMainWindow):

    def __init__(self, title):
        super(GMainWindow, self).__init__()
            ...

    def setCustomMenuBar(self):
        myMenuBar = self.menuBar()
        global menuStyleSheet
        myMenuBar.setStyleSheet(menuStyleSheet)
        # Now add Menus and QActions to myMenuBar..

这段代码的结果如下:

enter image description here

我知道 StackOverflow 上有一个关于类似主题的旧问题,但它假设正在用 C++ 编写 Qt 应用程序。所以情况有所不同。链接如下:如何使Qt图标(菜单栏和工具栏)变大?

非常感谢任何帮助:-)

编辑:

以下是有关我的机器的一些详细信息:

  • 操作系统:Windows 10
  • Python:v3(Anaconda 包)
  • Qt:PyQt5
python qt python-3.x pyqt pyqt5
2个回答
8
投票

经过长时间的搜索,我终于找到了解决方案。 只需复制粘贴下面的代码,然后将其粘贴到

*.py
文件中。当然,您应该将图标的路径替换为本地计算机上的有效路径。只需提供完整路径(“C:\..”)即可 100% 确定 Qt 找到图标绘图。

import sys
import os
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *

# Create a custom "QProxyStyle" to enlarge the QMenu icons
#-----------------------------------------------------------
class MyProxyStyle(QProxyStyle):
    pass
    def pixelMetric(self, QStyle_PixelMetric, option=None, widget=None):

        if QStyle_PixelMetric == QStyle.PM_SmallIconSize:
            return 40
        else:
            return QProxyStyle.pixelMetric(self, QStyle_PixelMetric, option, widget)


# This is the main window class (with a simple QMenu implemented)
# ------------------------------------------------------------------
class TestWindow(QMainWindow):
    def __init__(self):
        super(TestWindow, self).__init__()

        # 1. Set basic geometry and color.
        self.setGeometry(100, 100, 400, 400)
        self.setWindowTitle('Hello World')
        palette = QPalette()
        palette.setColor(QPalette.Window, QColor(200, 200, 200))
        self.setPalette(palette)

        # 2. Create the central frame.
        self.centralFrame = QFrame()
        self.centralFrame.setFrameShape(QFrame.NoFrame)
        self.setCentralWidget(self.centralFrame)

        # 3. Create a menu bar.
        myMenuBar = self.menuBar()
        fileMenu = myMenuBar.addMenu("&File")

        testMenuItem = QAction(QIcon("C:\\my\\path\\myFig.png"), "&Test", self)
        testMenuItem.setStatusTip("Test for icon size")
        testMenuItem.triggered.connect(lambda: print("Menu item has been clicked!"))

        fileMenu.addAction(testMenuItem)

        # 4. Show the window.
        self.show()

# Start your Qt application based on the new style
#---------------------------------------------------
if __name__== '__main__':
    app = QApplication(sys.argv)
    myStyle = MyProxyStyle('Fusion')    # The proxy style should be based on an existing style,
                                        # like 'Windows', 'Motif', 'Plastique', 'Fusion', ...
    app.setStyle(myStyle)

    myGUI = TestWindow()

    sys.exit(app.exec_())

您将看到一个像这样的窗口,带有一个巨大的图标: enter image description here

那么我是怎么解决的呢?好吧,显然你不能以通常的方式增加 QMenu 项目的图标大小 - 在样式表中定义大小。唯一的方法是提供一个新的

QStyle
,最好是从现有的
QStyle
派生而来。我找到了有关如何在 C++ 中执行此操作的资源(请参阅 http://www.qtcentre.org/threads/21187-QMenu-always-displays-icons-aty-16x16-px),但没有对 PyQt 的解释。
经过长时间的尝试和错误,我成功了:-)

显然更多的人在这种情况下挣扎:http://www.qtcentre.org/threads/61860-QMenu-Icon-Scale-in-PyQt


0
投票

您可以尝试以下风格:

QMenu::item {
    padding: 2px 25px 2px 20px;
    border: 1px solid transparent; /* reserve space for selection border */
}
© www.soinside.com 2019 - 2024. All rights reserved.