bwidgets/inc/basic_widgets/w/feat/keyboard_handler.hpp

35 lines
853 B
C++
Raw Normal View History

2021-08-06 14:22:56 +02:00
#ifndef BWIDGETS_KEYBOARD_HANDLER
#define BWIDGETS_KEYBOARD_HANDLER
2021-07-10 19:55:53 +02:00
#include <basic_widgets/w/feat/focus_handler.hpp>
2021-07-10 19:55:53 +02:00
struct SDL_KeyboardEvent;
struct SDL_TextInputEvent;
2021-08-06 14:22:56 +02:00
namespace bwidgets
2021-07-10 19:55:53 +02:00
{
class KeyboardHandler : public virtual FocusHandler
2021-07-10 19:55:53 +02:00
{
protected:
virtual void _handle_key(const SDL_KeyboardEvent&) = 0;
virtual void _handle_text_input(const SDL_TextInputEvent&) = 0;
2021-07-10 19:55:53 +02:00
public:
2021-08-06 14:22:56 +02:00
virtual inline auto handle_keyboard(const SDL_KeyboardEvent& ev)
-> KeyboardHandler* final
{
if (_has_focus) _handle_key(ev);
2021-08-06 14:22:56 +02:00
return this;
}
2021-07-10 19:55:53 +02:00
2021-08-06 14:22:56 +02:00
virtual inline auto handle_keyboard(const SDL_TextInputEvent& ev)
-> KeyboardHandler* final
{
if (_has_focus) _handle_text_input(ev);
2021-08-06 14:22:56 +02:00
return this;
}
2021-07-10 19:55:53 +02:00
};
}
#endif