开发者

How to make the title bold?

In QMessageBox how can I make the title text bold? Here is the sample code, which I am using to disply a messagebox:

int ret = QMessageBox::warning(this, tr("My Application"),
          tr("document has been modified.\n"
          "Do you want to save your changes?"),
          QMessageBox::Save | QMessageBox::Discard
          | QMessageBox::Cancel,
          QMessageBox::Save);

I just want tr("My Application") to be bold, and rest to be in normal font. How can I do that?

By default I开发者_如何学编程 am getting the normal font for both title and descriptive text.

Thanks.


You can add some HTML-like formatting to the message box contents, i.e. :

// ...
"Do you want to save your <b>changes</b>?"),
// ...

I do not have access to S60 environment to check if it works for message box title too. It doesn't work on Windows, but hey, it's worth a shot.


This is not possible since most window managers do not allow rich text inside the window title.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜