加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
forcastwidget.h 985 Bytes
一键复制 编辑 原始数据 按行查看 历史
qingyu 提交于 2024-10-12 10:22 . refactor: 更改popup布局,删除云图
#ifndef FORCASTWIDGET_H
#define FORCASTWIDGET_H
#include <QWidget>
#include <QVBoxLayout>
#include <QLabel>
#include <QSettings>
class ForcastWidget : public QWidget
{
Q_OBJECT
public:
explicit ForcastWidget(QWidget *parent = 0);
private:
QVBoxLayout *m_centralLayout;
QWidget *m_centralWidget;
static const int FORECAST_DAYS = 5;
static const int CURRENT_WEATHER_INDEX = 0;
QSettings m_settings;
QLabel *labelWImg[FORECAST_DAYS + 1];
QLabel *labelTemp[FORECAST_DAYS + 1];
QLabel *labelDate[FORECAST_DAYS + 1];
QLabel *labelHumidity;
QLabel *labelSunset;
QLabel *labelWind;
QLabel *labelUpdateTime;
QLabel *labelCity;
QString getIconPath(const QString &iconName);
void setupUI();
QLayout* setupCurrentWeather();
QLayout* setupForecast();
public slots:
void updateWeather();
signals:
void weatherNow(QString weather, QString temp, QString stip, QPixmap pixmap);
};
#endif // FORCASTWIDGET_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化