kspread
KSpread::Formula Class Reference
#include <formula.h>
Detailed Description
Class Formula encapsulates a formula for a cell.A Formula is a equations which perform calculations on values in the cells and sheets. Every formula must start with an equal sign (=).
Definition at line 238 of file formula.h.
Public Member Functions | |
Formula (Sheet *sheet, Cell *cell=0) | |
Formula () | |
~Formula () | |
Sheet * | sheet () const |
Cell * | cell () const |
void | setExpression (const QString &expr) |
QString | expression () const |
void | clear () |
bool | isValid () const |
Tokens | tokens () const |
Value | eval () const |
Tokens | scan (const QString &expr, KLocale *locale=0) const |
QString | dump () const |
Protected Member Functions | |
void | compile (const Tokens &tokens) const |
Constructor & Destructor Documentation
|
Creates a formula. It must be owned by a sheet, and optionally sheet. Definition at line 372 of file formula.cc. |
|
Creates a formula that is not owned by any sheet. This might be useful in some cases. Definition at line 380 of file formula.cc. |
|
Destroys the formula.
Definition at line 390 of file formula.cc. |
Member Function Documentation
|
Returns the cell which owns this formula.
Definition at line 395 of file formula.cc. |
|
Clears everything, makes as like a newly constructed formula.
Definition at line 444 of file formula.cc. |
|
Evaluates the formula and returns the result.
Definition at line 1158 of file formula.cc. |
|
Gets the expression of this formula.
Definition at line 418 of file formula.cc. |
|
Returns true if the specified expression is valid, i.e. it contains no parsing error. Empty formula (i.e. without expression) is always invalid. Definition at line 426 of file formula.cc. |
|
Given an expression, this function separates it into tokens. If the expression contains error (e.g. unknown operator, string no terminated) this function returns tokens which is not valid. Definition at line 466 of file formula.cc. |
|
Sets the expression for this formula.
Definition at line 409 of file formula.cc. |
|
Returns the cell which owns this formula.
Definition at line 400 of file formula.cc. |
|
Returns list of tokens associated with this formula. This has nothing to with the formula evaluation but might be useful, e.g. for syntax highlight or similar features. If the formula contains error, the returned tokens is invalid. Definition at line 458 of file formula.cc. |
The documentation for this class was generated from the following files: