2
0

totalswidget.h 450 B

12345678910111213141516171819202122232425262728
  1. #ifndef TOTALSWIDGET_H
  2. #define TOTALSWIDGET_H
  3. #include <QWidget>
  4. #include <QStackedLayout>
  5. #include <QLabel>
  6. #include <QLineEdit>
  7. #include <QSettings>
  8. #include "src/database/db.h"
  9. #include "src/classes/stat.h"
  10. namespace Ui {
  11. class TotalsWidget;
  12. }
  13. class TotalsWidget : public QWidget
  14. {
  15. Q_OBJECT
  16. public:
  17. explicit TotalsWidget(QWidget *parent = nullptr);
  18. ~TotalsWidget();
  19. private:
  20. Ui::TotalsWidget *ui;
  21. };
  22. #endif // TOTALSWIDGET_H