1 #ifndef HRK_CLICK_EVENT_H
2 #define HRK_CLICK_EVENT_H
22 Pressed = SDL_PRESSED,
23 Released = SDL_RELEASED,
26 explicit Click_event(Uint8 button, state_t state = Pressed);
29 bool is_activated(
void)
const;
30 void set_activated(
bool activate);
33 void check_activated(Uint8 button, state_t state);
40 std::auto_ptr<pImpl> pimpl;
Definition: Click_event.h:16