加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fooditem.cpp 545 Bytes
一键复制 编辑 原始数据 按行查看 历史
兵王来了 提交于 2022-06-27 22:39 . 完成存储的sql部分
#include "fooditem.h"
#include "ui_fooditem.h"
#include <QToolButton>
FoodItem::FoodItem(QWidget *parent) :
QWidget(parent),
ui(new Ui::FoodItem)
{
ui->setupUi(this);
connect(ui->btn_select,&QToolButton::clicked,this,[=](){
emit selected(food);
});
}
void FoodItem::update(Food food){
ui->label_name->setText(food.name);
ui->label_info->setText(food.info);
ui->lable_image->showURLImage(food.pic);
ui->label_alias->setText(food.alias);
this->food = food;
}
FoodItem::~FoodItem()
{
delete ui;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化