summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-08-06 22:32:42 +0200
committerHenrik Rydberg <rydberg@euromail.se>2010-08-06 22:32:42 +0200
commit9a61b96233e3142549322e942de788ec5dfad9ef (patch)
treeffe52f067dd37688f9543e42d249007c1102a637
parent7db9d8d76ff61c4802ac15559dcea6fa54ff567a (diff)
Update README and copyright in all files
Add the author to the copyright, courtesy of Canonical Ltd. Signed-off-by: Henrik Rydberg <rydberg@bitmath.org>
-rw-r--r--COPYING4
-rw-r--r--README16
-rw-r--r--include/grail-bits.h4
-rw-r--r--include/grail-touch.h4
-rw-r--r--include/grail-types.h4
-rw-r--r--include/grail.h4
-rw-r--r--src/evbuf.h2
-rw-r--r--src/gebuf.h4
-rw-r--r--src/gestures-combo.c4
-rw-r--r--src/gestures-pan.c4
-rw-r--r--src/gestures-pinch.c4
-rw-r--r--src/gestures-rotate.c4
-rw-r--r--src/gestures-tapping.c4
-rw-r--r--src/grail-api.c22
-rw-r--r--src/grail-bits.c4
-rw-r--r--src/grail-gestures.c4
-rw-r--r--src/grail-gestures.h4
-rw-r--r--src/grail-inserter.c4
-rw-r--r--src/grail-inserter.h4
-rw-r--r--src/grail-recognizer.c4
-rw-r--r--src/grail-recognizer.h4
-rw-r--r--src/touch-dev.c4
-rw-r--r--src/touch-engine.c4
23 files changed, 57 insertions, 63 deletions
diff --git a/COPYING b/COPYING
index 5581f8b..eee4586 100644
--- a/COPYING
+++ b/COPYING
@@ -1,9 +1,7 @@
1grail - Gesture Recognition And Instantiation Library (GPLv3 license) 1grail - Gesture Recognition And Instantiation Library (GPLv3 license)
2 2
3 Copyright (C) 2010 Canonical Ltd. 3 Copyright (C) 2010 Canonical Ltd.
4 4 Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
5Authors:
6 Henrik Rydberg <rydberg@bitmath.org>
7 5
8 Preamble 6 Preamble
9 7
diff --git a/README b/README
index 05a40e1..dfdd7bf 100644
--- a/README
+++ b/README
@@ -1,4 +1,16 @@
1grail - Gesture Recognition And Instantiation Library 1grail - Gesture Recognition And Instantiation Library
2 2
3This code defines an interface and tools for handling recognized 3This tree consists of an interface and tools for handling gesture
4gestures. 4recognition and gesture instantiation.
5
6When a multitouch gesture is performed on a device, the recognizer
7emits one or several possible gestures. Once the context of the
8gesture is known, i.e., in what window the touches land and what
9gestures the clients of that window listens to, the instantiator
10delivers the matching set of gestures.
11
12The library handles tentative getures, i.e., buffering of events for
13several alternative gestures until a match is confirmed.
14
15Enjoy,
16Henrik
diff --git a/include/grail-bits.h b/include/grail-bits.h
index ca04c3f..5d940eb 100644
--- a/include/grail-bits.h
+++ b/include/grail-bits.h
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#ifndef _GRAIL_BITS_H 23#ifndef _GRAIL_BITS_H
diff --git a/include/grail-touch.h b/include/grail-touch.h
index 5c2fab0..9d96cc3 100644
--- a/include/grail-touch.h
+++ b/include/grail-touch.h
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#ifndef _GRAIL_TOUCH_H 23#ifndef _GRAIL_TOUCH_H
diff --git a/include/grail-types.h b/include/grail-types.h
index 7de3d9a..7de11b0 100644
--- a/include/grail-types.h
+++ b/include/grail-types.h
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#ifndef _GRAIL_TYPES_H 23#ifndef _GRAIL_TYPES_H
diff --git a/include/grail.h b/include/grail.h
index 0fa4473..e608b05 100644
--- a/include/grail.h
+++ b/include/grail.h
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#ifndef _GRAIL_H 23#ifndef _GRAIL_H
diff --git a/src/evbuf.h b/src/evbuf.h
index dc5ad1e..4a91ae6 100644
--- a/src/evbuf.h
+++ b/src/evbuf.h
@@ -2,8 +2,8 @@
2 * 2 *
3 * mtdev - Multitouch Protocol Translation Library (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
7 * 7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a 8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"), 9 * copy of this software and associated documentation files (the "Software"),
diff --git a/src/gebuf.h b/src/gebuf.h
index 3f71ab5..1b95cc6 100644
--- a/src/gebuf.h
+++ b/src/gebuf.h
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#ifndef _GRAIL_GESTURE_BUFFER_H 23#ifndef _GRAIL_GESTURE_BUFFER_H
diff --git a/src/gestures-combo.c b/src/gestures-combo.c
index 7b8dbd5..0f4dd7e 100644
--- a/src/gestures-combo.c
+++ b/src/gestures-combo.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include "grail-recognizer.h" 23#include "grail-recognizer.h"
diff --git a/src/gestures-pan.c b/src/gestures-pan.c
index 3094007..320a987 100644
--- a/src/gestures-pan.c
+++ b/src/gestures-pan.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include "grail-recognizer.h" 23#include "grail-recognizer.h"
diff --git a/src/gestures-pinch.c b/src/gestures-pinch.c
index 0721e02..c0d6a17 100644
--- a/src/gestures-pinch.c
+++ b/src/gestures-pinch.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include "grail-recognizer.h" 23#include "grail-recognizer.h"
diff --git a/src/gestures-rotate.c b/src/gestures-rotate.c
index 6c496d2..105340b 100644
--- a/src/gestures-rotate.c
+++ b/src/gestures-rotate.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include "grail-recognizer.h" 23#include "grail-recognizer.h"
diff --git a/src/gestures-tapping.c b/src/gestures-tapping.c
index cc0e685..d78e775 100644
--- a/src/gestures-tapping.c
+++ b/src/gestures-tapping.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include "grail-recognizer.h" 23#include "grail-recognizer.h"
diff --git a/src/grail-api.c b/src/grail-api.c
index 9ceb1e7..f7b664e 100644
--- a/src/grail-api.c
+++ b/src/grail-api.c
@@ -1,3 +1,25 @@
1/*****************************************************************************
2 *
3 * grail - Gesture Recognition And Instantiation Library
4 *
5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
7 *
8 * This program is free software: you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 ****************************************************************************/
22
1#include "grail-inserter.h" 23#include "grail-inserter.h"
2#include "grail-recognizer.h" 24#include "grail-recognizer.h"
3#include <grail.h> 25#include <grail.h>
diff --git a/src/grail-bits.c b/src/grail-bits.c
index 1b38d58..4c8b941 100644
--- a/src/grail-bits.c
+++ b/src/grail-bits.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include "grail-bits.h" 23#include "grail-bits.h"
diff --git a/src/grail-gestures.c b/src/grail-gestures.c
index e1bf622..cb7e5a3 100644
--- a/src/grail-gestures.c
+++ b/src/grail-gestures.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include "grail-recognizer.h" 23#include "grail-recognizer.h"
diff --git a/src/grail-gestures.h b/src/grail-gestures.h
index 663d357..0447100 100644
--- a/src/grail-gestures.h
+++ b/src/grail-gestures.h
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#ifndef _GRAIL_GESTURES_H 23#ifndef _GRAIL_GESTURES_H
diff --git a/src/grail-inserter.c b/src/grail-inserter.c
index 724052c..74a61b3 100644
--- a/src/grail-inserter.c
+++ b/src/grail-inserter.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include "grail-inserter.h" 23#include "grail-inserter.h"
diff --git a/src/grail-inserter.h b/src/grail-inserter.h
index 3ffacec..08b6d21 100644
--- a/src/grail-inserter.h
+++ b/src/grail-inserter.h
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#ifndef _GRAIL_INSERTER_H 23#ifndef _GRAIL_INSERTER_H
diff --git a/src/grail-recognizer.c b/src/grail-recognizer.c
index 587a12a..c4c6812 100644
--- a/src/grail-recognizer.c
+++ b/src/grail-recognizer.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include "grail-recognizer.h" 23#include "grail-recognizer.h"
diff --git a/src/grail-recognizer.h b/src/grail-recognizer.h
index 8a5ac80..212ac7d 100644
--- a/src/grail-recognizer.h
+++ b/src/grail-recognizer.h
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#ifndef _GRAIL_RECOGNIZER_H 23#ifndef _GRAIL_RECOGNIZER_H
diff --git a/src/touch-dev.c b/src/touch-dev.c
index 4cc8d55..b270319 100644
--- a/src/touch-dev.c
+++ b/src/touch-dev.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include <grail-touch.h> 23#include <grail-touch.h>
diff --git a/src/touch-engine.c b/src/touch-engine.c
index 3e6870e..d13785d 100644
--- a/src/touch-engine.c
+++ b/src/touch-engine.c
@@ -3,6 +3,7 @@
3 * grail - Gesture Recognition And Instantiation Library 3 * grail - Gesture Recognition And Instantiation Library
4 * 4 *
5 * Copyright (C) 2010 Canonical Ltd. 5 * Copyright (C) 2010 Canonical Ltd.
6 * Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org>
6 * 7 *
7 * This program is free software: you can redistribute it and/or modify it 8 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the 9 * under the terms of the GNU General Public License as published by the
@@ -17,9 +18,6 @@
17 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>. 19 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 * 20 *
20 * Authors:
21 * Henrik Rydberg <rydberg@bitmath.org>
22 *
23 ****************************************************************************/ 21 ****************************************************************************/
24 22
25#include <grail-touch.h> 23#include <grail-touch.h>