本文整理汇总了C++中GMLGraphBuilder::setNodeValue方法的典型用法代码示例。如果您正苦于以下问题:C++ GMLGraphBuilder::setNodeValue方法的具体用法?C++ GMLGraphBuilder::setNodeValue怎么用?C++ GMLGraphBuilder::setNodeValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GMLGraphBuilder
的用法示例。
在下文中一共展示了GMLGraphBuilder::setNodeValue方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: addString
bool addString(const string &st,const string &str) {
if (idSet!=-1) {
if (st==LABEL)
graphBuilder->setNodeValue(idSet,"viewLabel",str);
else
graphBuilder->setNodeValue(idSet, st, str);
}
else
nodeAttributeError();
return true;
}
示例2: addBool
bool addBool(const string &st,const bool boolean) {
if (idSet!=-1)
graphBuilder->setNodeValue(idSet,st,boolean);
else
nodeAttributeError();
return true;
}
示例3: addDouble
bool addDouble(const string &st,const double real) {
if (idSet!=-1)
graphBuilder->setNodeValue(idSet, st, real);
else
nodeAttributeError();
return true;
}
示例4: addInt
bool addInt(const string &st,const int id) {
if (st==ID) {
bool result=graphBuilder->addNode(id);
if (result) idSet=id;
else return false;
}
else {
if (idSet!=-1)
graphBuilder->setNodeValue(idSet, st, id);
else
nodeAttributeError();
}
return true;
}
示例5: setColor
void setColor(const Color &color) {
graphBuilder->setNodeValue(idSet,"viewColor",color);
}
示例6: setCoord
void setCoord(const Coord &coord) {
graphBuilder->setNodeValue(idSet,"viewLayout",coord);
}
示例7: setSize
void setSize(const Size &size) {
graphBuilder->setNodeValue(idSet,"viewSize",size);
}