TDME2 1.9.121
UIEditorTabController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
17#include <tdme/gui/GUI.h>
18#include <tdme/gui/GUIParser.h>
37
38#include <ext/tinyxml/tinyxml.h>
39
41
42using std::string;
43
53using tdme::gui::GUI;
73
77
78#define AVOID_NULLPTR_STRING(arg) (arg == nullptr?"":arg)
79
80UIEditorTabController::UIEditorTabController(UIEditorTabView* view)
81{
82 this->view = view;
83 this->popUps = view->getPopUps();
84}
85
87}
88
90 return view;
91}
92
94{
95 return screenNode;
96}
97
99{
100 this->screenNode = screenNode;
101}
102
104{
105}
106
108{
109}
110
112{
113}
114
115void UIEditorTabController::showErrorPopUp(const string& caption, const string& message)
116{
117 popUps->getInfoDialogScreenController()->show(caption, message);
118}
119
121{
122 Console::println("UIEditorTabController::onValueChanged(): " + node->getId() + " = " + node->getController()->getValue().getString());
123 if (node->getId() == "selectbox_outliner") {
125 } else
126 if (node->getId() == "dropdown_outliner_add") {
127 auto addOutlinerType = node->getController()->getValue().getString();
128 if (addOutlinerType == "screen") {
129 view->addScreen();
130 view->getEditorView()->reloadTabOutliner(to_string(view->getScreenNodes().size() - 1) + ".0");
131 }
132 } else
133 if (node->getId() == "projectedui_meshnode") {
136 } else
137 if (node->getId() == "projectedui_animation") {
140 }
141}
142
144}
145
147}
148
150 if (node->getId() == "selectbox_outliner") {
151 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
152 if (outlinerNode == "screens") {
153 // clear
155
156 // add screen
157 class OnAddScreenAction: public virtual Action
158 {
159 public:
160 void performAction() override {
161 //
162 class AddScreenAction: public Action {
163 private:
164 UIEditorTabController* uiEditorTabController;
165 public:
166 AddScreenAction(UIEditorTabController* uiEditorTabController):
167 uiEditorTabController(uiEditorTabController) {
168 }
169 virtual void performAction() {
170 auto view = uiEditorTabController->getView();
171 view->addScreen();
172 view->getEditorView()->reloadTabOutliner(to_string(view->getScreenNodes().size() - 1) + ".0");
173 }
174 };
175 Engine::getInstance()->enqueueAction(
176 new AddScreenAction(uiEditorTabController)
177 );
178 }
179 OnAddScreenAction(UIEditorTabController* uiEditorTabController): uiEditorTabController(uiEditorTabController) {
180 }
181 private:
182 UIEditorTabController* uiEditorTabController;
183 };
184 popUps->getContextMenuScreenController()->addMenuItem("Add Screen", "contextmenu_add", new OnAddScreenAction(this));
185
186 // reload screens
187 class OnScreensReloadAction: public virtual Action
188 {
189 public:
190 void performAction() override {
191 //
192 class ReloadScreensAction: public Action {
193 private:
194 UIEditorTabController* uiEditorTabController;
195 public:
196 ReloadScreensAction(UIEditorTabController* uiEditorTabController):
197 uiEditorTabController(uiEditorTabController) {
198 }
199 virtual void performAction() {
200 uiEditorTabController->reloadScreens();
201 }
202 };
203 Engine::getInstance()->enqueueAction(
204 new ReloadScreensAction(uiEditorTabController)
205 );
206 }
207 OnScreensReloadAction(UIEditorTabController* uiEditorTabController): uiEditorTabController(uiEditorTabController) {
208 }
209 private:
210 UIEditorTabController* uiEditorTabController;
211 };
212 popUps->getContextMenuScreenController()->addMenuItem("Reload", "contextmenu_reload", new OnScreensReloadAction(this));
213
214 // show
215 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
216 } else
217 if (StringTools::endsWith(outlinerNode, ".0") == true) {
218 auto screenIdx = Integer::parse(StringTools::substring(outlinerNode, 0, outlinerNode.find(".")));
219
220 // clear
222
223 // remove screen
224 class OnScreenRemoveAction: public virtual Action
225 {
226 public:
227 void performAction() override {
228 //
229 class AddScreenAction: public Action {
230 private:
231 UIEditorTabController* uiEditorTabController;
232 int screenIdx;
233 public:
234 AddScreenAction(UIEditorTabController* uiEditorTabController, int screenIdx):
235 uiEditorTabController(uiEditorTabController),
236 screenIdx(screenIdx) {
237 }
238 virtual void performAction() {
239 auto view = uiEditorTabController->getView();
240 view->removeScreen(screenIdx);
241 view->getEditorView()->reloadTabOutliner(to_string(view->getScreenNodes().size() - 1) + ".0");
242 }
243 };
244 Engine::getInstance()->enqueueAction(
245 new AddScreenAction(uiEditorTabController, screenIdx)
246 );
247 }
248 OnScreenRemoveAction(UIEditorTabController* uiEditorTabController, int screenIdx): uiEditorTabController(uiEditorTabController), screenIdx(screenIdx) {
249 }
250 private:
251 UIEditorTabController* uiEditorTabController;
252 int screenIdx;
253 };
254 popUps->getContextMenuScreenController()->addMenuItem("Remove", "contextmenu_remove", new OnScreenRemoveAction(this, screenIdx));
255
256 // show
257 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
258 }
259 }
260}
261
262void UIEditorTabController::createOutlinerParentNodeNodesXML(TiXmlElement* xmlParentNode, string& xml, int screenIdx, int& nodeIdx) {
263 if (xmlParentNode->FirstChildElement() == nullptr) {
264 auto nodeId = string(AVOID_NULLPTR_STRING(xmlParentNode->Attribute("id")));
265 xml+= "<selectbox-option text=\"<" + GUIParser::escapeQuotes(xmlParentNode->Value()) + ">" + (nodeId.empty() == false?string(" (") + nodeId + ")":"") + "\" value=\"" + to_string(screenIdx) + "." + GUIParser::escapeQuotes(to_string(nodeIdx++)) + "\" />\n";
266 } else {
267 auto nodeId = string(AVOID_NULLPTR_STRING(xmlParentNode->Attribute("id")));
268 xml+= "<selectbox-parent-option text=\"<" + GUIParser::escapeQuotes(xmlParentNode->Value()) + ">" + (nodeId.empty() == false?string(" (") + nodeId + ")":"") + "\" value=\"" + to_string(screenIdx) + "." + GUIParser::escapeQuotes(to_string(nodeIdx++)) + "\" >\n";
269 for (auto* childNode = xmlParentNode->FirstChildElement(); childNode != nullptr; childNode = childNode->NextSiblingElement()) {
270 createOutlinerParentNodeNodesXML(childNode, xml, screenIdx, nodeIdx);
271 }
272 xml+= "</selectbox-parent-option>\n";
273 }
274}
275
277 string xml;
278 xml+= "<selectbox-parent-option text=\"Screens\" value=\"screens\">\n";
279 auto screenIdx = 0;
280 for (auto screenNode: view->getScreenNodes()) {
281 if (screenNode == nullptr) {
282 xml+= "<selectbox-option text=\"<screen>\" value=\"" + to_string(screenIdx) + ".0\" />\n";
283 screenIdx++;
284 continue;
285 }
286 try {
287 auto screenXML = FileSystem::getInstance()->getContentAsString(
288 Tools::getPathName(screenNode->getFileName()),
289 Tools::getFileName(screenNode->getFileName())
290 );
291 TiXmlDocument xmlDocument;
292 xmlDocument.Parse(screenXML.c_str());
293 if (xmlDocument.Error() == true) {
294 auto message = string("UIEditorTabController::setOutlinerContent(): Could not parse XML. Error='") + string(xmlDocument.ErrorDesc()) + "':\n\n" + screenXML;
295 Console::println(message);
296 throw GUIParserException(message);
297 }
298 TiXmlElement* xmlRoot = xmlDocument.RootElement();
299 int nodeIdx = 0;
300 createOutlinerParentNodeNodesXML(xmlRoot, xml, screenIdx, nodeIdx);
301 } catch (Exception& exception) {
302 showErrorPopUp("Warning", (string(exception.what())));
303 }
304 screenIdx++;
305 }
306 xml+= "</selectbox-parent-option>\n";
308}
309
312 string("<dropdown-option text=\"Screen\" value=\"screen\" />\n")
313 );
314}
315
316void UIEditorTabController::updateDetails(const string& outlinerNode) {
317 if (outlinerNode == "screens") {
319 } else
320 if (StringTools::endsWith(outlinerNode, ".0") == true) {
322 } else {
324 }
325}
326
329 string("<template id=\"details_screen\" src=\"resources/engine/gui/template_details_screen.xml\" />\n")
330 );
331
332 try {
333 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_screen"))->getActiveConditions().add("open");
334 } catch (Exception& exception) {
335 Console::println(string("UIEditorTabController::updateScreenDetails(): An error occurred: ") + exception.what());;
336 showErrorPopUp("Warning", (string(exception.what())));
337 }
338}
339
342 string("<template id=\"details_screens\" src=\"resources/engine/gui/template_details_projectedui.xml\" />\n")
343 );
344
345 //
346 try {
347 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_screens"))->getActiveConditions().add("open");
348 required_dynamic_cast<GUIImageNode*>(screenNode->getNodeById("projectedui_prototype"))->setSource(prototypeFileName);
349 } catch (Exception& exception) {
350 Console::println(string("UIEditorTabController::updateScreensDetails(): An error occurred: ") + exception.what());;
351 showErrorPopUp("Warning", (string(exception.what())));
352 }
353
354 //
355 auto model = view->getPrototype() != nullptr?view->getPrototype()->getModel():nullptr;
356
357 {
358 string modelMeshNodesXML;
359 modelMeshNodesXML =
360 modelMeshNodesXML +
361 "<dropdown-option text=\"<None>\" value=\"\" " + (modelMeshNodesXML.empty() == true?"selected=\"true\" ":"") + " />\n";
362 if (model != nullptr) {
363 for (auto& it: model->getNodes()) {
364 auto& nodeId = it.second->getId();
365 modelMeshNodesXML+=
366 "<dropdown-option text=\"" +
367 GUIParser::escapeQuotes(nodeId) +
368 "\" value=\"" +
369 GUIParser::escapeQuotes(nodeId) +
370 "\" " +
371 (modelMeshNodesXML == nodeId?"selected=\"true\" ":"") +
372 " />\n";
373 }
374 }
375 try {
376 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById("projectedui_meshnode_scrollarea"))->replaceSubNodes(modelMeshNodesXML, true);
377 } catch (Exception& exception) {
378 Console::print(string("UIEditorTabController::updateScreensDetails(): An error occurred: "));
379 Console::println(string(exception.what()));
380 }
381 }
382
383 {
384 string animationsXML;
385 animationsXML = animationsXML + "<dropdown-option text=\"<No animation>\" value=\"\" selected=\"true\" />";
386 if (model != nullptr) {
387 for (auto it: model->getAnimationSetups()) {
388 auto animationSetup = it.second;
389 if (animationSetup->isOverlayAnimationSetup() == true) continue;
390 animationsXML =
391 animationsXML + "<dropdown-option text=\"" +
392 GUIParser::escapeQuotes(animationSetup->getId()) +
393 "\" value=\"" +
394 GUIParser::escapeQuotes(animationSetup->getId()) +
395 "\" " +
396 " />\n";
397 }
398 }
399 try {
400 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById("projectedui_animation_scrollarea"))->replaceSubNodes(animationsXML, true);
401 } catch (Exception& exception) {
402 Console::print(string("ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
403 Console::println(string(exception.what()));
404 }
405 }
406}
407
409 class OnLoadScreen: public virtual Action
410 {
411 public:
412 void performAction() override {
413 //
414 class LoadScreenAction: public Action {
415 private:
416 UIEditorTabController* uiEditorTabController;
417 int screenIdx;
418 string pathName;
419 string fileName;
420 public:
421 LoadScreenAction(UIEditorTabController* uiEditorTabController, int screenIdx, const string& pathName, const string& fileName):
422 uiEditorTabController(uiEditorTabController),
423 screenIdx(screenIdx),
424 pathName(pathName),
425 fileName(fileName) {
426 }
427 virtual void performAction() {
428 auto view = uiEditorTabController->getView();
429 view->unsetScreen(screenIdx);
430 try {
431 view->setScreen(screenIdx, GUIParser::parse(pathName, fileName));
432 } catch (Exception& exception) {
433 Console::println(
434 string() +
435 "UIEditorTabController::onLoadScreen(): ReloadScreensAction::performAction(): An error occurred: " + exception.what()
436 );
437 }
439 view->getEditorView()->reloadTabOutliner(to_string(screenIdx) + ".0");
440 }
441 };
442 Engine::getInstance()->enqueueAction(
443 new LoadScreenAction(
444 uiEditorTabController,
445 screenIdx,
446 uiEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
447 uiEditorTabController->popUps->getFileDialogScreenController()->getFileName()
448 )
449 );
450 uiEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
451 }
452
453 /**
454 * Public constructor
455 * @param uiEditorTabController UI editor tab controller
456 * @param screenIdx screen index
457 */
458 OnLoadScreen(UIEditorTabController* uiEditorTabController, int screenIdx)
459 : uiEditorTabController(uiEditorTabController), screenIdx(screenIdx) {
460 }
461
462 private:
463 UIEditorTabController* uiEditorTabController;
464 int screenIdx;
465 };
466
467 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
468 auto screenIdx = Integer::parse(StringTools::substring(outlinerNode, 0, outlinerNode.find(".")));
469 if (screenIdx < 0 || screenIdx >= view->getScreenNodes().size()) return;
470 auto screenNode = view->getScreenNodes()[screenIdx];
471 auto pathName = screenNode != nullptr?Tools::getPathName(screenNode->getFileName()):string();
472 auto fileName = screenNode != nullptr?Tools::getFileName(screenNode->getFileName()):string();
474 pathName,
475 "Load screen from: ",
476 { { "xml" } },
477 fileName,
478 true,
479 new OnLoadScreen(this, screenIdx)
480 );
481}
482
484 //
485 class UnsetScreenAction: public Action {
486 private:
487 UIEditorTabController* uiEditorTabController;
488 int screenIdx;
489 public:
490 UnsetScreenAction(UIEditorTabController* uiEditorTabController, int screenIdx):
491 uiEditorTabController(uiEditorTabController),
492 screenIdx(screenIdx) {
493 }
494 virtual void performAction() {
495 auto view = uiEditorTabController->getView();
496 view->unsetScreen(screenIdx);
498 view->getEditorView()->reloadTabOutliner(to_string(screenIdx) + ".0");
499 }
500 };
501 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
502 auto screenIdx = Integer::parse(StringTools::substring(outlinerNode, 0, outlinerNode.find(".")));
503 if (screenIdx < 0 || screenIdx >= view->getScreenNodes().size()) return;
504 Engine::getInstance()->enqueueAction(
505 new UnsetScreenAction(
506 this,
507 screenIdx
508 )
509 );
510}
511
513 //
514 class ReloadScreensAction: public Action {
515 private:
516 UIEditorTabController* uiEditorTabController;
517 public:
518 ReloadScreensAction(UIEditorTabController* uiEditorTabController):
519 uiEditorTabController(uiEditorTabController) {
520 //
521 }
522 virtual void performAction() {
523 auto view = uiEditorTabController->getView();
524 for (auto screenIdx = 0; screenIdx < view->getScreenNodes().size(); screenIdx++) {
525 auto screenNode = view->getScreenNodes()[screenIdx];
526 if (screenNode == nullptr) continue;
527 auto fileName = screenNode->getFileName();
528 view->unsetScreen(screenIdx);
529 try {
531 screenIdx,
532 GUIParser::parse(
533 Tools::getPathName(fileName),
534 Tools::getFileName(fileName)
535 )
536 );
537 } catch (Exception& exception) {
538 Console::println(
539 string() +
540 "UIEditorTabController::onLoadScreen(): ReloadScreensAction::performAction(): An error occurred: " + exception.what()
541 );
542 }
543 }
545 view->getEditorView()->reloadTabOutliner("screens");
546 }
547 };
548 Engine::getInstance()->enqueueAction(new ReloadScreensAction(this));
549}
550
552 Console::println("UIEditorTabController::onLoadPrototype()");
553 class OnLoadPrototype: public virtual Action
554 {
555 public:
556 void performAction() override {
557 //
558 class LoadPrototypeAction: public Action {
559 private:
560 UIEditorTabController* uiEditorTabController;
561 string pathName;
562 string fileName;
563 public:
564 LoadPrototypeAction(UIEditorTabController* uiEditorTabController, const string& pathName, const string& fileName):
565 uiEditorTabController(uiEditorTabController),
566 pathName(pathName),
567 fileName(fileName) {
568 }
569 virtual void performAction() {
570 auto view = uiEditorTabController->getView();
571 if (view->loadPrototype(pathName, fileName, uiEditorTabController->prototypeMeshNode, uiEditorTabController->prototypeMeshAnimation) != nullptr) {
572 uiEditorTabController->prototypeFileName = pathName + "/" + fileName;
574 view->getEditorView()->reloadTabOutliner("screens");
575 }
576 }
577 };
578 Engine::getInstance()->enqueueAction(
579 new LoadPrototypeAction(
580 uiEditorTabController,
581 uiEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
582 uiEditorTabController->popUps->getFileDialogScreenController()->getFileName()
583 )
584 );
585 uiEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
586 }
587
588 /**
589 * Public constructor
590 * @param uiEditorTabController UI editor tab controller
591 */
592 OnLoadPrototype(UIEditorTabController* uiEditorTabController): uiEditorTabController(uiEditorTabController) {
593 }
594
595 private:
596 UIEditorTabController* uiEditorTabController;
597 };
598
599 //
600 auto pathName = screenNode != nullptr?Tools::getPathName(prototypeFileName):string();
601 auto fileName = screenNode != nullptr?Tools::getFileName(prototypeFileName):string();
603 pathName,
604 "Load prototype from: ",
605 { "tmodel" },
606 fileName,
607 true,
608 new OnLoadPrototype(this)
609 );
610}
611
613 Console::println("UIEditorTabController::onRemoveModel()");
614 //
615 class RemovePrototypeAction: public Action {
616 private:
617 UIEditorTabController* uiEditorTabController;
618 public:
619 RemovePrototypeAction(UIEditorTabController* uiEditorTabController): uiEditorTabController(uiEditorTabController) {
620 }
621 virtual void performAction() {
622 auto view = uiEditorTabController->getView();
625 view->getEditorView()->reloadTabOutliner("screens");
626 }
627 };
628 Engine::getInstance()->enqueueAction(new RemovePrototypeAction(this));
629}
630
632{
633 if (type != GUIActionListenerType::PERFORMED) return;
634 Console::println("UIEditorTabController::onActionPerformed(): " + node->getId());
635 if (node->getId() == "screen_open") {
636 onLoadScreen();
637 } else
638 if (node->getId() == "screen_remove") {
640 } else
641 if (node->getId() == "screen_browseto") {
642 // TODO
643 } else
644 if (node->getId() == "projectedui_prototype_open") {
646 } else
647 if (node->getId() == "projectedui_prototype_remove") {
649 }
650}
#define AVOID_NULLPTR_STRING(arg)
Engine main class.
Definition: Engine.h:122
Representation of a 3d model.
Definition: Model.h:32
const string & getId()
Definition: Model.h:119
Model node.
Definition: Node.h:31
GUI parser.
Definition: GUIParser.h:39
GUI module class.
Definition: GUI.h:66
GUI node controller base class.
virtual const MutableString & getValue()=0
const string & getId()
Definition: GUINode.h:329
GUINodeController * getController()
Definition: GUINode.h:586
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
GUINode * getInnerNodeById(const string &nodeId)
Get inner GUI node by id.
File system singleton class.
Definition: FileSystem.h:14
void addMenuItem(const string &text, const string &id, Action *action=nullptr)
Add menu item.
void show(const string &cwd, const string &captionText, const vector< string > &extensions, const string &fileName, bool enableFilter, Action *applyAction, Action *cancelAction=nullptr, const string &settingsFileName=".filedialog.properties", const string &settingsPathName=string())
Shows the file dialog pop up.
void show(const string &caption, const string &message)
Shows the pop up.
Pop ups controller accessor class.
Definition: PopUps.h:19
FileDialogScreenController * getFileDialogScreenController()
Definition: PopUps.h:42
ContextMenuScreenController * getContextMenuScreenController()
Definition: PopUps.h:70
InfoDialogScreenController * getInfoDialogScreenController()
Definition: PopUps.h:49
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void onUnfocus(GUIElementNode *node) override
On unfocus.
void onValueChanged(GUIElementNode *node) override
On value changed.
void updateDetails(const string &outlinerNode)
Update details panel.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void onFocus(GUIElementNode *node) override
On focus.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void initialize(GUIScreenNode *screenNode) override
Init.
void createOutlinerParentNodeNodesXML(TiXmlElement *xmlParentNode, string &xml, int screenIdx, int &nodeIdx)
Create outliner GUI parent node nodes xml.
Prototype * loadPrototype(const string &pathName, const string &fileName, const string &modelMeshNode, const string &modelMeshAnimation)
Load prototype.
void setModelMeshAnimation(const string &modelMeshAnimation)
Set model mesh animation.
void removeScreen(int screenIdx)
Remove screen.
void setScreen(int screenIdx, GUIScreenNode *screenNode)
Set screen.
void unsetScreen(int screenIdx)
Unset screen.
const vector< GUIScreenNode * > & getScreenNodes()
void setModelMeshNode(const string &modelMeshNode)
Set model mesh node.
void setOutlinerAddDropDownContent(const string &xml)
Set outliner add drop down content.
Definition: EditorView.cpp:214
void setOutlinerContent(const string &xml)
Set outliner content.
Definition: EditorView.cpp:210
void setDetailsContent(const string &xml)
Set details content.
Definition: EditorView.cpp:218
EditorScreenController * getScreenController()
Definition: EditorView.h:57
void reloadTabOutliner(const string &newSelectionValue=string())
Reload tab outliner.
Definition: EditorView.cpp:222
Console class.
Definition: Console.h:26
Exception base class.
Definition: ExceptionBase.h:20
Integer class.
Definition: Integer.h:26
Mutable string class.
Definition: MutableString.h:16
const string & getString() const
String tools class.
Definition: StringTools.h:20
An attribute is a name-value pair.
Definition: tinyxml.h:734
Always the top level node.
Definition: tinyxml.h:1317
virtual const char * Parse(const char *p, TiXmlParsingData *data=0, TiXmlEncoding encoding=TIXML_DEFAULT_ENCODING)
Parse the given null terminated block of xml data.
const TiXmlElement * RootElement() const
Get the root element – the only top level element – of the document.
Definition: tinyxml.h:1371
const char * ErrorDesc() const
Contains a textual (english) description of the error if one occurs.
Definition: tinyxml.h:1382
bool Error() const
If an error occurs, Error will be set to true.
Definition: tinyxml.h:1379
The element is a container class.
Definition: tinyxml.h:886
const char * Attribute(const char *name) const
Given an attribute name, Attribute() returns the value for the attribute of that name,...
Definition: tinyxml.cpp:564
const TiXmlElement * NextSiblingElement() const
Convenience function to get through elements.
Definition: tinyxml.cpp:471
const char * Value() const
The meaning of 'value' changes for the specific type of TiXmlNode.
Definition: tinyxml.h:457
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cpp:441
std::exception Exception
Exception base class.
Definition: Exception.h:19
Tab controller, which connects UI with logic.
Definition: TabController.h:23
Action Interface.
Definition: Action.h:12