repo.or.cz
/
forms.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix default ui start
[forms.git]
/
F
/
F_Gpm.H
blob
18a86a937b7ab2bdb0032eba124172a5fe41b6f8
1
2
#ifndef _F_GPM_H_
3
#define _F_GPM_H_
4
5
#include <F_Input_Device.H>
6
7
namespace F {
8
9
class F_Gpm : public F_Input_Device {
10
11
void *gpm_so;
12
bool visible_;
13
14
public:
15
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
};
24
}
25
26
#endif