- Note
- This Source File belongs to 7GUIs Cells Example. Please follow the link for example explanation.
#include "Cell.h"
AString Cell::columnName(
unsigned int index) {
return 'A' + index;
}
AString Cell::rowName(
unsigned int index) {
return AString::number(index);
}
formula::Value Cell::evaluate() {
return formula::evaluate(*spreadsheet, expression);
}
glm::uvec2 Cell::fromName(
const AString& name) {
glm::uvec2 out{UNDEFINED};
for (;it !=
name.
end() &&
'A' <= *it && *it <=
'Z'; ++it) {
if (out.x == UNDEFINED) { out.x = 0; }
out.x *= 26;
out.x += *it - 'A';
}
for (;it !=
name.end() &&
'0' <= *it && *it <=
'9'; ++it) {
if (out.y == UNDEFINED) { out.y = 0; }
out.y *= 10;
out.y += *it - '0';
}
return out;
}
formula::Precompiled Cell::precompile() {
return formula::precompile(expression);
}
Represents a Unicode character string.
Definition AString.h:38
AString name(T *v)
Runtime reflection based on typeid.
Definition AReflect.h:29