Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
IRcpMotion.hpp
Go to the documentation of this file.
1#ifndef LIBS_GUI_IRCPMOTION_HPP_
2#define LIBS_GUI_IRCPMOTION_HPP_
3
5
7{
8public:
9 virtual ~IRcpMotion() = default;
10
11 virtual void isButtonPulsed(CEventMotion *evt) = 0;
12
13 virtual void isButtonReleased(CEventMotion *evt) {};
14 virtual void isKeyPressed(CEventMotion *evt) {};
15 virtual void isMouseMoved(CEventMotion *evt) {};
16};
17
18#endif /* LIBS_GUI_IRCPMOTION_HPP_ */
Definition CEventMotion.hpp:15
Definition IRcpMotion.hpp:7
virtual void isButtonPulsed(CEventMotion *evt)=0
virtual ~IRcpMotion()=default
virtual void isMouseMoved(CEventMotion *evt)
Definition IRcpMotion.hpp:15
virtual void isKeyPressed(CEventMotion *evt)
Definition IRcpMotion.hpp:14
virtual void isButtonReleased(CEventMotion *evt)
Definition IRcpMotion.hpp:13