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

📄 standarddialogs.h

📁 linux窗口程序设计一书的第一章代码,希望对大家有用
💻 H
字号:
#ifndef STANDARDDIALOGS_H#define STANDARDDIALOGS_H#include <QtGui>class StandardDialogs : public QDialog{    Q_OBJECTpublic:    StandardDialogs( QWidget *parent=0, Qt::WindowFlags  f=0 );    ~StandardDialogs();public:    QGridLayout *layout;         QPushButton *filePushButton;    QPushButton *colorPushButton;    QPushButton *fontPushButton;    QLineEdit *fileLineEdit;       QLineEdit *fontLineEdit;	    QFrame *colorFrame;    private slots:    void slotOpenFileDlg();    void slotOpenColorDlg();    void slotOpenFontDlg(); };#endif 

⌨️ 快捷键说明

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