| 235 | } |
| 236 | |
| 237 | MyGUI::xml::Document* EditorWidgets::savexmlDocument() |
| 238 | { |
| 239 | MyGUI::xml::Document* doc = new MyGUI::xml::Document(); |
| 240 | |
| 241 | doc->createDeclaration(); |
| 242 | MyGUI::xml::ElementPtr root = doc->createRoot("MyGUI"); |
| 243 | root->addAttribute("type", "Layout"); |
| 244 | |
| 245 | saveWidgetsToXmlNode(root); |
| 246 | |
| 247 | return doc; |
| 248 | } |
| 249 | |
| 250 | void EditorWidgets::add(WidgetContainer* _container) |
| 251 | { |