Files
Upsilon/apps/code/console_line_cell.h
Léa Saviot 493cef0d4d [code] Python console that stores and displays commands that are
entered.

Change-Id: I0343c38b60f4bbea6dfab173e2b5f46f66b83251
2017-11-17 11:59:50 +01:00

21 lines
364 B
C++

#ifndef CODE_CONSOLE_LINE_CELL_H
#define CODE_CONSOLE_LINE_CELL_H
#include <escher/highlight_cell.h>
#include "console_line.h"
namespace Code {
class ConsoleLineCell : public HighlightCell {
public:
ConsoleLineCell();
void drawRect(KDContext * ctx, KDRect rect) const override;
void setLine(ConsoleLine line);
private:
ConsoleLine m_line;
};
}
#endif