forked from thjaeger/easystroke
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgesture.h
164 lines (145 loc) · 5.53 KB
/
gesture.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
* Copyright (c) 2008-2009, Thomas Jaeger <ThJaeger@gmail.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef __GESTURE_H__
#define __GESTURE_H__
#include "stroke.h"
#include <gdkmm.h>
#include <vector>
#include <boost/shared_ptr.hpp>
#include <boost/serialization/access.hpp>
#include <boost/serialization/version.hpp>
#include <boost/serialization/split_member.hpp>
#include <boost/serialization/nvp.hpp>
#include <X11/X.h>
#define STROKE_SIZE 64
class Stroke;
class PreStroke;
typedef boost::shared_ptr<Stroke> RStroke;
typedef boost::shared_ptr<PreStroke> RPreStroke;
struct Triple {
float x;
float y;
Time t;
};
typedef boost::shared_ptr<Triple> RTriple;
void update_triple(RTriple e, float x, float y, Time t);
RTriple create_triple(float x, float y, Time t);
class PreStroke;
class Stroke {
friend class PreStroke;
friend class boost::serialization::access;
friend class Stats;
public:
struct Point {
double x;
double y;
Point operator+(const Point &p) {
Point sum = { x + p.x, y + p.y };
return sum;
}
Point operator-(const Point &p) {
Point sum = { x - p.x, y - p.y };
return sum;
}
Point operator*(const double a) {
Point product = { x * a, y * a };
return product;
}
template<class Archive> void serialize(Archive & ar, const unsigned int version) {
ar & boost::serialization::make_nvp("x", x);
ar & boost::serialization::make_nvp("y", y);
if (version == 0) {
double time;
ar & boost::serialization::make_nvp("time", time);
}
}
};
private:
Stroke(PreStroke &s, int trigger_, int button_, unsigned int modifiers_, bool timeout_);
Glib::RefPtr<Gdk::Pixbuf> draw_(int size, double width = 2.0, bool inv = false) const;
mutable Glib::RefPtr<Gdk::Pixbuf> pb[2];
static Glib::RefPtr<Gdk::Pixbuf> drawEmpty_(int);
static Glib::RefPtr<Gdk::Pixbuf> pbEmpty;
BOOST_SERIALIZATION_SPLIT_MEMBER()
template<class Archive> void load(Archive & ar, const unsigned int version);
template<class Archive> void save(Archive & ar, const unsigned int version) const;
public:
int trigger;
int button;
unsigned int modifiers;
bool timeout;
boost::shared_ptr<stroke_t> stroke;
Stroke() : trigger(0), button(0), modifiers(AnyModifier), timeout(false) {}
static RStroke create(PreStroke &s, int trigger_, int button_, unsigned int modifiers_, bool timeout_) {
return RStroke(new Stroke(s, trigger_, button_, modifiers_, timeout_));
}
Glib::RefPtr<Gdk::Pixbuf> draw(int size, double width = 2.0, bool inv = false) const;
void draw(Cairo::RefPtr<Cairo::Surface> surface, int x, int y, int w, int h, double width = 2.0, bool inv = false) const;
void draw_svg(std::string filename) const;
bool show_icon();
static RStroke trefoil();
static int compare(RStroke, RStroke, double &);
static Glib::RefPtr<Gdk::Pixbuf> drawEmpty(int);
static Glib::RefPtr<Gdk::Pixbuf> drawDebug(RStroke, RStroke, int);
unsigned int size() const { return stroke ? stroke_get_size(stroke.get()) : 0; }
bool trivial() const { return size() == 0 && button == 0; }
Point points(int n) const { Point p; stroke_get_point(stroke.get(), n, &p.x, &p.y); return p; }
double time(int n) const { return stroke_get_time(stroke.get(), n); }
bool is_timeout() const { return timeout; }
};
BOOST_CLASS_VERSION(Stroke, 5)
BOOST_CLASS_VERSION(Stroke::Point, 1)
class PreStroke : public std::vector<RTriple> {
public:
static RPreStroke create() { return RPreStroke(new PreStroke()); }
void add(RTriple p) { push_back(p); }
bool valid() const { return size() > 2; }
};
#include "prefdb.h"
template<class Archive> void Stroke::save(Archive & ar, const unsigned int version) const {
std::vector<Point> ps;
for (unsigned int i = 0; i < size(); i++)
ps.push_back(points(i));
ar & boost::serialization::make_nvp("points", ps);
ar & boost::serialization::make_nvp("button", button);
ar & boost::serialization::make_nvp("trigger", trigger);
ar & boost::serialization::make_nvp("timeout", timeout);
ar & boost::serialization::make_nvp("modifiers", modifiers);
}
template<class Archive> void Stroke::load(Archive & ar, const unsigned int version) {
std::vector<Point> ps;
ar & boost::serialization::make_nvp("points", ps);
if (ps.size()) {
stroke_t *s = stroke_alloc(ps.size());
for (std::vector<Point>::iterator i = ps.begin(); i != ps.end(); ++i)
stroke_add_point(s, i->x, i->y);
stroke_finish(s);
stroke.reset(s, &stroke_free);
}
if (version == 0) return;
ar & boost::serialization::make_nvp("button", button);
if (version >= 2)
ar & boost::serialization::make_nvp("trigger", trigger);
if (version < 4 && (!button || trigger == (int)prefs.button.get().button))
trigger = 0;
if (version < 3)
return;
ar & boost::serialization::make_nvp("timeout", timeout);
if (version < 5)
return;
ar & boost::serialization::make_nvp("modifiers", modifiers);
}
#endif