mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
Rename all header files with .h extension Fix function declaration in HamlibTransceiver.h that overrode member function but was not marked override Remove unused variable in Modulator.cpp Remove unused files from source tree Remove duplicate LazyFillComboBox files Reformat codebase to LLVM C++ standard
61 lines
2.4 KiB
C++
61 lines
2.4 KiB
C++
#ifndef MESSAGE_BOX_HPP__
|
|
#define MESSAGE_BOX_HPP__
|
|
|
|
#include <QMessageBox>
|
|
|
|
/**
|
|
* JS8MessageBox - wrap the Qt QMessageBox class to give a more platform
|
|
* neutral and functional interface.
|
|
*
|
|
* Microsoft chose to #define MessageBox.
|
|
* We dogde the resulting problems by calling our MessageBox JS8MessageBox.
|
|
*/
|
|
class JS8MessageBox : public QMessageBox {
|
|
public:
|
|
explicit JS8MessageBox(QWidget *parent = nullptr);
|
|
explicit JS8MessageBox(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::critical;
|
|
using QMessageBox::information;
|
|
using QMessageBox::question;
|
|
using QMessageBox::warning;
|
|
};
|
|
|
|
#endif
|