[apps/sequence] Create a class sequence title cell

Change-Id: I2a891e6a47ec742cedfa6780ee1a50eb3df24085
This commit is contained in:
Émilie Feral
2017-02-07 14:31:33 +01:00
parent 7b9dbb88a5
commit f76b603c67
7 changed files with 140 additions and 9 deletions

View File

@@ -1,9 +1,9 @@
#include <escher/even_odd_buffer_text_cell.h>
#include <assert.h>
EvenOddBufferTextCell::EvenOddBufferTextCell(KDText::FontSize size) :
EvenOddBufferTextCell::EvenOddBufferTextCell(KDText::FontSize size, float horizontalAlignment, float verticalAlignment) :
EvenOddCell(),
m_bufferTextView(BufferTextView(size, 1.0f, 0.5f))
m_bufferTextView(BufferTextView(size, horizontalAlignment, verticalAlignment))
{
}