mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#ifndef APPS_VARIABLE_BOX_EMPTY_CONTROLLER_H
|
|
#define APPS_VARIABLE_BOX_EMPTY_CONTROLLER_H
|
|
|
|
#include <escher.h>
|
|
|
|
class VariableBoxEmptyController : public ViewController {
|
|
public:
|
|
VariableBoxEmptyController();
|
|
enum class Type {
|
|
None = 0,
|
|
Expressions = 1,
|
|
Functions = 2
|
|
};
|
|
// View Controller
|
|
View * view() override;
|
|
DisplayParameter displayParameter() override { return DisplayParameter::DoNotShowOwnTitle; }
|
|
void viewDidDisappear() override;
|
|
|
|
void setType(Type type);
|
|
private:
|
|
class VariableBoxEmptyView : public View {
|
|
public:
|
|
static constexpr const KDFont * k_font = KDFont::SmallFont;
|
|
VariableBoxEmptyView();
|
|
void setMessages(I18n::Message * message);
|
|
void setLayout(Poincare::Layout layout);
|
|
constexpr static int k_numberOfMessages = 4;
|
|
private:
|
|
int numberOfSubviews() const override;
|
|
View * subviewAtIndex(int index) override;
|
|
void layoutSubviews(bool force = false) override;
|
|
constexpr static int k_layoutRowIndex = 2;
|
|
MessageTextView m_messages[k_numberOfMessages];
|
|
ExpressionView m_layoutExample;
|
|
};
|
|
VariableBoxEmptyView m_view;
|
|
};
|
|
|
|
#endif
|