Initial commit of BudgetPro

This commit is contained in:
Javi
2026-05-24 23:21:33 +02:00
commit f3096faee6
575 changed files with 90288 additions and 0 deletions
+28
View File
@@ -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