MyGUI  3.2.1
MyGUI_DeprecatedTypes.h
Go to the documentation of this file.
1 /*
2  * This source file is part of MyGUI. For the latest info, see http://mygui.info/
3  * Distributed under the MIT License
4  * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5  */
6 
7 #ifndef __MYGUI_DEPRECATED_TYPES_H__
8 #define __MYGUI_DEPRECATED_TYPES_H__
9 
10 namespace MyGUI
11 {
12  template <typename Type>
14  {
15  public:
16  };
17 
18 #ifndef MYGUI_DONT_USE_OBSOLETE
19 
20  typedef Widget* WidgetPtr;
21  typedef Button* ButtonPtr;
22  typedef Window* WindowPtr;
24  typedef TabItem* TabItemPtr;
25  typedef ItemBox* ItemBoxPtr;
28  typedef MenuBar* MenuBarPtr;
31  typedef Canvas* CanvasPtr;
32 
33  class HScroll;
34  typedef HScroll* HScrollPtr;
35 
36  class VScroll;
37  typedef VScroll* VScrollPtr;
38 
39  typedef TabItem Sheet;
40  typedef TabItem* SheetPtr;
41 
42  typedef Canvas RenderBox;
43  typedef Canvas* RenderBoxPtr;
44 
47 
50 
53 
54  typedef ListBox List;
55  typedef List* ListPtr;
56 
57  typedef EditBox Edit;
58  typedef Edit* EditPtr;
59 
60  typedef TabControl Tab;
61  typedef Tab* TabPtr;
62 
65 
68 
69 #endif // MYGUI_DONT_USE_OBSOLETE
70 
71 } // namespace MyGUI
72 
73 #endif // __MYGUI_DEPRECATED_TYPES_H__