MyGUI  3.2.2
MyGUI_ControllerRepeatClick.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_CONTROLLER_REPEATCLICK_H_
8 #define MYGUI_CONTROLLER_REPEATCLICK_H_
9 
10 #include "MyGUI_Prerequest.h"
11 #include "MyGUI_Delegate.h"
12 #include "MyGUI_Types.h"
13 #include "MyGUI_WidgetDefines.h"
14 #include "MyGUI_ControllerItem.h"
15 
16 
17 namespace MyGUI
18 {
19 
22  public ControllerItem
23  {
25 
26  public:
28  virtual ~ControllerRepeatClick();
29 
34  void setRepeat(float init, float step);
35 
36  virtual bool addTime(Widget* _widget, float _time);
37  virtual void prepareItem(Widget* _widget);
38  virtual void setProperty(const std::string& _key, const std::string& _value);
39 
41 
45  EventHandle_RepeatClick eventRepeatClick;
46 
47  private:
48  float mInit;
49  float mStep;
50  float mTimeLeft;
51  };
52 
53 }
54 
55 #endif
Widget properties. Widget_skin_childs Skin childs. Widget widget description should be here...
Definition: MyGUI_Widget.h:29
virtual void prepareItem(Widget *_widget)
EventHandle_RepeatClick eventRepeatClick
#define MYGUI_RTTI_DERIVED(DerivedType)
Definition: MyGUI_RTTI.h:65
virtual void setProperty(const std::string &_key, const std::string &_value)
virtual bool addTime(Widget *_widget, float _time)
void setRepeat(float init, float step)