subclass representing an empty bbox with defined width/height in the syntax tree
More...
|
| JKQTMathTextEmptyBoxNode (JKQTMathText *parent, double width_, Units widthUnit_, double height_, Units heightUnit_) |
| constructs a node
|
|
virtual | ~JKQTMathTextEmptyBoxNode () override |
|
virtual double | draw (QPainter &painter, double x, double y, JKQTMathTextEnvironment currentEv) const override |
| draw the contents at the designated position
|
|
double | getHeight () const |
| height of the (empty) box, units of this value defined in heightUnit
|
|
Units | getHeightUnit () const |
| units to interpret height
|
|
virtual QString | getTypeName () const override |
| return the name of this class as a string
|
|
double | getWidth () const |
| width of the (empty) box, units of this value defined in widthUnit
|
|
Units | getWidthUnit () const |
| units to interpret width
|
|
virtual bool | toHtml (QString &html, JKQTMathTextEnvironment currentEv, JKQTMathTextEnvironment defaultEv) const override |
| convert node to HTML and returns true on success
|
|
double | Units2PixelWidth (double value, Units unit, JKQTMathTextEnvironment currentEv, QPaintDevice *pd) const |
| converts Types type into its width in pixels, based on currentEv and pd
|
|
| JKQTMathTextNode (const JKQTMathTextNode &)=delete |
|
| JKQTMathTextNode (JKQTMathText *parentMathText) |
|
virtual | ~JKQTMathTextNode () |
|
bool | getDrawBoxes () const |
| returns the drawing of colored boxes (for DEBUGGING) around the actual output of the node is enabled
|
|
JKQTMathTextNode * | getParentNode () |
| parent node of this node (i.e. one level up, ode nullptr )
|
|
const JKQTMathTextNode * | getParentNode () const |
| parent node of this node (i.e. one level up, ode nullptr )
|
|
JKQTMathTextNodeSize | getSize (QPainter &painter, JKQTMathTextEnvironment currentEv) const |
| determine the size of the node, calls getSizeInternal() implementation of the actual type
|
|
bool | isSubSuperscriptAboveBelowNode () const |
| if true then following sub- and/or superscripts are placed below and above the node, not besides it. This is activated when \sum\limits_{sub}^{sup} is used in LaTeX instead of simply \sum_{sub}^{sup}
|
|
JKQTMathTextNode & | operator= (const JKQTMathTextNode &)=delete |
|
virtual void | setDrawBoxes (bool draw) |
| enables the drawing of colored boxes (for DEBUGGING) around the actual output of the node
|
|
void | setParentNode (JKQTMathTextNode *node) |
| parent node of this node (i.e. one level up, ode nullptr )
|
|
void | setSubSuperscriptAboveBelowNode (bool __value) |
| if true then following sub- and/or superscripts are placed below and above the node, not besides it. This is activated when \sum\limits_{sub}^{sup} is used in LaTeX instead of simply \sum_{sub}^{sup}
|
|
|
virtual JKQTMathTextNodeSize | getSizeInternal (QPainter &painter, JKQTMathTextEnvironment currentEv) const override |
| determine the size of the node, overwrite this function in derived classes
|
|
void | addToErrorList (const QString &error) |
| adds a new error to the JKQTMathText referenced by parentMathText
|
|
void | doDrawBoxes (QPainter &painter, double x, double y, const JKQTMathTextNodeSize &size) const |
| draws colored boxes (for DEBUGGING) around the actual output of the node
|
|
void | doDrawBoxes (QPainter &painter, double x, double y, JKQTMathTextEnvironment currentEv) const |
| draws colored boxes (for DEBUGGING) around the actual output of the node
|
|
template<class T > |
QList< T * > | getParents () |
| returns the list of parent, parent-of-parent, ... that can be cast to type T
|
|
template<class T > |
QList< const T * > | getParents () const |
| returns the list of parent, parent-of-parent, ... that can be cast to type T
|
|
|
double | height |
| height of the (empty) box, units of this value defined in heightUnit
|
|
Units | heightUnit |
| units to interpret height
|
|
double | width |
| width of the (empty) box, units of this value defined in widthUnit
|
|
Units | widthUnit |
| units to interpret width
|
|
bool | drawBoxes |
| enables the drawing of colored boxes (for DEBUGGING) around the actual output of the node
|
|
JKQTMathText * | parentMathText |
| parent JKQTMathText object (required for several drawing operations
|
|
JKQTMathTextNode * | parentNode |
| parent node of this node (i.e. one level up, ode nullptr )
|
|
bool | subSuperscriptAboveBelowNode |
| if true then following sub- and/or superscripts are placed below and above the node, not besides it. This is activated when \sum\limits_{sub}^{sup} is used in LaTeX instead of simply \sum_{sub}^{sup}
|
|
subclass representing an empty bbox with defined width/height in the syntax tree