Custom QMessageBox Buttons

From Qt Wiki
Revision as of 10:14, 24 February 2015 by Maintenance script (talk | contribs)
Jump to navigation Jump to search


[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();

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