c++ - QPainter fillRect 在网格单元格中小部件的几何形状

标签 c++ qt grid rect

我已经着手自定义 QPushButton 小部件,以便在单击时小部件上方会出现动画闪烁的白色。这适用于我位于网格单元格 (0, 0) 中的按钮。至于我位于 (2, 0) 的按钮,它似乎根本没有绘制矩形。在我上传的这个视频中可以看到这种行为,以及相应的 qDebug 输出(按钮名称和几何形状)。单击时,闪光灯出现在“注册表”上方,但不是“退出”: https://youtu.be/j5gE_5jeMtg

现在是代码(如果您看到可以优化的地方,请随时为我提供一些提示):

按钮.h

#ifndef PUSHBUTTON
#define PUSHBUTTON

#include <QtCore>
#include <QPushButton>
#include <QPainter>

class PushButton : public QPushButton
{
    Q_OBJECT

public:
    explicit PushButton(QString text, QWidget *parent = 0);

protected:
    virtual void paintEvent(QPaintEvent *);

public slots:
    void OnClick();
    void OnTick();

private:
    enum States
    {
        NONE = 0,
        RESET,
        DRAW
    } state = NONE;

    QTimer *timer;

    float delta = 0.0f;
};

#endif

按钮.cpp

#include "pushbutton.h"

PushButton::PushButton(QString text, QWidget *parent) : QPushButton(text, parent)
{
    timer = new QTimer(this);

    QObject::connect(this, SIGNAL(clicked(bool)), this, SLOT(OnClick()));
    QObject::connect(timer, SIGNAL(timeout()), this, SLOT(OnTick()));
}

void PushButton::paintEvent(QPaintEvent *e)
{
    QPushButton::paintEvent(e);

    if(state == States::NONE)
    {
        return;
    }

    QPainter painter(this);

    if(state == States::RESET)
    {
        state = States::NONE;

        painter.eraseRect(geometry());

        update();
    }
    else
    {
        painter.fillRect(geometry(), QColor(200, 200, 200, 200 * (delta < 1.0f ? delta : 2.0f - delta)));
    }
}

void PushButton::OnClick()
{
    qDebug() << text() << geometry();

    state = States::DRAW;

    delta = 0.0f;

    timer->start(20);
}

void PushButton::OnTick()
{
    delta += 0.2f;

    if(delta > 2.0f)
    {
        state = States::RESET;

        timer->stop();
    }

    update();
}

主窗口.cpp

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

    registryButton = new PushButton("Registry");
    exitButton = new PushButton("Exit");

    registryButton->setStyleSheet("* { font-size: 16pt; font-family: Segoe360;"
                                  "border: none;"
                                  "color: rgba(240, 240, 240, 255);"
                                  "background: qlineargradient(x1:0 y1:0, x2:0 y2:1, stop:0 rgba(160, 169, 212, 255), stop:1 rgba(137, 151, 216, 255)); }");

    exitButton->setStyleSheet("* { font-size: 16pt; font-family: Segoe360;"
                                  "border: none;"
                                  "color: rgba(240, 240, 240, 255);"
                                  "background: qlineargradient(x1:0 y1:0, x2:0 y2:1, stop:0 rgba(191, 78, 78, 255), stop:1 rgba(199, 53, 53, 255)); }");

    ui->gridLayout->addWidget(registryButton, 0, 0, Qt::AlignTop);
    ui->gridLayout->addWidget(exitButton, 2, 0, Qt::AlignBottom);
}

我对这种行为的唯一假设是,使用网格比我意识到的要多得多。

最佳答案

检查 geometry()e->rect() 之间的区别。它适用于 e->rect()

qDebug() << "paint" << text() << geometry() << e->rect();
painter.fillRect(e->rect(), QColor(200, 200, 200, 200 * (delta < 1.0f ? delta : 2.0f - delta)));

输出:

paint "Registry" QRect(0,0 381x24) QRect(0,0 381x24)
paint "Exit" QRect(0,217 381x24) QRect(0,0 381x24)

QPaintEvent::rect(): Returns the rectangle that needs to be updated.

QWidget::geometry(): This property holds the geometry of the widget relative to its parent and excluding the window frame.

关于c++ - QPainter fillRect 在网格单元格中小部件的几何形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33153329/

相关文章:

c++ - 在没有类声明的情况下使用 Qt 的 Q_DECLARE_FLAGS 和 Q_DECLARE_OPERATORS_FOR_FLAGS

c++ - webRTC : How to apply webRTC's VAD on audio through samples obtained from WAV file

c++ - 写入 UTF-8 BOM 时出现异常

c++ - 链接器返回 "relocation has an invalid symbol at symbol index..."

javascript - 没有外边框的响应式网格

c++ - 如何使用 QMediaPlayer 播放流

c++ - Qt : Accessing Secure Objects using session-id from a server

c++ - 当发布到 Qt 中的窗口时,事件从队列中删除

html - pure-u-1-7 与 sm、md、lg、xl 结合使用时不起作用

javascript - 将 jsonrest 与分页一起使用时,Gridx 中的客户端过滤?