テキストの色とQLabel
の背景を設定する方法
最善かつ推奨される方法は Qt Style Sheet を使うことです。
QLabel
のテキストの色と背景色を変更するには、次のようにします。
QLabel* pLabel = new QLabel;
pLabel->setStyleSheet("QLabel { background-color : red; color : blue; }");
Qtスタイルシートの使用を避けてQPalette
のQLabel
の色を変更することもできますが、プラットフォームやスタイルによって結果が異なる可能性があります。
Qtのドキュメントにあるように:
QPaletteを使用してもすべてのスタイルで動作するとは限りません。スタイルの作成者は、異なるプラットフォームのガイドラインとネイティブのテーマエンジンによって制限されているからです。
しかし、あなたはこのようなことをすることができます:
QPalette palette = ui->pLabel->palette();
palette.setColor(ui->pLabel->backgroundRole(), Qt::yellow);
palette.setColor(ui->pLabel->foregroundRole(), Qt::yellow);
ui->pLabel->setPalette(palette);
しかし、私が言ったように、私はパレットを使わずにQtスタイルシートに行くことを強く勧めます。
QPaletteを使うことができますが、背景色を有効にするためにsetAutoFillBackground(true);
を設定しなければなりません
QPalette sample_palette;
sample_palette.setColor(QPalette::Window, Qt::white);
sample_palette.setColor(QPalette::WindowText, Qt::blue);
sample_label->setAutoFillBackground(true);
sample_label->setPalette(sample_palette);
sample_label->setText("What ever text");
それはWindowsとUbuntuでうまく動きます、私は他のどのOSとも遊んでいません。
注:詳しくは QPalette 、カラーロールのセクションをご覧ください。
私はそれが誰にとっても役に立つかもしれないと思うので、私はこの答えを加えます。
私のペイントアプリケーションのカラー表示ラベルに RGBA colors(つまり、透明度をアルファ値に設定したRGBカラー)を設定するという問題に取り組みます。
最初の答えに遭遇したとき、私はRGBAカラーを設定することができませんでした。私も試してみました:
myLabel.setStyleSheet("QLabel { background-color : %s"%color.name())
color
はRGBAカラーです。
それで、私の汚い解決策はQLabel
を拡張し、その境界矩形を埋めるpaintEvent()
メソッドをオーバーライドすることでした。
今日はqt-assistant
を開いて スタイル参照プロパティリスト を読みました。幸い、次のような例があります。
QLineEdit { background-color: rgb(255, 0, 0) }
例として、以下のコードのようなことをすることに私の心を開いてください。
myLabel= QLabel()
myLabel.setAutoFillBackground(True) # This is important!!
color = QtGui.QColor(233, 10, 150)
alpha = 140
values = "{r}, {g}, {b}, {a}".format(r = color.red(),
g = color.green(),
b = color.blue(),
a = alpha
)
myLabel.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
False
にsetAutoFillBackground()
を設定しても機能しないことに注意してください。
よろしく、
私のために働いた唯一のものはHTMLでした。
そして、私はそれがプログラム的なアプローチのどれよりもはるかに簡単であるとわかりました。
次のコードは、呼び出し元から渡されたパラメータに基づいてテキストの色を変更します。
enum {msg_info, msg_notify, msg_alert};
:
:
void bits::sendMessage(QString& line, int level)
{
QTextCursor cursor = ui->messages->textCursor();
QString alertHtml = "<font color=\"DeepPink\">";
QString notifyHtml = "<font color=\"Lime\">";
QString infoHtml = "<font color=\"Aqua\">";
QString endHtml = "</font><br>";
switch(level)
{
case msg_alert: line = alertHtml % line; break;
case msg_notify: line = notifyHtml % line; break;
case msg_info: line = infoHtml % line; break;
default: line = infoHtml % line; break;
}
line = line % endHtml;
ui->messages->insertHtml(line);
cursor.movePosition(QTextCursor::End);
ui->messages->setTextCursor(cursor);
}
ウィジェットの色に関する機能を設定する最善の方法は QPalette を使うことです。
そして、探しているものを見つける最も簡単な方法は、Qt Designerを開いてQLabelのパレットを設定し、生成されたコードを確認することです。
QColorDialog *dialog = new QColorDialog(this);
QColor color= dialog->getColor();
QVariant variant= color;
QString colcode = variant.toString();
ui->label->setStyleSheet("QLabel { background-color :"+colcode+" ; color : blue; }");
getColor()
メソッドは選択された色を返します。 stylesheet
を使ってラベルの色を変えることができます