lib
BasicElement Class Reference
#include <basicelement.h>
Inheritance diagram for BasicElement:

Detailed Description
Basis of every formula element.An element is used basically by other elements and by the FormulaCursor .
Each element knows its size (a rect that includes all children) and how to draw itself. See calcSizes and draw .
An element might contain valid cursor position. If the cursor enters the element it must find the next valid position depending on the direction in that the cursor moves and the element it comes from. There might also be some flags inside the cursor that tell how it wants to move. See moveLeft , moveRight , moveUp , moveDown .
To build a tree an element must own children. If there are children there must be a main child. This is the child that might be used to replace the element. See getMainChild().
If there can be children you might want to insert and remove them. After a removal the element might be senseless. (See isSenseless ) If it is it must be removed.
Definition at line 74 of file basicelement.h.
Public Member Functions | |
BasicElement (BasicElement *parent=0) | |
virtual | ~BasicElement () |
BasicElement (const BasicElement &) | |
virtual BasicElement * | clone ()=0 |
virtual bool | accept (ElementVisitor *)=0 |
virtual bool | readOnly (const BasicElement *child) const |
virtual FormulaElement * | formula () |
virtual const FormulaElement * | formula () const |
virtual QChar | getCharacter () const |
virtual TokenType | getTokenType () const |
virtual bool | isInvisible () const |
virtual BasicElement * | goToPos (FormulaCursor *, bool &handled, const LuPixelPoint &point, const LuPixelPoint &parentOrigin) |
LuPixelPoint | widgetPos () |
virtual void | calcSizes (const ContextStyle &context, ContextStyle::TextStyle tstyle, ContextStyle::IndexStyle istyle)=0 |
virtual void | draw (QPainter &painter, const LuPixelRect &r, const ContextStyle &context, ContextStyle::TextStyle tstyle, ContextStyle::IndexStyle istyle, const LuPixelPoint &parentOrigin)=0 |
virtual void | dispatchFontCommand (FontCommand *) |
virtual void | moveLeft (FormulaCursor *cursor, BasicElement *from) |
virtual void | moveRight (FormulaCursor *cursor, BasicElement *from) |
virtual void | moveUp (FormulaCursor *, BasicElement *) |
virtual void | moveDown (FormulaCursor *, BasicElement *) |
virtual void | moveHome (FormulaCursor *) |
virtual void | moveEnd (FormulaCursor *) |
virtual void | goInside (FormulaCursor *cursor) |
virtual void | entered (SequenceElement *) |
virtual SequenceElement * | getMainChild () |
virtual void | insert (FormulaCursor *, QPtrList< BasicElement > &, Direction) |
virtual void | remove (FormulaCursor *, QPtrList< BasicElement > &, Direction) |
virtual void | normalize (FormulaCursor *, Direction) |
virtual bool | isSenseless () |
virtual BasicElement * | getChild (FormulaCursor *, Direction=beforeCursor) |
virtual void | selectChild (FormulaCursor *, BasicElement *) |
virtual void | childWillVanish (FormulaCursor *, BasicElement *) |
virtual void | registerTab (BasicElement *) |
virtual KCommand * | buildCommand (Container *, Request *) |
virtual KCommand * | input (Container *, QKeyEvent *) |
const BasicElement * | getParent () const |
BasicElement * | getParent () |
void | setParent (BasicElement *p) |
luPixel | getX () const |
luPixel | getY () const |
void | setX (luPixel x) |
void | setY (luPixel y) |
luPixel | getWidth () const |
luPixel | getHeight () const |
void | setWidth (luPixel width) |
void | setHeight (luPixel height) |
luPixel | getBaseline () const |
void | setBaseline (luPixel line) |
luPixel | axis (const ContextStyle &style, ContextStyle::TextStyle tstyle) const |
QDomElement | getElementDom (QDomDocument &doc) |
virtual void | writeMathML (QDomDocument &doc, QDomNode parent, bool oasisFormat=false) |
bool | buildFromDom (QDomElement element) |
ElementType * | getElementType () const |
virtual void | setElementType (ElementType *t) |
Static Public Member Functions | |
static int | getEvilDestructionCount () |
Protected Member Functions | |
virtual QString | getTagName () const |
virtual void | writeDom (QDomElement element) |
virtual bool | readAttributesFromDom (QDomElement element) |
virtual bool | readContentFromDom (QDomNode &node) |
bool | buildChild (SequenceElement *child, QDomNode node, QString name) |
virtual QString | toLatex () |
virtual QString | formulaString () |
Friends | |
class | SequenceElement |
class | SequenceParser |
Member Function Documentation
|
Visit this element. An implementation of the visitor pattern. Implemented in BracketElement, OverlineElement, UnderlineElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, NameSequence, SpaceElement, SymbolElement, TextElement, and EmptyElement. |
|
Returns if the SequenceElement could be constructed from the nodes first child. The node name must match the given name. This is a service for all subclasses that contain children. Definition at line 227 of file basicelement.cc. |
|
This is called by the container to get a command depending on the current cursor position (this is how the element gets chosen) and the request.
Reimplemented in FormulaElement, SequenceElement, and NameSequence. Definition at line 327 of file basicelement.h. |
|
Set this element attribute, build children and call their buildFromDom.
Definition at line 183 of file basicelement.cc. |
|
Calculates our width and height and our children's parentPosition.
Implemented in BracketElement, OverlineElement, UnderlineElement, FormulaElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, SpaceElement, SymbolElement, TextElement, and EmptyElement. |
|
Moves the cursor away from the given child. The cursor is guaranteed to be inside this element. Reimplemented in SequenceElement. Definition at line 310 of file basicelement.h. |
|
Dispatch this FontCommand to all our TextElement children.
Reimplemented in SingleContentElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, SymbolElement, and TextElement. Definition at line 179 of file basicelement.h. |
|
Draws the whole element including its children. The `parentOrigin' is the point this element's parent starts. We can use our parentPosition to get our own origin then. Implemented in BracketElement, OverlineElement, UnderlineElement, FormulaElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, SpaceElement, SymbolElement, TextElement, and EmptyElement. |
|
The cursor has entered one of our child sequences. This is a good point to tell the user where he is. Reimplemented in BracketElement, OverlineElement, UnderlineElement, FractionElement, IndexElement, MatrixElement, MultilineElement, and RootElement. Definition at line 123 of file basicelement.cc. |
|
Provide fast access to the rootElement for each child.
Reimplemented in FormulaElement. Definition at line 116 of file basicelement.h. |
|
Provide fast access to the rootElement for each child.
Reimplemented in FormulaElement. Definition at line 70 of file basicelement.cc. |
|
Reimplemented in SingleContentElement, IndexElement, NameSequence, SpaceElement, TextElement, and EmptyElement. Definition at line 123 of file basicelement.h. |
|
Returns the child at the cursor.
Reimplemented in IndexElement, SequenceElement, and SymbolElement. Definition at line 296 of file basicelement.h. |
|
Definition at line 169 of file basicelement.cc. |
|
Definition at line 392 of file basicelement.h. |
|
Heiner's test method. Should read MathML... Definition at line 386 of file basicelement.h. |
|
Removes the child. If this was the main child this element might request its own removal. The cursor is the one that caused the removal. It has to be moved to the place any user expects the cursor after that particular element has been removed. Reimplemented in SingleContentElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, NameSequence, and SymbolElement. Definition at line 257 of file basicelement.h. |
|
Returns the tag name of this element type.
Reimplemented in BracketElement, OverlineElement, UnderlineElement, FormulaElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, NameSequence, SpaceElement, SymbolElement, TextElement, and EmptyElement. Definition at line 406 of file basicelement.h. |
|
Reimplemented in BracketElement, FractionElement, NameSequence, and TextElement. Definition at line 129 of file basicelement.h. |
|
Sets the cursor inside this element to its start position. For most elements that is the main child. Reimplemented in MatrixElement, MultilineElement, and SequenceElement. Definition at line 114 of file basicelement.cc. |
|
Sets the cursor and returns the element the point is in. The handled flag shows whether the cursor has been set. This is needed because only the innermost matching element is allowed to set the cursor. Reimplemented in SingleContentElement, BracketElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, and SymbolElement. |
|
Parses the input. It's the container which does create new elements because it owns the undo stack. But only the sequence knows what chars are allowed. Reimplemented in FormulaElement, and SequenceElement. Definition at line 334 of file basicelement.h. |
|
Inserts all new children at the cursor position. Places the cursor according to the direction. The list will be emptied but stays the property of the caller. Reimplemented in FractionElement, IndexElement, MultilineElement, RootElement, SequenceElement, and SymbolElement. Definition at line 271 of file basicelement.h. |
|
Reimplemented in TextElement. Definition at line 134 of file basicelement.h. |
|
Returns wether the element has no more useful children (except its main child) and should therefore be replaced by its main child's content.
Reimplemented in FractionElement, and IndexElement. Definition at line 291 of file basicelement.h. |
|
Enters this element while moving down starting inside the element `from'. Searches for a cursor position inside this element or below it. Reimplemented in SingleContentElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, and SymbolElement. Definition at line 215 of file basicelement.h. |
|
Moves the cursor to the last position in this sequence. (That is behind the last child.) Reimplemented in SequenceElement. Definition at line 227 of file basicelement.h. |
|
Moves the cursor to the first position in this sequence. (That is before the first child.) Reimplemented in SequenceElement. Definition at line 221 of file basicelement.h. |
|
Enters this element while moving to the left starting inside the element `from'. Searches for a cursor position inside this element or to the left of it. Reimplemented in SingleContentElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, and SymbolElement. Definition at line 134 of file basicelement.cc. |
|
Enters this element while moving to the right starting inside the element `from'. Searches for a cursor position inside this element or to the right of it. Reimplemented in SingleContentElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, and SymbolElement. Definition at line 145 of file basicelement.cc. |
|
Enters this element while moving up starting inside the element `from'. Searches for a cursor position inside this element or above it. Reimplemented in SingleContentElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, and SymbolElement. Definition at line 208 of file basicelement.h. |
|
Moves the cursor to a normal place where new elements might be inserted.
Reimplemented in SingleContentElement, IndexElement, MultilineElement, RootElement, SequenceElement, and SymbolElement. Definition at line 155 of file basicelement.cc. |
|
Reads our attributes from the element. Returns false if it failed. Reimplemented in BracketElement, FormulaElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, SpaceElement, SymbolElement, and TextElement. Definition at line 207 of file basicelement.cc. |
|
Reads our content from the node. Sets the node to the next node that needs to be read. Returns false if it failed. Reimplemented in SingleContentElement, FormulaElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, SpaceElement, SymbolElement, and TextElement. Definition at line 217 of file basicelement.cc. |
|
Reimplemented in FormulaElement. Definition at line 64 of file basicelement.cc. |
|
Callback for the tabs among our children. Needed for alignment. Definition at line 316 of file basicelement.h. |
|
Removes all selected children and returns them. Places the cursor to where the children have been. Reimplemented in SingleContentElement, FractionElement, IndexElement, MultilineElement, RootElement, SequenceElement, and SymbolElement. Definition at line 277 of file basicelement.h. |
|
Sets the cursor to select the child. The mark is placed before, the position behind it. Reimplemented in SingleContentElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, and SymbolElement. Definition at line 303 of file basicelement.h. |
|
Sets a new type. This is done during parsing. Reimplemented in NameSequence. Definition at line 397 of file basicelement.h. |
|
Reimplemented in BracketElement, OverlineElement, UnderlineElement, FormulaElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, SpaceElement, SymbolElement, TextElement, and EmptyElement. Definition at line 242 of file basicelement.cc. |
|
Returns our position inside the widget.
Definition at line 98 of file basicelement.cc. |
|
Appends our attributes to the dom element.
Reimplemented in SingleContentElement, BracketElement, FormulaElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, SpaceElement, SymbolElement, and TextElement. Definition at line 199 of file basicelement.cc. |
|
Same as above, just MathML.
Reimplemented in SingleContentElement, BracketElement, OverlineElement, UnderlineElement, FormulaElement, FractionElement, IndexElement, MatrixElement, MultilineElement, RootElement, SequenceElement, NameSequence, SpaceElement, and SymbolElement. Definition at line 177 of file basicelement.cc. |
The documentation for this class was generated from the following files: