MyGUI  3.2.0
MyGUI_DeprecatedTypes.h
Go to the documentation of this file.
1 
6 /*
7  This file is part of MyGUI.
8 
9  MyGUI is free software: you can redistribute it and/or modify
10  it under the terms of the GNU Lesser General Public License as published by
11  the Free Software Foundation, either version 3 of the License, or
12  (at your option) any later version.
13 
14  MyGUI is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  GNU Lesser General Public License for more details.
18 
19  You should have received a copy of the GNU Lesser General Public License
20  along with MyGUI. If not, see <http://www.gnu.org/licenses/>.
21 */
22 #ifndef __MYGUI_DEPRECATED_TYPES_H__
23 #define __MYGUI_DEPRECATED_TYPES_H__
24 
25 namespace MyGUI
26 {
27  template <typename Type>
29  {
30  public:
31  };
32 
33 #ifndef MYGUI_DONT_USE_OBSOLETE
34 
35  typedef Widget* WidgetPtr;
36  typedef Button* ButtonPtr;
37  typedef Window* WindowPtr;
39  typedef TabItem* TabItemPtr;
40  typedef ItemBox* ItemBoxPtr;
43  typedef MenuBar* MenuBarPtr;
46  typedef Canvas* CanvasPtr;
47 
48  class HScroll;
49  typedef HScroll* HScrollPtr;
50 
51  class VScroll;
52  typedef VScroll* VScrollPtr;
53 
54  typedef TabItem Sheet;
55  typedef TabItem* SheetPtr;
56 
57  typedef Canvas RenderBox;
58  typedef Canvas* RenderBoxPtr;
59 
62 
65 
68 
69  typedef ListBox List;
70  typedef List* ListPtr;
71 
72  typedef EditBox Edit;
73  typedef Edit* EditPtr;
74 
75  typedef TabControl Tab;
76  typedef Tab* TabPtr;
77 
80 
83 
84 #endif // MYGUI_DONT_USE_OBSOLETE
85 
86 } // namespace MyGUI
87 
88 #endif // __MYGUI_DEPRECATED_TYPES_H__