Thanks for the tip!
Both advices where very good and it does just what is meant too.
And sorry, I didn't know how to use code tag... I'll learn for next time.
#THIS IS ME EDITING THIS POST. Searched and now its good to go with the CodeTag. Thanks!
--QSS.h--
#ifndef QSS_H
#define QSS_H
#include <QSplashScreen>
#include <QTimer>
#include <QWidget>
#include <QObject>
#include <QtGui>
Q_OBJECT
public:
void criarTimer();
public slots:
void fechar();
signals:
void fechou();
};
#endif // QSS_H
--QSS.h--
#ifndef QSS_H
#define QSS_H
#include <QSplashScreen>
#include <QTimer>
#include <QWidget>
#include <QObject>
#include <QtGui>
class QMainWindow;
class QSS: public QSplashScreen {
Q_OBJECT
public:
explicit QSS(QSplashScreen *parent = 0);
void criarTimer();
public slots:
void fechar();
signals:
void fechou();
};
#endif // QSS_H
To copy to clipboard, switch view to plain text mode
Bookmarks