the-libs/lib/tmessagebox.h

24 lines
434 B
C
Raw Permalink Normal View History

2019-02-28 20:14:55 -05:00
#ifndef TMESSAGEBOX_H
#define TMESSAGEBOX_H
#include "the-libs_global.h"
#include <QMessageBox>
class THELIBSSHARED_EXPORT tMessageBox : public QMessageBox
{
Q_OBJECT
public:
explicit tMessageBox(QWidget *parent = nullptr);
~tMessageBox();
2019-02-28 20:14:55 -05:00
signals:
public slots:
void setWindowTitle(QString windowTitle);
void setText(QString text);
int exec();
2019-02-28 20:14:55 -05:00
};
#endif // TMESSAGEBOX_H