📄 weatherstation.h
字号:
#ifndef WEATHERSTATION_H#define WEATHERSTATION_H#include <QDialog>#include <QUdpSocket>class QLabel;class QLineEdit;class WeatherStation : public QDialog{ Q_OBJECTpublic: WeatherStation(QWidget *parent = 0);private slots: void processPendingDatagrams();private: QUdpSocket udpSocket; QLabel *dateLabel; QLabel *timeLabel; QLabel *temperatureLabel; QLabel *humidityLabel; QLabel *altitudeLabel; QLineEdit *dateLineEdit; QLineEdit *timeLineEdit; QLineEdit *temperatureLineEdit; QLineEdit *humidityLineEdit; QLineEdit *altitudeLineEdit;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -