mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
19 lines
459 B
C
19 lines
459 B
C
|
|
#ifndef INFORMATIONBOX_H
|
||
|
|
#define INFORMATIONBOX_H
|
||
|
|
|
||
|
|
#include <QMessageBox>
|
||
|
|
|
||
|
|
class InformationBox : public QMessageBox
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
static void ShowMessage(QString title, QString message, QWidget *parent = nullptr);
|
||
|
|
private:
|
||
|
|
InformationBox(QString title, QString message, unsigned int hash, QWidget *parent);
|
||
|
|
~InformationBox();
|
||
|
|
static QString hashToSettingsKey(unsigned int hash);
|
||
|
|
unsigned int hash;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // INFORMATIONBOX_H
|