C++ Qt QColorDialog使用方法

Qt提供瞭顏色選擇框,如下圖:

在這裡插入圖片描述

QColorDialog使用方法

例如下面的代碼,點擊按鈕彈出顏色選擇框,選擇顏色,改變QLabel的背景色

#include "widget.h"
#include "ui_widget.h"
#include <QColorDialog>
#include <QPalette>

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

    ui->label->setText(u8"我是lable");
}

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

void Widget::on_btn1_clicked()
{
    QColor color = QColorDialog::getColor(Qt::white, this, u8"選擇顏色");
    if(color.isValid())
    {
        QPalette palette;
        palette.setColor(QPalette::Background ,color);
        ui->label->setAutoFillBackground(true);
        ui->label->setPalette(palette);
    }
}

效果如下:

在這裡插入圖片描述

getColor的調用

getColor聲明如下:

static QColor getColor(const QColor &initial = Qt::white,
                           QWidget *parent = nullptr,
                           const QString &title = QString(),
                           ColorDialogOptions options = ColorDialogOptions());

第一個參數是默認的顏色,例如我在上面的代碼中,直接設為白色
第二個參數是父窗口指針
第三個是顏色對話框窗口標題

QPalette setColor

setColor的聲明如下:

inline void QPalette::setColor(ColorRole acr, const QColor &acolor)

可以使用QColorDialog返回的顏色直接構造QPalette,註意setColor的第一個參數需要一個ColorRole, 可以參看如下說明:

enum ColorRole { WindowText, Button, Light, Midlight, Dark, Mid,
                     Text, BrightText, ButtonText, Base, Window, Shadow,
                     Highlight, HighlightedText,
                     Link, LinkVisited,
                     AlternateBase,
                     NoRole,
                     ToolTipBase, ToolTipText,
                     PlaceholderText,
                     NColorRoles = PlaceholderText + 1,
#if QT_DEPRECATED_SINCE(5, 13)
                     Foreground Q_DECL_ENUMERATOR_DEPRECATED_X("Use QPalette::WindowText instead") = WindowText,
                     Background Q_DECL_ENUMERATOR_DEPRECATED_X("Use QPalette::Window instead") = Window
#endif
                   };

例如上面的代碼是修改Label的背景顏色,那麼就需要使用Background枚舉體,如果改變文本就使用Text.

到此這篇關於C++ Qt QColorDialog使用方法的文章就介紹到這瞭,更多相關 Qt QColorDialog內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: