Initial commit of BudgetPro
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#ifndef LOADTIPS_H
|
||||
#define LOADTIPS_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QLabel>
|
||||
#include <DWaterProgress>
|
||||
|
||||
DWIDGET_USE_NAMESPACE
|
||||
|
||||
class LoadTips : public QDialog {
|
||||
Q_OBJECT
|
||||
public:
|
||||
LoadTips(QWidget* parent = 0);
|
||||
~LoadTips();
|
||||
|
||||
public:
|
||||
void showTips();
|
||||
|
||||
signals:
|
||||
void progressValueChanged(int value);
|
||||
void finishedPainting();
|
||||
|
||||
private:
|
||||
DWaterProgress* m_waterProg;
|
||||
QLabel* m_messageLabel;
|
||||
int m_counts;
|
||||
};
|
||||
#endif // LOADTIPS_H
|
||||
Reference in New Issue
Block a user