primera subida

This commit is contained in:
2025-01-28 00:04:13 +01:00
commit a91237c3e1
577 changed files with 457418 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#include "thewidgetitem.h"
#include "ui_thewidgetitem.h"
TheWidgetItem::TheWidgetItem(QWidget *parent) :
QWidget(parent),
ui(new Ui::TheWidgetItem)
{
ui->setupUi(this);
}
TheWidgetItem::~TheWidgetItem()
{
delete ui;
}
void TheWidgetItem::on_pressThisBtn_clicked()
{
//Getting text from lineEdit and setting it to the label
ui->label->setText (ui->lineEdit->text ());
}
void TheWidgetItem::on_horizontalSlider_valueChanged(int value)
{
//Connecting slider with the progressbar
ui->progressBar->setValue (value);
}