1 /*! 2 @file 3 @author Albert Semenov 4 @date 10/2008 5 */ 6 #ifndef INFORMATION_WINDOW_H_ 7 #define INFORMATION_WINDOW_H_ 8 9 #include <MyGUI.h> 10 #include "BaseLayout/BaseLayout.h" 11 12 namespace demo 13 { 14 15 class InformationWindow : 16 public wraps::BaseLayout 17 { 18 public: 19 InformationWindow(MyGUI::Widget* _parent); 20 virtual ~InformationWindow(); 21 22 private: 23 void notifyFrameStart(float _time); 24 int getRand(int _min, int _max); 25 26 private: 27 MyGUI::EditBox* mInfo; 28 MyGUI::Widget* mFocus; 29 }; 30 31 } // namespace demo 32 33 #endif // INFORMATION_WINDOW_H_ 34