Custom QMessageBox Buttons: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Cleanup)
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{LangSwitch}}
[[Category:snippets]]
[[Category:snippets]]
[[Category:HowTo]]
[[Category:HowTo]]
[toc align_right="yes" depth="2"]
'''English''' [[Custom_QMessageBox_Buttons_Bulgarian|Български]]
= Custom QMessageBox Buttons =
== Introduction ==
== Introduction ==


The following code snippet demonstrate how to customize "QMessageBox":http://doc.qt.io/qt-4.8/QMessageBox.html by adding custom text and buttons using method "addButton":http://doc.qt.io/qt-4.8/qmessagebox.html#addButton.
The following code snippet demonstrate how to customize {{DocLink|QMessageBox}} by adding custom text and buttons using method [http://doc.qt.io/qt-5/qmessagebox.html#addButton addButton].


== Code Snippet ==
== Code Snippet ==
Line 22: Line 16:
msgBox.exec();
msgBox.exec();


if(msgBox.clickedButton() == pButtonYes)
if (msgBox.clickedButton()==pButtonYes) {
{
    //Execute command
//Execute command
}
}
</code>

Latest revision as of 13:21, 28 June 2015

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

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
}