Custom QMessageBox Buttons: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(Cleanup)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''English''' [[Custom QMessageBox Buttons Bulgarian|Български]]
{{LangSwitch}}
[[Category:snippets]]
[[Category:HowTo]]
== Introduction ==


=Custom QMessageBox Buttons=
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].


==Introduction==
== Code Snippet ==


The following code snippet demonstrate how to customize [http://doc.qt.io/qt-4.8/QMessageBox.html QMessageBox] ''[qt.io]'' by adding custom text and buttons using method [http://doc.qt.io/qt-4.8/qmessagebox.html#addButton addButton] ''[qt.io]''.
<code>
QMessageBox msgBox;
msgBox.setText(tr("Confirm?"));
QAbstractButton* pButtonYes = msgBox.addButton(tr("Yeah!"), QMessageBox::YesRole);
msgBox.addButton(tr("Nope"), QMessageBox::NoRole);


==Code Snippet==
msgBox.exec();


===Categories:===
if (msgBox.clickedButton()==pButtonYes) {
 
    //Execute command
* [[:Category:HowTo|HowTo]]
}
* [[:Category:snippets|snippets]]
</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
}