* Added non-commercial use option to enter license window * Show enter license window on first start and force license selection * Added ApplicationSettings migration that removed private/academic license and switches user to non-commercial mode * Added commandline option to choose non-commercial use and provide better hints to license selection * Removed trial mode fortune cookie message = A secret admirer will soon send you a sign of affection.
31 lines
408 B
C++
31 lines
408 B
C++
#ifndef QT_REFRESH_BAR_H
|
|
#define QT_REFRESH_BAR_H
|
|
|
|
#include <QFrame>
|
|
|
|
#include "qt/utility/QtThreadedFunctor.h"
|
|
|
|
class QPushButton;
|
|
|
|
class QtRefreshBar
|
|
: public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtRefreshBar();
|
|
virtual ~QtRefreshBar();
|
|
|
|
void refreshStyle();
|
|
|
|
private slots:
|
|
void refreshClicked();
|
|
|
|
private:
|
|
QtThreadedLambdaFunctor m_onQtThread;
|
|
|
|
QPushButton* m_refreshButton;
|
|
};
|
|
|
|
#endif // QT_REFRESH_BAR_H
|