MyGUI  3.4.1
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 
33  void setRepeat(float init, float step);
34 
35  bool addTime(Widget* _widget, float _time) override;
36  void prepareItem(Widget* _widget) override;
37  void setProperty(const std::string& _key, const std::string& _value) override;
38 
40 
45 
46  private:
47  float mInit;
48  float mStep;
49  float mTimeLeft;
50  };
51 
52 }
53 
54 #endif
#define MYGUI_RTTI_DERIVED(DerivedType)
Definition: MyGUI_RTTI.h:48
void prepareItem(Widget *_widget) override
EventHandle_RepeatClick eventRepeatClick
void setProperty(const std::string &_key, const std::string &_value) override
bool addTime(Widget *_widget, float _time) override
delegates::CMultiDelegate2< Widget *, ControllerItem * > EventHandle_RepeatClick
void setRepeat(float init, float step)
widget description should be here.
Definition: MyGUI_Widget.h:37