dialog.h
来自「《精通QT4编程》共21章的源代码」· C头文件 代码 · 共 28 行
H
28 行
#ifndef DIALOG_H#define DIALOG_H#include <QDialog>class QLabel;class QPushButton;class TimeServer;class Dialog : public QDialog{ Q_OBJECTpublic: Dialog(QWidget *parent = 0);public slots: void showResult();private: QLabel *statusLabel; QLabel *reqStatusLable; QPushButton *quitButton; TimeServer *server; int count;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?