如何在Qt中获取应用程序字体颜色

发布于 2024-08-30 18:30:30 字数 249 浏览 4 评论 0原文

我想在我的用户界面上添加一些文本。

我正在使用画家在小部件的绘画事件中绘制文本。

这是示例代码,它显示了我如何绘制文本:

QWidget::paintEvent(painter);
QPainter paint(this);
paint.drawText(QPoint(10,30),"Duplex");

但是,文本颜色看起来像默认主题颜色。如何将应用程序字体颜色设置为绘制事件中的文本?

I want to put some text on my UI.

I am drawing the text in a paint event of a widget using painter.

Here is the sample code, which shows how I am drawing the text:

QWidget::paintEvent(painter);
QPainter paint(this);
paint.drawText(QPoint(10,30),"Duplex");

However, the text color looks like the default theme color. How do I set the application font color to the text in a paint event?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

·深蓝 2024-09-06 18:30:30

这是我得到的答案

 QPen pen  = (QApplication::palette().text().color());

 paint.setPen(pen);

here is the answer i got it

 QPen pen  = (QApplication::palette().text().color());

 paint.setPen(pen);
枫林﹌晚霞¤ 2024-09-06 18:30:30

你必须使用
QPainter::setBrush(QBrush &)QPainter::setPen(QPen &) 方法更改用于绘制图形的颜色(顺便说一下文本颜色)。

命令 paint.setPen(QPen(QColor(255,0,0)) 会将轮廓颜色设置为红色,并且 paint.setBrush(QBrush(QColor(0,255,0)) code> 将填充颜色设置为绿色。

您也可以直接使用 QPainter::setPen(QColor &) 方法来更改轮廓的颜色。

You have to use the
QPainter::setBrush(QBrush &) and QPainter::setPen(QPen &) methods to change the color used to draw graphics (and incidently the text color).

The command paint.setPen(QPen(QColor(255,0,0)) will set the outline color to red and paint.setBrush(QBrush(QColor(0,255,0)) will set the fill color to green.

You can also use directly the QPainter::setPen(QColor &) methods to change the color of the outline.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文