TDME2
1.9.121
src
tdme
tools
editor
tabcontrollers
TabController.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
tdme/tdme.h
>
4
#include <
tdme/gui/events/GUIActionListener.h
>
5
#include <
tdme/gui/events/GUIChangeListener.h
>
6
#include <
tdme/gui/events/GUIContextMenuRequestListener.h
>
7
#include <
tdme/gui/events/GUIFocusListener.h
>
8
#include <
tdme/gui/nodes/fwd-tdme.h
>
9
#include <
tdme/tools/editor/tabcontrollers/fwd-tdme.h
>
10
11
using
tdme::gui::events::GUIActionListener
;
12
using
tdme::gui::events::GUIChangeListener
;
13
using
tdme::gui::events::GUIContextMenuRequestListener
;
14
using
tdme::gui::events::GUIFocusListener
;
15
using
tdme::gui::nodes::GUIScreenNode
;
16
17
/**
18
* Tab controller, which connects UI with logic
19
* @author Andreas Drewke
20
* @version $Id$
21
*/
22
struct
tdme::tools::editor::tabcontrollers::TabController
:
public
GUIActionListener
,
public
GUIChangeListener
,
public
GUIFocusListener
,
public
GUIContextMenuRequestListener
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
// ???
40
virtual
GUIScreenNode
*
getScreenNode
() = 0;
41
42
/**
43
* Save
44
*/
45
virtual
void
save
() = 0;
46
47
/**
48
* Save
49
*/
50
virtual
void
saveAs
() = 0;
51
52
};
GUIActionListener.h
GUIChangeListener.h
GUIContextMenuRequestListener.h
GUIFocusListener.h
tdme::gui::nodes::GUIScreenNode
GUI screen node that represents a screen that can be rendered via GUI system.
Definition:
GUIScreenNode.h:57
fwd-tdme.h
tdme::gui::events::GUIActionListener
GUI action listener interface.
Definition:
GUIActionListener.h:26
tdme::gui::events::GUIChangeListener
GUI change listener interface.
Definition:
GUIChangeListener.h:15
tdme::gui::events::GUIContextMenuRequestListener
GUI context menu request listener.
Definition:
GUIContextMenuRequestListener.h:15
tdme::gui::events::GUIFocusListener
GUI focus listener interface.
Definition:
GUIFocusListener.h:15
tdme::tools::editor::tabcontrollers::TabController
Tab controller, which connects UI with logic.
Definition:
TabController.h:23
tdme::tools::editor::tabcontrollers::TabController::saveAs
virtual void saveAs()=0
Save.
tdme::tools::editor::tabcontrollers::TabController::~TabController
virtual ~TabController()
Destructor.
Definition:
TabController.h:27
tdme::tools::editor::tabcontrollers::TabController::save
virtual void save()=0
Save.
tdme::tools::editor::tabcontrollers::TabController::initialize
virtual void initialize(GUIScreenNode *screenNode)=0
Init.
tdme::tools::editor::tabcontrollers::TabController::getScreenNode
virtual GUIScreenNode * getScreenNode()=0
tdme::tools::editor::tabcontrollers::TabController::dispose
virtual void dispose()=0
Dispose.
tdme.h
fwd-tdme.h
Generated by
1.9.3