summaryrefslogtreecommitdiff
path: root/starmath/inc/node.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r--starmath/inc/node.hxx68
1 files changed, 0 insertions, 68 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index 1dc5201700cb..720872aa9932 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -88,9 +88,6 @@ enum SmNodeType
};
-
-
-
class SmNode : public SmRect
{
SmFace maFace;
@@ -230,7 +227,6 @@ private:
};
-
/** A simple auxiliary iterator class for SmNode
*
* Example of iteration over children of pMyNode:
@@ -289,7 +285,6 @@ private:
};
-
/** Abstract baseclass for all composite node
*
* Subclasses of this class can have subnodes. Nodes that doesn't derivate from
@@ -364,9 +359,6 @@ public:
};
-
-
-
class SmGraphicNode : public SmVisibleNode
{
protected:
@@ -380,8 +372,6 @@ public:
};
-
-
/** Draws a rectangle
*
* Used for drawing the line in the OVER and OVERSTRIKE commands.
@@ -405,8 +395,6 @@ public:
};
-
-
/** Polygon line node
*
* Used to draw the slash of the WIDESLASH command by SmBinDiagonalNode.
@@ -432,8 +420,6 @@ public:
};
-
-
/** Text node
*
* @remarks This class also serves as baseclass for all nodes that contains text.
@@ -497,8 +483,6 @@ public:
};
-
-
/** Special node for user defined characters
*
* Node used for pre- and user-defined characters from:
@@ -523,8 +507,6 @@ public:
};
-
-
/** Glyph node for custom operators
*
* This node is used with commands: oper, uoper and boper.
@@ -546,8 +528,6 @@ public:
};
-
-
/** Math symbol node
*
* Use for math symbols such as plus, minus and integral in the INT command.
@@ -576,7 +556,6 @@ public:
};
-
/** Math Identifier
*
* This behaves essentially the same as SmMathSymbolNode and is only used to
@@ -591,7 +570,6 @@ public:
};
-
/** Root symbol node
*
* Root symbol node used by SmRootNode to create the root symbol, in front of
@@ -640,8 +618,6 @@ public:
};
-
-
/** Place node
*
* Used to create the <?> command, that denotes place where something can be
@@ -663,8 +639,6 @@ public:
};
-
-
/** Error node, for parsing errors
*
* This node is used for parsing errors and draws an questionmark turned upside
@@ -685,8 +659,6 @@ public:
};
-
-
/** Table node
*
* This is the root node for the formula tree. This node is also used for the
@@ -714,8 +686,6 @@ public:
};
-
-
/** A line
*
* Used as child of SmTableNode when the SmTableNode is the root node of the
@@ -748,8 +718,6 @@ public:
};
-
-
/** Expression node
*
* Used whenever you have an expression such as "A OVER {B + C}", here there is
@@ -769,8 +737,6 @@ public:
};
-
-
/** Unary horizontal node
*
* The same as SmBinHorNode except this is for unary operators.
@@ -789,8 +755,6 @@ public:
};
-
-
/** Root node
*
* Used for create square roots and other roots, example:
@@ -857,8 +821,6 @@ public:
};
-
-
/** Binary horizontal node
*
* This node is used for binary operators. In a formula such as "A + B".
@@ -891,8 +853,6 @@ public:
};
-
-
/** Binary horizontal node
*
* This node is used for creating the OVER command, consider the formula:
@@ -923,8 +883,6 @@ public:
};
-
-
/** Binary diagonal node
*
* Used for implementing the WIDESLASH command, example: "A WIDESLASH B".
@@ -953,9 +911,6 @@ public:
};
-
-
-
/** Enum used to index sub-/supscripts in the 'aSubNodes' array
* in 'SmSubSupNode'
*
@@ -1036,8 +991,6 @@ public:
};
-
-
/** Node for brace construction
*
* Used for "lbrace [body] rbrace" and similar constructions.
@@ -1073,8 +1026,6 @@ public:
};
-
-
/** Body of an SmBraceNode
*
* This usually only has one child an SmExpressionNode, however, it can also
@@ -1104,8 +1055,6 @@ inline SmBracebodyNode::SmBracebodyNode(const SmToken &rNodeToken) :
}
-
-
/** Node for vertical brace construction
*
* Used to implement commands "[body] underbrace [script]" and
@@ -1142,9 +1091,6 @@ inline SmVerticalBraceNode::SmVerticalBraceNode(const SmToken &rNodeToken) :
}
-
-
-
/** Operation Node
*
* Used for commands like SUM, INT and similar.
@@ -1177,8 +1123,6 @@ public:
};
-
-
/** Node used for alignment
*
* This node has exactly one child at index 0.
@@ -1195,8 +1139,6 @@ public:
};
-
-
/** Attribute node
*
* Used to give an attribute to another node. Used for commands such as:
@@ -1225,8 +1167,6 @@ public:
};
-
-
/** Font node
*
* Used to change the font of its children.
@@ -1255,8 +1195,6 @@ public:
};
-
-
/** Matrix node
*
* Used to implement the MATRIX command, example:
@@ -1287,8 +1225,6 @@ public:
};
-
-
/** Node for whitespace
*
* Used to implement the "~" command. This node is just a blank space.
@@ -1315,9 +1251,6 @@ public:
};
-
-
-
inline SmNode* SmRootNode::Argument()
{
assert( GetNumSubNodes() == 3 );
@@ -1348,7 +1281,6 @@ inline const SmNode* SmRootNode::Body() const
}
-
inline SmDynIntegralSymbolNode* SmDynIntegralNode::Symbol()
{
OSL_ASSERT( GetNumSubNodes() > 0 && GetSubNode( 0 )->GetType() == NDYNINTSYMBOL );