Mouse-panning while pressing button2

This commit is contained in:
Bert
2011-01-29 22:37:40 +01:00
parent 4ab4be31a7
commit c52c4fa69e
6 changed files with 97 additions and 19 deletions

View File

@ -23,6 +23,11 @@
#define CLEANMASK(mask) ((mask) & ~LockMask)
typedef enum win_cur_e {
CURSOR_ARROW = 0,
CURSOR_HAND
} win_cur_t;
typedef struct win_env_s {
Display *dpy;
int scr;
@ -59,4 +64,6 @@ void win_toggle_fullscreen(win_t*);
void win_clear(win_t*);
void win_draw(win_t*);
void win_set_cursor(win_t*, win_cur_t);
#endif /* WINDOW_H */