MyGUI  3.2.1
MyGUI_PointerManager.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_POINTER_MANAGER_H__
8 #define __MYGUI_POINTER_MANAGER_H__
9 
10 #include "MyGUI_Prerequest.h"
11 #include "MyGUI_Singleton.h"
12 #include "MyGUI_IUnlinkWidget.h"
13 #include "MyGUI_ImageBox.h"
14 #include "MyGUI_IPointer.h"
16 
17 namespace MyGUI
18 {
19 
21  public Singleton<PointerManager>,
22  public IUnlinkWidget,
23  public MemberObsolete<PointerManager>
24  {
25  public:
27 
28  void initialise();
29  void shutdown();
30 
32  void setVisible(bool _visible);
34  bool isVisible() const;
35 
39  void setPointer(const std::string& _name);
41  void resetToDefaultPointer();
42 
44  const std::string& getDefaultPointer() const;
46  void setDefaultPointer(const std::string& _value);
47 
49  const std::string& getLayerName() const;
51  void setLayerName(const std::string& _value);
52 
54  IPointer* getByName(const std::string& _name) const;
55 
56  /*events:*/
62 
63  private:
64  void _unlinkWidget(Widget* _widget);
65  void _load(xml::ElementPtr _node, const std::string& _file, Version _version);
66 
67  // создает виджет
68  Widget* baseCreateWidget(WidgetStyle _style, const std::string& _type, const std::string& _skin, const IntCoord& _coord, Align _align, const std::string& _layer, const std::string& _name);
69 
70  // удяляет неудачника
71  void _destroyChildWidget(Widget* _widget);
72 
73  // удаляет всех детей
74  void _destroyAllChildWidget();
75 
76  void Update();
77 
78  void notifyFrameStart(float _time);
79  void notifyChangeMouseFocus(Widget* _widget);
80  void setPointer(const std::string& _name, Widget* _owner);
81 
82  private:
83  // вектор всех детей виджетов
84  VectorWidgetPtr mWidgetChild;
85 
86  std::string mDefaultName;
87  IntPoint mPoint;
88  IntPoint mOldPoint;
89  bool mVisible;
90  std::string mLayerName;
91  std::string mSkinName;
92 
93  Widget* mWidgetOwner;
94  ImageBox* mMousePointer;
95  IPointer* mPointer;
96  std::string mCurrentMousePointer;
97 
98  bool mIsInitialise;
99  std::string mXmlPointerTagName;
100  std::string mXmlPropertyTagName;
101  std::string mXmlDefaultPointerValue;
102  };
103 
104 } // namespace MyGUI
105 
106 #endif // __MYGUI_POINTER_MANAGER_H__