1 Star 1 Fork 0

Sinclairwww/ScheduleManagement

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setalarmwindow.cpp 533 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sinclairwww 提交于 2023-05-14 17:07 . 完成了时间部分
#include "setalarmwindow.h"
#include "ui_setalarmwindow.h"
setAlarmWindow::setAlarmWindow ( QWidget* parent ) : QDialog ( parent ), ui ( new Ui::setAlarmWindow ) { ui->setupUi ( this ); }
setAlarmWindow::~setAlarmWindow () { delete ui; }
void setAlarmWindow ::getInfo () {
int week = ui->box_week->value ();
int day = ui->box_day->value ();
int time = ui->box_time->value ();
QString note = ui->lineEdit->text ();
emit addAlarm ( Alarm ( { week, day }, time, note ) );
this->close ();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/sinclairwww/ScheduleManagement.git
git@gitee.com:sinclairwww/ScheduleManagement.git
sinclairwww
ScheduleManagement
ScheduleManagement
master

搜索帮助