homewidget.cpp 488 B

12345678910111213141516171819202122
  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. ui->backgroundLabel->clear();
  11. //QPixmap pix("://background_gradient.png");
  12. //ui->backgroundLabel->setPixmap(pix);
  13. ui->backgroundLabel->setStyleSheet("background-color: rgba(13, 196, 254, 100);");
  14. }
  15. homeWidget::~homeWidget()
  16. {
  17. delete ui;
  18. }