QWidget的背景应用于其所有QWidget子项

时间:2016-05-17 23:53:03

标签: c++ qt qtstylesheets qt5.6

我选择使用Qt来管理我正在处理的项目的GUI。

在找到如何在QWidget底部应用图片后,我注意到它对添加到其中的所有组件都有影响。

无论通过setStyleSheet方法应用哪种样式,甚至使用QPixmap,这些元素的背景始终是为QWidget容器定义的图像。

如何避免此行为?

这是我的代码:

MainMenu::MainMenu(QWidget* Parent, const QPoint& Position, const QSize& Size) : QWidget(Parent) {

    QString qwidgetStyle = "QWidget {background-image: url(background.jpg); border: 5px solid rgba(3, 5, 28, 1);}";
    QString buttonStyle = "color: rgba(73, 123, 176, 1); font-size:30px; background-color: rgba(73, 123, 176, 1);";

    move(Position);
    resize(Size);   
    setStyleSheet(qwidgetStyle);

    // Menu title
    QLabel *title = new QLabel(this);
    title->setText("Menu");
    title->setStyleSheet(buttonStyle);
    title->setAlignment(Qt::AlignCenter);

    // Menu buttons
    // Play
    buttonPlay = new QPushButton("Play");
    (*buttonPlay).setEnabled(true);
    (*buttonPlay).setStyleSheet(buttonStyle);
    connect(buttonPlay, SIGNAL(clicked()), this, SLOT(handleButton()));
    // Option
    buttonOptions = new QPushButton("Options", this);
    (*buttonOptions).setEnabled(true);
    (*buttonOptions).setGeometry(250, 175, 100, 50);
    (*buttonOptions).setStyleSheet(buttonStyle);
    connect(buttonOptions, SIGNAL(clicked()), this, SLOT(handleButton()));
    // Quit
    buttonQuit = new QPushButton("Quit", this);
    (*buttonQuit).setEnabled(true);
    (*buttonQuit).setGeometry(250, 275, 100, 50);
    (*buttonQuit).setStyleSheet(buttonStyle);
    connect(buttonQuit, SIGNAL(clicked()), this, SLOT(handleButton()));

    // Layout
    QGridLayout *layout = new QGridLayout;
    layout->setMargin(50);
    layout->addWidget(title, 0, 0, 1, 5);
    layout->addWidget(buttonPlay, 3, 1, 2, 3);
    layout->addWidget(buttonOptions, 4, 1, 2, 3);
    layout->addWidget(buttonQuit, 5, 1, 2, 3);
    setLayout(layout);

    show();
}

1 个答案:

答案 0 :(得分:2)

您遇到的行为完全正常,因为以下几行:

QString qwidgetStyle = "QWidget {background-image: url(background.jpg); border: 5px solid rgba(3, 5, 28, 1);}";
...
setStyleSheet(qwidgetStyle);

在这里,您刚刚告诉Qt将qwidgetstyle应用于应用的每个QWidget ,并使用关键字QWidget。这就是为什么在Qt中,如果要将样式应用于此特定对象,最好为对象设置名称。

在您的代码中,QLabelQPushButton都继承自QWidget,因此除非您为其命名,否则它们将具有您为QWidget定义的样式或者为每个指定样式。

如果要为MainMenu设置直接从QWidget继承的样式表(这是您首先要做的),则必须设置名称,然后应用风格:

setObjectName("MainMenu");
QString qwidgetStyle = "QWidget#MainMenu {background-image: url(background.jpg); border: 5px solid rgba(3, 5, 28, 1);}";
setStyleSheet(qwidgetStyle);  // here, only your MainMenu will have the style "qwidgetstyle"

请注意,您可以为每个QWidget设置相同的样式表,并仅为MainMenu添加特定颜色:

// this is in a CSS, but you can apply it directly from the MainMenu constructor of course
QWidget, QWidget#MainMenu {
    background-image: url(background.jpg); 
    border: 5px solid rgba(3, 5, 28, 1);
} // aplied to all QWidget

QWidget#MainMenu { 
    color : #9b9b9b; // a nice grey, only applied to MainMenu
}

同样,在使用样式表时要特别注意,否则您的应用程序中最终会出现奇怪的颜色/对齐方式:)。希望有所帮助!

注意:您也可以感谢@PaulRooney在评论中提供了非常好的链接。