QT作业2

1>

代码:

头文件

cpp 复制代码
#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include<iostream>
#include<QDebug>
#include<QIcon>
#include<QPushButton>
#include<QLabel>
#include<QMovie>
#include<QLineEdit>
#include<QMessageBox>
#include<QTimer>
#include<QTime>
#include<QString>
#include<QTimerEvent>
#include<QPushButton>
#include<QDateTime>
#include<QTextToSpeech>

QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACE

class Widget : public QWidget
{
    Q_OBJECT

public:
    Widget(QWidget *parent = nullptr);
    ~Widget();

public slots:
    void timeout_slot();        //自定义槽函数的声明
    void my_start();
    void my_cancel();

private:
    Ui::Widget *ui;

    QTimer t1;
    QLabel *lab1;
    QLabel *lab2;
    QLineEdit *edit1;
    QPushButton *btn1;
    QPushButton *btn2;
    QTextToSpeech *s1;
};
#endif // WIDGET_H

源文件

cpp 复制代码
#include "widget.h"
#include "ui_widget.h"

Widget::Widget(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::Widget)
{
    ui->setupUi(this);

    this->setFixedSize(1000,800);        //设置固定尺寸

    this->setWindowIcon(QIcon(":/picture/1.png"));

    //标签1:显示系统时间
    this->lab1 = new QLabel("时间",this);
    lab1->resize(500,150);
    lab1->move(50,50);
    lab1->setStyleSheet("background-color:yellow;");
    this->lab1->setAlignment(Qt::AlignCenter);  //居中
    connect(&t1, &QTimer::timeout, this, &Widget::timeout_slot);  //连接定时器
    t1.start(1000);

    //文本框1:写闹钟时间
    this->edit1 = new QLineEdit(this);
    edit1->resize(350,75);
    edit1->move(600,50);
    edit1->setPlaceholderText("闹钟");

    //按钮1:启动
    this->btn1 = new QPushButton("启动",this);
    btn1->resize(100,50);
    btn1->move(650,150);
    connect(this->btn1, &QPushButton::clicked, this, &Widget::my_start);

    //按钮2:取消
    this->btn2 = new QPushButton("取消",this);
    btn2->resize(100,50);
    btn2->move(800,150);
    btn2->setEnabled(false);
    connect(this->btn2, &QPushButton::clicked, this, &Widget::my_cancel);

    //标签2
    this->lab2 = new QLabel(this);
    lab2->resize(1000,550);
    lab2->move(0,250);
    lab2->setStyleSheet("background-color:pink;");
    lab2->setPixmap(QPixmap(":/picture/study.png"));  //贴图
    lab2->setScaledContents(true);

    this->s1 = new QTextToSpeech(this);

}

Widget::~Widget()
{
    delete ui;
}

void Widget::timeout_slot()
{
    //获取系统时间
    QTime sysTime = QTime::currentTime();
    QString tm = sysTime.toString("hh:mm:ss");
    lab1->setText(tm);
    lab1->setAlignment(Qt::AlignCenter); //居中
    QFont f;                            //设置字体大小
    f.setPointSize(50);
    lab1->setFont(f);
    if(lab1->text() == edit1->text())
    {
        btn1->setEnabled(true);
        btn2->setEnabled(false);
        edit1->setEnabled(true);
        edit1->clear();
        s1->say("劝学\
                三更灯火五更鸡,正是男儿读书时。\
                黑发不知勤学早,白首方悔读书迟。");
    }
}

void Widget::my_start()
{
    btn1->setEnabled(false);
    btn2->setEnabled(true);
    edit1->setEnabled(false);
}

void Widget::my_cancel()
{
    btn1->setEnabled(true);
    btn2->setEnabled(false);
    edit1->setEnabled(true);
    edit1->clear();
}

运行结果:

2>思维导图

相关推荐
Sylvia-girl5 小时前
Java——抽象类
java·开发语言
Yana.nice7 小时前
Bash函数详解
开发语言·chrome·bash
tomorrow.hello8 小时前
Java并发测试工具
java·开发语言·测试工具
晓13139 小时前
JavaScript加强篇——第四章 日期对象与DOM节点(基础)
开发语言·前端·javascript
老胖闲聊9 小时前
Python I/O 库【输入输出】全面详解
开发语言·python
她说人狗殊途10 小时前
java.net.InetAddress
java·开发语言
天使day10 小时前
Cursor的使用
java·开发语言·ai
Dxy123931021610 小时前
Python ExcelWriter详解:从基础到高级的完整指南
开发语言·python
源代码•宸12 小时前
C++高频知识点(十三)
开发语言·c++·经验分享·面经
wa的一声哭了12 小时前
python基础知识pip配置pip.conf文件
java·服务器·开发语言·python·pip·risc-v·os