TDME2 1.9.121
TabController.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
10
16
17/**
18 * Tab controller, which connects UI with logic
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23{
24 /**
25 * Destructor
26 */
27 virtual ~TabController() {}
28
29 /**
30 * Init
31 */
32 virtual void initialize(GUIScreenNode* screenNode) = 0;
33
34 /**
35 * Dispose
36 */
37 virtual void dispose() = 0;
38
39 // ???
41
42 /**
43 * Save
44 */
45 virtual void save() = 0;
46
47 /**
48 * Save
49 */
50 virtual void saveAs() = 0;
51
52};
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUI action listener interface.
GUI change listener interface.
GUI focus listener interface.
Tab controller, which connects UI with logic.
Definition: TabController.h:23
virtual void initialize(GUIScreenNode *screenNode)=0
Init.