#ifndef _GTK_ISKEYSPRESSED_HPP_ #define _GTK_ISKEYSPRESSED_HPP_ #include #include "iskeyspressed.hpp" class gtk_hotkeys : public hotkeys { public: gtk_hotkeys(GtkWindow *win_); const std::list& possible_combs(); void set_comb(const std::string& comb); bool is_pressed(); private: GtkWindow *win; gint comb_mask; static std::list posb_combs; }; #endif//!_GTK_ISKEYSPRESSED_HPP_