⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 contact.h

📁 linux窗口程序设计一书的第三章代码-对话框进阶,希望对大家有用
💻 H
字号:
#ifndef CONTACT_H#define CONTACT_H//#include <qvariant.h>#include <QDialog>class QVBoxLayout;class QHBoxLayout;class QGridLayout;class QSpacerItem;class QLabel;class QLineEdit;class QCheckBox;class Contact : public QWidget{    Q_OBJECTpublic:    Contact( QWidget* parent = 0, Qt::WindowFlags fl = 0 );    ~Contact();    QLabel* textLabel1;    QLabel* textLabel2;    QLabel* textLabel3;    QLabel* textLabel4;    QLabel* textLabel5;    QLineEdit* lineEditEmail;    QLineEdit* lineEditAddress;    QCheckBox* checkBoxMsg;    QLineEdit* lineEditMobile;    QLineEdit* lineEditPhone;    QLineEdit* lineEditZip;};#endif // CONTACT_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -