- Note
- This Source File belongs to 7GUIs Cells Example. Please follow the link for example explanation.
#pragma once
#include <AUI/Common/AString.h>
#include <AUI/Common/AProperty.h>
#include "Formula.h"
class Spreadsheet;
struct Cell {
private:
formula::Precompiled precompile();
formula::Value evaluate();
public:
Spreadsheet* spreadsheet = nullptr;
static AString columnName(unsigned index);
static AString rowName(unsigned index);
static constexpr auto UNDEFINED = std::numeric_limits<unsigned>::max();
static glm::uvec2 fromName(const AString& name);
};
Readonly property that holds a value computed by an expression.
Definition APropertyPrecomputed.h:51
Basic easy-to-use property implementation containing T.
Definition AProperty.h:30