Otclient  14/8/2020
declarations.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2020 OTClient <https://github.com/edubart/otclient>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22 
23 #ifndef FRAMEWORK_UI_DECLARATIONS_H
24 #define FRAMEWORK_UI_DECLARATIONS_H
25 
26 #include <framework/global.h>
27 
28 class UIManager;
29 class UIWidget;
30 class UITextEdit;
31 class UILayout;
32 class UIBoxLayout;
33 class UIHorizontalLayout;
34 class UIVerticalLayout;
35 class UIGridLayout;
36 class UIAnchor;
37 class UIAnchorGroup;
38 class UIAnchorLayout;
40 
52 
53 typedef std::deque<UIWidgetPtr> UIWidgetList;
54 typedef std::vector<UIAnchorPtr> UIAnchorList;
55 
56 #endif
UILayout
Definition: uilayout.h:31
UIWidget
Definition: uiwidget.h:47
UIParticlesPtr
stdext::shared_object_ptr< UIParticles > UIParticlesPtr
Definition: declarations.h:42
UIParticles
Definition: uiparticles.h:29
UIAnchorGroup
Definition: uianchorlayout.h:46
UIWidgetPtr
stdext::shared_object_ptr< UIWidget > UIWidgetPtr
Definition: declarations.h:39
UIAnchorLayout
Definition: uianchorlayout.h:62
UIAnchorList
std::vector< UIAnchorPtr > UIAnchorList
Definition: declarations.h:54
UITextEdit
Definition: uitextedit.h:29
UIVerticalLayoutPtr
stdext::shared_object_ptr< UIVerticalLayout > UIVerticalLayoutPtr
Definition: declarations.h:47
UIAnchor
Definition: uianchorlayout.h:28
UIHorizontalLayout
Definition: uihorizontallayout.h:28
UIManager
Definition: uimanager.h:32
UIAnchorPtr
stdext::shared_object_ptr< UIAnchor > UIAnchorPtr
Definition: declarations.h:49
UIGridLayout
Definition: uigridlayout.h:29
UIVerticalLayout
Definition: uiverticallayout.h:29
UITextEditPtr
stdext::shared_object_ptr< UITextEdit > UITextEditPtr
Definition: declarations.h:43
UIBoxLayout
Definition: uiboxlayout.h:29
UIAnchorGroupPtr
stdext::shared_object_ptr< UIAnchorGroup > UIAnchorGroupPtr
Definition: declarations.h:50
UILayoutPtr
stdext::shared_object_ptr< UILayout > UILayoutPtr
Definition: declarations.h:44
stdext::shared_object_ptr< UIWidget >
UIGridLayoutPtr
stdext::shared_object_ptr< UIGridLayout > UIGridLayoutPtr
Definition: declarations.h:48
UIBoxLayoutPtr
stdext::shared_object_ptr< UIBoxLayout > UIBoxLayoutPtr
Definition: declarations.h:45
UIAnchorLayoutPtr
stdext::shared_object_ptr< UIAnchorLayout > UIAnchorLayoutPtr
Definition: declarations.h:51
UIHorizontalLayoutPtr
stdext::shared_object_ptr< UIHorizontalLayout > UIHorizontalLayoutPtr
Definition: declarations.h:46
global.h
UIWidgetList
std::deque< UIWidgetPtr > UIWidgetList
Definition: declarations.h:53