mirror of
https://github.com/MelanieT/OpenSimConsoleClient.git
synced 2026-08-14 00:57:50 +00:00
28 lines
409 B
C++
28 lines
409 B
C++
#ifndef SPLASHDIALOG_H
|
|
#define SPLASHDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class SplashDialog;
|
|
}
|
|
|
|
class SplashDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SplashDialog(QWidget *parent = 0, Qt::WindowFlags = 0);
|
|
~SplashDialog();
|
|
|
|
bool isSplash;
|
|
|
|
void show();
|
|
protected:
|
|
void paintEvent(QPaintEvent *event);
|
|
private:
|
|
Ui::SplashDialog *ui;
|
|
};
|
|
|
|
#endif // SPLASHDIALOG_H
|