本文整理汇总了C++中musecore::Xml::strTag方法的典型用法代码示例。如果您正苦于以下问题:C++ Xml::strTag方法的具体用法?C++ Xml::strTag怎么用?C++ Xml::strTag使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类musecore::Xml
的用法示例。
在下文中一共展示了Xml::strTag方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: writeStatus
void TopWin::writeStatus(int level, MusECore::Xml& xml) const
{
xml.tag(level++, "topwin");
// the order of these tags has a certain sense
// changing it won't break muse, but it may break proper
// restoring of the positions
xml.intTag(level, "is_subwin", isMdiWin());
if (mdisubwin)
{
xml.intTag(level, "x", mdisubwin->x());
xml.intTag(level, "y", mdisubwin->y());
xml.intTag(level, "width", mdisubwin->width());
xml.intTag(level, "height", mdisubwin->height());
}
else
{
xml.intTag(level, "x", x());
xml.intTag(level, "y", y());
xml.intTag(level, "width", width());
xml.intTag(level, "height", height());
}
xml.intTag(level, "shares_menu", sharesToolsAndMenu());
if (!sharesToolsAndMenu())
xml.strTag(level, "toolbars", saveState().toHex().data());
else
xml.strTag(level, "toolbars", _savedToolbarState.toHex().data());
xml.tag(level, "/topwin");
}
示例2: writeConfiguration
void Arranger::writeConfiguration(int level, MusECore::Xml& xml)
{
xml.tag(level++, "arranger");
writeCustomColumns(level, xml);
xml.strTag(level, "tlist_header", header->saveState().toHex().constData());
xml.etag(level, "arranger");
}
示例3: writeConfiguration
void TopWin::writeConfiguration(ToplevelType t, int level, MusECore::Xml& xml)
{
if (!initInited)
{
printf ("WARNING: TopWin::writeConfiguration() called although the config hasn't been\n"
" initalized! writing default configuration\n");
initConfiguration();
}
xml.tag(level++, "topwin");
xml.intTag(level, "width", _widthInit[t]);
xml.intTag(level, "height", _heightInit[t]);
xml.strTag(level, "nonshared_toolbars", _toolbarNonsharedInit[t].toHex().data());
xml.strTag(level, "shared_toolbars", _toolbarSharedInit[t].toHex().data());
xml.intTag(level, "shares_when_free", _sharesWhenFree[t]);
xml.intTag(level, "shares_when_subwin", _sharesWhenSubwin[t]);
xml.intTag(level, "default_subwin", _defaultSubwin[t]);
xml.etag(level, "topwin");
}