Custom QMessageBox Buttons: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:snippets]]<br />[[Category:HowTo]] | |||
= | [toc align_right="yes&quot; depth="2&quot;] | ||
'''English''' [[Custom_QMessageBox_Buttons_Bulgarian|Български]] | |||
= Custom QMessageBox Buttons = | |||
== | == Introduction == | ||
The following code snippet demonstrate how to customize "QMessageBox&quot;:http://doc.qt.io/qt-4.8/QMessageBox.html by adding custom text and buttons using method "addButton&quot;:http://doc.qt.io/qt-4.8/qmessagebox.html#addButton. | |||
* | == Code Snippet == | ||
<code><br />QMessageBox msgBox;<br />msgBox.setText(tr("Confirm?"));<br />QAbstractButton* pButtonYes = msgBox.addButton(tr("Yeah!"), QMessageBox::YesRole);<br />msgBox.addButton(tr("Nope&quot;), QMessageBox::NoRole); | |||
msgBox.exec&amp;#40;&#41;; | |||
if(msgBox.clickedButton() == pButtonYes)<br />{<br /> //Execute command<br />} |
Revision as of 10:14, 24 February 2015
[toc align_right="yes" depth="2"]
English Български
Custom QMessageBox Buttons
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.
Code Snippet
QMessageBox msgBox;
msgBox.setText(tr("Confirm?"));
QAbstractButton* pButtonYes = msgBox.addButton(tr("Yeah!"), QMessageBox::YesRole);
msgBox.addButton(tr("Nope"), QMessageBox::NoRole);
msgBox.exec&#40;);
if(msgBox.clickedButton() == pButtonYes)
{
//Execute command
}