regexpmodel.h

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

H
33
字号
#ifndef REGEXPMODEL_H#define REGEXPMODEL_H#include <QAbstractItemModel>class Node;class RegExpModel : public QAbstractItemModel{public:    RegExpModel(QObject *parent = 0);    ~RegExpModel();    void setRootNode(Node *node);    QModelIndex index(int row, int column,                      const QModelIndex &parent) const;    QModelIndex parent(const QModelIndex &child) const;    int rowCount(const QModelIndex &parent) const;    int columnCount(const QModelIndex &parent) const;    QVariant data(const QModelIndex &index, int role) const;    QVariant headerData(int section, Qt::Orientation orientation,                        int role) const;private:    Node *nodeFromIndex(const QModelIndex &index) const;    Node *rootNode;};#endif

⌨️ 快捷键说明

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