QSS中使用qproperty-<property name>设置Qt对象属性值的例子

对于在QSS中设置Qt对象属性值,QSS官方文档有如下描述

QSS中使用qproperty-<property name>设置Qt对象属性值的例子_第1张图片

但在实际使用时,使用qproperty-pixmap这种方式设置属性时遇到过一些问题,特在此处总结一下,如下面的例程:

mylabel.h

#ifndef MYLABEL_H
#define MYLABEL_H

#include 

class MyLabel : public QLabel
{
    Q_OBJECT
    //经测试,QPixmap类型必须配置WRITE,否则编译时会出现,如下错误:
    //error: no match for 'operator!=' (operand types are 'QPixmap' and 'QPixmap')
    Q_PROPERTY(QPixmap face MEMBER m_face WRITE setFace)

    //QString, int等,不需要配置WRITE也可以正常使用
    Q_PROPERTY(QString name MEMBER m_name)
public:
    explicit MyLabel(QWidget *parent = 0);

    void setFace(const QPixmap &pixmap);

protected:
    void paintEvent(QPaintEvent *event);

private:
    QPixmap m_face;
    QString m_name;
};

#endif // MYLABEL_H

mylabel.cpp

#include "mylabel.h"
#include 

MyLabel::MyLabel(QWidget *parent)
    : QLabel(parent)
{

}

void MyLabel::setFace(const QPixmap &pixmap)
{
    m_face=pixmap;
}

void MyLabel::paintEvent(QPaintEvent *event)
{
    QPainter p(this);
    p.drawPixmap(0, 0, width(), height(), m_face);
    QPen pen=p.pen();
    pen.setColor(Qt::red);
    p.setPen(pen);
    QFont font=p.font();
    font.setPixelSize(25);
    font.setBold(true);
    p.setFont(font);
    p.drawText(QRect(0, 0, width(), height()), Qt::AlignCenter, m_name);
}

mainwidget.h

#ifndef MAINWIDGET_H
#define MAINWIDGET_H

#include 

namespace Ui {
class MainWidget;
}

class MainWidget : public QWidget
{
    Q_OBJECT

public:
    explicit MainWidget(QWidget *parent = 0);
    ~MainWidget();

private slots:
    void on_buttonSetup_clicked();

private:
    Ui::MainWidget *ui;
};

#endif // MAINWIDGET_H

mainwidget.cpp

#include "mainwidget.h"
#include "ui_mainwidget.h"

MainWidget::MainWidget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::MainWidget)
{
    ui->setupUi(this);
}

MainWidget::~MainWidget()
{
    delete ui;
}

void MainWidget::on_buttonSetup_clicked()
{
    this->setStyleSheet(ui->textStyleSheet->toPlainText());
}

运行效果(点击Setup按钮后的运行效果):

QSS中使用qproperty-<property name>设置Qt对象属性值的例子_第2张图片

(-------------完-----------)

你可能感兴趣的:(Qt)