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

📄 cell.h

📁 这个是qt3c++编程书(齐亮翻译),里面3,4章代码
💻 H
字号:
#ifndef CELL_H#define CELL_H#include <qtable.h>#include <qvariant.h>class Cell : public QTableItem{public:    Cell(QTable *table, const QString &formula);    void setFormula(const QString &formula);    QString formula() const;    void setDirty();    QString text() const;    int alignment() const;private:    QVariant value() const;    QVariant evalExpression(const QString &str, int &pos) const;    QVariant evalTerm(const QString &str, int &pos) const;    QVariant evalFactor(const QString &str, int &pos) const;    QString formulaStr;    mutable QVariant cachedValue;    mutable bool cacheIsDirty;};#endif

⌨️ 快捷键说明

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