commit | d85daa98cbbd221721e66d5445eea005970c50ce | [log] [tgz] |
---|---|---|
author | swissChili <swisschili@fastmail.com> | Thu Feb 24 15:29:02 2022 -0800 |
committer | swissChili <swisschili@fastmail.com> | Thu Feb 24 15:29:02 2022 -0800 |
tree | 70ef8caa9244363ab6dda9991b4ff2db5e4fd2d9 | |
parent | 25620b09cead48d0f3c28e9e2ea64778e60affbc [diff] [blame] |
Add evaluator
diff --git a/ide/CellModel.h b/ide/CellModel.h index 16bfee5..1f56056 100644 --- a/ide/CellModel.h +++ b/ide/CellModel.h
@@ -17,7 +17,9 @@ enum CellRoles { CodeRole = Qt::UserRole + 1, - ResultRole + ResultRole, + UuidRole, + StatusRole, }; // Basic functionality: @@ -44,6 +46,7 @@ private: Notebook *_notebook; + void announceCellChange(Cell *cell, int role); }; Q_DECLARE_METATYPE(CellModel)