You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
867 B
33 lines
867 B
#include "climate.h"
|
|
#include "ui_climate.h"
|
|
#include <QDebug>
|
|
#include "weather.h"
|
|
|
|
climate::climate(QWidget *parent)
|
|
: QMainWindow(parent)
|
|
, ui(new Ui::climate)
|
|
{
|
|
ui->setupUi(this);
|
|
Weather = new weather(ui);
|
|
|
|
// quint16 c4[]={0x2103,0}; // Unicode温度符号
|
|
// 字体大小 30
|
|
// ui->label_2->setText("23"+QString::fromUtf16(c4));
|
|
// ui->label_3->setText("雷阵雨 23"+QString::fromUtf16(c4) + "/30"+QString::fromUtf16(c4));
|
|
//Weather->http_sent();
|
|
floatingbutton= new FloatingButton (this);
|
|
// 将悬浮球的pressed()信号连接到槽函数onButtonPressed()上
|
|
connect(floatingbutton, &FloatingButton::pressed, this, &climate::onButtonPressed);
|
|
}
|
|
|
|
climate::~climate()
|
|
{
|
|
delete ui;
|
|
}
|
|
void climate::onButtonPressed()
|
|
{
|
|
emit climate_close(false);
|
|
qDebug() << "悬浮球被按下了!";
|
|
}
|
|
|