mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
[solver] In SolutionsController: make the delta cell an expression cell
for a better layout
This commit is contained in:
@@ -11,6 +11,7 @@ namespace Solver {
|
||||
class SolutionsController : public ViewController, public AlternateEmptyViewDelegate, public SelectableTableViewDataSource, public TableViewDataSource {
|
||||
public:
|
||||
SolutionsController(Responder * parentResponder, EquationStore * equationStore);
|
||||
~SolutionsController();
|
||||
/* ViewController */
|
||||
const char * title() override;
|
||||
View * view() override;
|
||||
@@ -40,6 +41,8 @@ private:
|
||||
constexpr static KDCoordinate k_defaultCellHeight = 20;
|
||||
EquationStore * m_equationStore;
|
||||
EvenOddBufferTextCell m_symbolCells[EquationStore::k_maxNumberOfSolutions];
|
||||
EvenOddExpressionCell m_deltaCell;
|
||||
Poincare::ExpressionLayout * m_delta2Layout;
|
||||
Shared::ScrollableExactApproximateExpressionsCell m_exactValueCells[EquationStore::k_maxNumberOfExactSolutions];
|
||||
EvenOddBufferTextCell m_approximateValueCells[EquationStore::k_maxNumberOfApproximateSolutions];
|
||||
SelectableTableView m_selectableTableView;
|
||||
|
||||
Reference in New Issue
Block a user