colornamesdialog.h

来自「c++ GUI Programming with QT4书中的源码」· C头文件 代码 · 共 34 行

H
34
字号
#ifndef COLORNAMESDIALOG_H#define COLORNAMESDIALOG_H#include <QDialog>class QComboBox;class QLabel;class QLineEdit;class QListView;class QSortFilterProxyModel;class QStringListModel;class ColorNamesDialog : public QDialog{    Q_OBJECTpublic:    ColorNamesDialog(QWidget *parent = 0);private slots:    void reapplyFilter();private:    QStringListModel *sourceModel;    QSortFilterProxyModel *proxyModel;    QListView *listView;    QLabel *filterLabel;    QLabel *syntaxLabel;    QLineEdit *filterLineEdit;    QComboBox *syntaxComboBox;};#endif

⌨️ 快捷键说明

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