homewidget.cpp 513 B

1234567891011121314151617181920212223242526
  1. #include "homewidget.h"
  2. #include "ui_homewidget.h"
  3. #include <QDebug>
  4. homeWidget::homeWidget(QWidget *parent) :
  5. QWidget(parent),
  6. ui(new Ui::homeWidget)
  7. {
  8. ui->setupUi(this);
  9. qDebug() << "homeWidget: Activated";
  10. /*
  11. * To Do: Functions to retreive values from DB
  12. */
  13. ui->totalTimeDisplayLabel->setText("123:45");
  14. ui->blockHoursDisplayLabel->setText("123:45");
  15. ui->currencyDisplayLabel->setText("17 Take Offs\n15 Landings");
  16. }
  17. homeWidget::~homeWidget()
  18. {
  19. delete ui;
  20. }