亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c++彈窗如何實現動畫效果

c++
小樊
113
2024-08-13 00:50:49
欄目: 編程語言

要在C++中實現彈窗動畫效果,可以使用一些圖形庫或者GUI庫來幫助實現。以下是一個簡單的示例,使用了Qt庫來創建一個帶有動畫效果的彈窗:

#include <QtWidgets>

class PopupWidget : public QWidget
{
public:
    PopupWidget(QWidget *parent = nullptr) : QWidget(parent)
    {
        setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint);
        setAttribute(Qt::WA_TranslucentBackground);

        animation.setTargetObject(this);
        animation.setPropertyName("geometry");
        animation.setDuration(500);

        connect(&animation, &QPropertyAnimation::finished, this, &PopupWidget::close);
    }

    void showPopup()
    {
        QRect rect = QApplication::desktop()->availableGeometry();
        setGeometry(rect.width() - 200, rect.height() - 100, 200, 100);
        setWindowOpacity(0);
        show();
        animation.setStartValue(QRect(rect.width() - 200, rect.height() - 100, 0, 0));
        animation.setEndValue(QRect(rect.width() - 200, rect.height() - 100, 200, 100));
        animation.setEasingCurve(QEasingCurve::OutBack);
        animation.start();
    }

protected:
    void paintEvent(QPaintEvent *event) override
    {
        QPainter painter(this);
        painter.setRenderHint(QPainter::Antialiasing);
        painter.setBrush(Qt::white);
        painter.setPen(Qt::black);
        painter.drawRoundedRect(rect(), 10, 10);
        painter.drawText(rect(), Qt::AlignCenter, "Hello, World!");
    }

private:
    QPropertyAnimation animation;
};

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    QPushButton button("Show Popup");
    PopupWidget popup;

    QObject::connect(&button, &QPushButton::clicked, [&popup]() {
        popup.showPopup();
    });

    QVBoxLayout layout;
    layout.addWidget(&button);
    layout.setContentsMargins(10, 10, 10, 10);

    QWidget window;
    window.setLayout(&layout);
    window.setWindowTitle("Popup Animation");
    window.show();

    return app.exec();
}

在這個示例中,我們創建了一個自定義的PopupWidget類,用于顯示彈窗。當點擊按鈕時,調用showPopup函數展示彈窗,并使用QPropertyAnimation類實現彈窗出現的動畫效果。在paintEvent函數中,我們繪制了一個簡單的圓角矩形彈窗,并在中間顯示了一段文本。

請注意,這個示例使用了Qt庫,需要在項目中包含Qt的頭文件和鏈接Qt庫。您也可以使用其他圖形庫或GUI庫來實現類似的效果。

0
绥阳县| 岳普湖县| 泌阳县| 宁强县| 鲜城| 日土县| 嘉义县| 同德县| 柳河县| 乌兰浩特市| 奉贤区| 绍兴市| 怀宁县| 乌审旗| 台安县| 德江县| 南雄市| 霍州市| 隆子县| 苍山县| 肃北| 灌阳县| 孟连| 阳朔县| 韩城市| 沛县| 德惠市| 哈密市| 涿州市| 长白| 武宁县| 潼南县| 剑河县| 望城县| 东源县| 西平县| 东辽县| 安多县| 三穗县| 屯留县| 区。|