mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-12-24 17:41:39 +08:00
added support for JKQTMathTextNoopNode
This commit is contained in:
parent
cfac5138b3
commit
caf59f12d7
@ -474,6 +474,7 @@ QTreeWidgetItem *TestForm::createTree(JKQTMathTextNode *node, QTreeWidgetItem* p
|
||||
JKQTMathTextEmptyBoxNode* emptyN=dynamic_cast<JKQTMathTextEmptyBoxNode*>(node);
|
||||
JKQTMathTextVerbatimNode* verbN=dynamic_cast<JKQTMathTextVerbatimNode*>(node);
|
||||
JKQTMathTextPhantomNode* phanN=dynamic_cast<JKQTMathTextPhantomNode*>(node);
|
||||
JKQTMathTextNoopNode* noopN=dynamic_cast<JKQTMathTextNoopNode*>(node);
|
||||
|
||||
QTreeWidgetItem* ti=nullptr;
|
||||
if (parent) ti=new QTreeWidgetItem(parent);
|
||||
@ -546,22 +547,14 @@ QTreeWidgetItem *TestForm::createTree(JKQTMathTextNode *node, QTreeWidgetItem* p
|
||||
name=QString("TextNode: \'%1\'").arg(txtN->getText());
|
||||
} else if (emptyN) {
|
||||
name=QString("EmptyBoxNode %1%2 x %3%4").arg(emptyN->getWidth()).arg(JKQTMathTextEmptyBoxNode::Units2String(emptyN->getWidthUnit())).arg(emptyN->getHeight()).arg(JKQTMathTextEmptyBoxNode::Units2String(emptyN->getHeightUnit()));
|
||||
} else if (noopN) {
|
||||
name="NoopNode";
|
||||
} else {
|
||||
name=QString("unknown");
|
||||
name=node->getTypeName();
|
||||
}
|
||||
|
||||
ti->setText(0,name);
|
||||
|
||||
/*
|
||||
QString space="";
|
||||
QTreeWidgetItem* p=ti->parent();
|
||||
while (p) {
|
||||
space+=" ";
|
||||
p=p->parent();
|
||||
}
|
||||
|
||||
qDebug()<<space<<"createTree()";
|
||||
*/
|
||||
|
||||
return ti;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user