mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
3f1ea9d10c
Instead of using the Qt QMessageBox class directly a new class MessageBox (MessageBox.hpp) has been added to deal with platform independence issues like the title not being shown on Mac OS X. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6861 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
59 lines
2.6 KiB
C++
59 lines
2.6 KiB
C++
#ifndef MESSAGE_BOX_HPP__
|
|
#define MESSAGE_BOX_HPP__
|
|
|
|
#include <QMessageBox>
|
|
|
|
// get rid of the nasty MS define
|
|
#ifdef MessageBox
|
|
#undef MessageBox
|
|
#endif
|
|
|
|
//
|
|
// MessageBox - wrap the Qt QMessageBox class to give a more platform
|
|
// neutral and functional interface
|
|
//
|
|
class MessageBox
|
|
: public QMessageBox
|
|
{
|
|
public:
|
|
explicit MessageBox (QWidget * parent = nullptr);
|
|
explicit MessageBox (Icon, QString const& text, StandardButtons = NoButton
|
|
, QWidget * parent = nullptr
|
|
, Qt::WindowFlags = Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint);
|
|
|
|
static void about_message (QWidget * parent, QString const& text);
|
|
static void about_Qt_message (QWidget * parent);
|
|
static StandardButton information_message (QWidget * parent, QString const& text
|
|
, QString const& informative = QString {}
|
|
, QString const& detail = QString {}
|
|
, StandardButtons buttons = Ok
|
|
, StandardButton default_button = NoButton);
|
|
static StandardButton query_message (QWidget * parent, QString const& text
|
|
, QString const& informative = QString {}
|
|
, QString const& detail = QString {}
|
|
, StandardButtons buttons = Yes | No
|
|
, StandardButton default_button = NoButton);
|
|
static StandardButton warning_message (QWidget * parent, QString const& text
|
|
, QString const& informative = QString {}
|
|
, QString const& detail = QString {}
|
|
, StandardButtons buttons = Ok
|
|
, StandardButton default_button = NoButton);
|
|
static StandardButton critical_message (QWidget * parent, QString const& text
|
|
, QString const& informative = QString {}
|
|
, QString const& detail = QString {}
|
|
, StandardButtons buttons = Ok
|
|
, StandardButton default_button = NoButton);
|
|
private:
|
|
// hide the parent static functions so that users use our versions
|
|
// above that are correctly branded and have better platform
|
|
// independence
|
|
using QMessageBox::about;
|
|
using QMessageBox::aboutQt;
|
|
using QMessageBox::information;
|
|
using QMessageBox::question;
|
|
using QMessageBox::warning;
|
|
using QMessageBox::critical;
|
|
};
|
|
|
|
#endif
|