Custom QMessageBox Buttons: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Convert ExpressionEngine links)
(Remove non-functioning "toc" command)
Line 4: Line 4:
[[Category:HowTo]]
[[Category:HowTo]]


[toc align_right="yes" depth="2"]


'''English''' [[Custom_QMessageBox_Buttons_Bulgarian|Български]]
'''English''' [[Custom_QMessageBox_Buttons_Bulgarian|Български]]

Revision as of 12:17, 17 April 2015

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.


English Български

Custom QMessageBox Buttons

Introduction

The following code snippet demonstrate how to customize QMessageBox by adding custom text and buttons using method addButton.

Code Snippet

QMessageBox msgBox; msgBox.setText(tr("Confirm?")); QAbstractButton* pButtonYes = msgBox.addButton(tr("Yeah!"), QMessageBox::YesRole); msgBox.addButton(tr("Nope"), QMessageBox::NoRole);

msgBox.exec();

if(msgBox.clickedButton() == pButtonYes) {

//Execute command

}