Files
Upsilon/apps/sequence/list/sequence_title_cell.cpp
Émilie Feral 21f0f68d61 [apps/sequence/list] Improve title cells layout (subscript)
Change-Id: I7df57e7915e4191af569310fac189687cb3403e0
2017-02-16 16:34:12 +01:00

127 lines
4.9 KiB
C++

#include "sequence_title_cell.h"
#include "../../../poincare/src/layout/baseline_relative_layout.h"
#include "../../../poincare/src/layout/string_layout.h"
using namespace Shared;
using namespace Poincare;
namespace Sequence {
SequenceTitleCell::SequenceTitleCell(Responder * parentResponder, ListParameterController * listParameterController) :
SequenceCell(parentResponder),
m_backgroungCell(FunctionTitleCell(FunctionTitleCell::Orientation::VerticalIndicator)),
m_definitionView(0.5f, 0.5f),
m_firstInitialConditionView(0.5f, 0.5f),
m_secondInitialConditionView(0.5f, 0.5f),
m_listParameterController(listParameterController)
{
}
SequenceTitleCell::~SequenceTitleCell() {
for (int i = 0; i < 3; i++) {
if (m_expressionLayouts[i]) {
delete m_expressionLayouts[i];
}
}
}
void SequenceTitleCell::setSequence(Sequence * sequence) {
SequenceCell::setSequence(sequence);
for (int i = 0; i < 3; i++) {
if (m_expressionLayouts[i]) {
delete m_expressionLayouts[i];
}
}
if (m_numberOfSubCells == 1) {
m_expressionLayouts[0] = new BaselineRelativeLayout(new StringLayout(sequence->name(), 1), new StringLayout("n", 1, KDText::FontSize::Small), BaselineRelativeLayout::Type::Subscript);
m_definitionView.setExpression(m_expressionLayouts[0]);
}
if (m_numberOfSubCells == 2) {
m_expressionLayouts[0] = new BaselineRelativeLayout(new StringLayout(sequence->name(), 1), new StringLayout("n+1", 3, KDText::FontSize::Small), BaselineRelativeLayout::Type::Subscript);
m_definitionView.setExpression(m_expressionLayouts[0]);
m_expressionLayouts[1] = new BaselineRelativeLayout(new StringLayout(sequence->name(), 1), new StringLayout("0", 1, KDText::FontSize::Small), BaselineRelativeLayout::Type::Subscript);
m_firstInitialConditionView.setExpression(m_expressionLayouts[1]);
}
if (m_numberOfSubCells == 3) {
m_expressionLayouts[0] = new BaselineRelativeLayout(new StringLayout(sequence->name(), 1), new StringLayout("n+2", 3, KDText::FontSize::Small), BaselineRelativeLayout::Type::Subscript);
m_definitionView.setExpression(m_expressionLayouts[0]);
m_expressionLayouts[1] = new BaselineRelativeLayout(new StringLayout(sequence->name(), 1), new StringLayout("0", 1, KDText::FontSize::Small), BaselineRelativeLayout::Type::Subscript);
m_firstInitialConditionView.setExpression(m_expressionLayouts[1]);
m_expressionLayouts[2] = new BaselineRelativeLayout(new StringLayout(sequence->name(), 1), new StringLayout("1", 1, KDText::FontSize::Small), BaselineRelativeLayout::Type::Subscript);
m_secondInitialConditionView.setExpression(m_expressionLayouts[2]);
}
KDColor nameColor = sequence->isActive() ? sequence->color() : Palette::GreyDark;
setColor(nameColor);
layoutSubviews();
}
void SequenceTitleCell::setColor(KDColor color) {
m_backgroungCell.setColor(color);
m_definitionView.setTextColor(color);
m_firstInitialConditionView.setTextColor(color);
m_secondInitialConditionView.setTextColor(color);
}
int SequenceTitleCell::numberOfSubviews() const {
return SequenceCell::numberOfSubviews() + 1;
}
View * SequenceTitleCell::subviewAtIndex(int index) {
if (index == SequenceCell::numberOfSubviews()) {
return &m_backgroungCell;
}
return SequenceCell::subviewAtIndex(index);
}
void SequenceTitleCell::layoutSubviews() {
m_backgroungCell.setFrame(bounds());
SequenceCell::layoutSubviews();
}
void SequenceTitleCell::drawRect(KDContext * ctx, KDRect rect) const {
KDColor separatorColor = m_even ? Palette::WallScreen : KDColorWhite;
KDCoordinate cellHeight = (bounds().height()-(m_numberOfSubCells-1)*k_separatorThickness)/m_numberOfSubCells;
if (m_numberOfSubCells > 1) {
ctx->fillRect(KDRect(0, cellHeight, bounds().width(), k_separatorThickness), separatorColor);
}
if (m_numberOfSubCells > 2) {
ctx->fillRect(KDRect(0, 2*cellHeight+k_separatorThickness, bounds().width(), k_separatorThickness), separatorColor);
}
}
bool SequenceTitleCell::handleEvent(Ion::Events::Event event) {
if (m_selectedSubCell < m_numberOfSubCells-1 && event == Ion::Events::Down) {
selectSubCell(m_selectedSubCell+1);
return true;
}
if (m_selectedSubCell > 0 && event == Ion::Events::Up) {
selectSubCell(m_selectedSubCell-1);
return true;
}
if (event == Ion::Events::OK) {
StackViewController * stack = stackController();
m_listParameterController->setSequence(m_sequence);
stack->push(m_listParameterController);
SelectableTableView * table = (SelectableTableView *)parentResponder();
table->dataHasChanged(true);
return true;
}
return false;
}
EvenOddCell * SequenceTitleCell::viewAtIndex(int index) {
if (index == 0) {
return &m_definitionView;
}
if (index == 1) {
return &m_firstInitialConditionView;
}
return &m_secondInitialConditionView;
}
StackViewController * SequenceTitleCell::stackController() {
return (StackViewController *)parentResponder()->parentResponder()->parentResponder()->parentResponder();
}
}