Merge ssh://git@sfinx.od.ua/home/git/Harbour/forms
[forms.git] / F / F_Gpm.H
blob18a86a937b7ab2bdb0032eba124172a5fe41b6f8
2 #ifndef _F_GPM_H_
3 #define _F_GPM_H_
5 #include <F_Input_Device.H>
7 namespace F {
9  class F_Gpm : public F_Input_Device {
11    void *gpm_so;
12    bool visible_;
13    
14  public:
16    F_Gpm();
17    ~F_Gpm();
18    bool check_for_events(F_Event_t *event);
19    bool visible() { return visible_; }
20    void visible(bool v) { redraw(v); }
21    void redraw(bool v);
22    void redraw() { redraw(visible_); }
23  };
26 #endif