extensions to frame

This commit is contained in:
Peter Schojer
2008-09-09 05:59:23 +00:00
parent ab06f0a999
commit 1fe9732a5c
4 changed files with 43 additions and 11 deletions

View File

@@ -99,6 +99,8 @@ void FrameRenderer::writeProperties(const Frame* pFrame, std::ostream& ostr)
ostr << ",height:" << pFrame->getHeight();
if (!pFrame->getTitle().empty())
ostr << ",title:'" << pFrame->getTitle() << "'";
if (pFrame->collapsible())
ostr << ",collapsible:true";
}