Add copyright notice
[forms.git] / F / F_Gpm.H
blob3720165659e6b7e90b39d784f288004b48667497
2  /*
3   *   Copyright (C) 2007, Harbour, All rights reserved.
4   */
6 #ifndef _F_GPM_H_
7 #define _F_GPM_H_
9 #include <F_Input_Device.H>
11 namespace F {
13  class F_Gpm : public F_Input_Device {
15    void *gpm_so;
16    bool visible_;
17    
18  public:
20    F_Gpm();
21    ~F_Gpm();
22    bool check_for_events(F_Event_t *event);
23    bool visible() { return visible_; }
24    void visible(bool v) { redraw(v); }
25    void redraw(bool v);
26    void redraw() { redraw(visible_); }
27  };
30 #endif