~fginther/grail/grail-2.0.1.1-oneiric

« back to all changes in this revision

Viewing changes to src/grail-gestures.h

  • Committer: Francis Ginther
  • Date: 2012-08-22 18:35:11 UTC
  • mfrom: (20.2.19 upstream)
  • Revision ID: francis.ginther@canonical.com-20120822183511-yxwny2hixhyu2z42
* New upstream microrelease, bug fixes only
  - Rename project to simply 'grail' (LP: #1040218)
* Updated debian/watch file for project rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
 
62
62
void gru_init_motion(struct grail *ge);
63
63
void gru_motion(struct grail *ge,
64
 
                const struct utouch_frame *frame);
 
64
                const struct oif_frame *frame);
65
65
void gru_event(struct grail *ge, int gid,
66
66
               const struct move_model *move,
67
67
               const grail_prop_t *prop, int nprop);
77
77
};
78
78
 
79
79
int gru_touch(struct grail *ge,
80
 
              const struct utouch_frame *frame);
 
80
              const struct oif_frame *frame);
81
81
int gru_drag(struct grail *ge,
82
 
             const struct utouch_frame *frame);
 
82
             const struct oif_frame *frame);
83
83
int gru_pinch(struct grail *ge,
84
 
              const struct utouch_frame *frame);
 
84
              const struct oif_frame *frame);
85
85
int gru_rotate(struct grail *ge,
86
 
               const struct utouch_frame *frame);
 
86
               const struct oif_frame *frame);
87
87
 
88
88
static inline int out_of_bounds(const struct combo_model *s,
89
89
                                const struct move_model *m)
92
92
}
93
93
 
94
94
int gru_wintouch(struct grail *ge,
95
 
                 const struct utouch_frame *frame);
 
95
                 const struct oif_frame *frame);
96
96
int gru_windrag(struct grail *ge,
97
 
                const struct utouch_frame *frame);
 
97
                const struct oif_frame *frame);
98
98
int gru_winpinch(struct grail *ge,
99
 
                 const struct utouch_frame *frame);
 
99
                 const struct oif_frame *frame);
100
100
int gru_winrotate(struct grail *ge,
101
 
                  const struct utouch_frame *frame);
 
101
                  const struct oif_frame *frame);
102
102
 
103
103
struct tapping_model {
104
104
        grail_time_t start;
109
109
};
110
110
 
111
111
int gru_tapping(struct grail *ge,
112
 
                const struct utouch_frame *frame);
 
112
                const struct oif_frame *frame);
113
113
 
114
114
#endif
115
115