📄 networkinformation.h
字号:
#ifndef NETWORKINFORMATION_H#define NETWORKINFORMATION_H#include <QtGui>#include <QtNetwork>class NetworkInformation : public QDialog // network information dialogs widget{ Q_OBJECTpublic: NetworkInformation( QWidget *parent=0, Qt::WindowFlags f=0 ); ~NetworkInformation();public: QLabel* LabelLocalHostName; QLineEdit* LineEditLocalHostName; QLabel* LabelAddress; QLineEdit* LineEditAddress; QPushButton* PushButtonDetail;public: void getHostInformation();public slots: void slotDetail();};#endif // NETWORKINFORMATION_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -