From 9a61b96233e3142549322e942de788ec5dfad9ef Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Fri, 6 Aug 2010 22:32:42 +0200 Subject: Update README and copyright in all files Add the author to the copyright, courtesy of Canonical Ltd. Signed-off-by: Henrik Rydberg --- COPYING | 4 +--- README | 16 ++++++++++++++-- include/grail-bits.h | 4 +--- include/grail-touch.h | 4 +--- include/grail-types.h | 4 +--- include/grail.h | 4 +--- src/evbuf.h | 2 +- src/gebuf.h | 4 +--- src/gestures-combo.c | 4 +--- src/gestures-pan.c | 4 +--- src/gestures-pinch.c | 4 +--- src/gestures-rotate.c | 4 +--- src/gestures-tapping.c | 4 +--- src/grail-api.c | 22 ++++++++++++++++++++++ src/grail-bits.c | 4 +--- src/grail-gestures.c | 4 +--- src/grail-gestures.h | 4 +--- src/grail-inserter.c | 4 +--- src/grail-inserter.h | 4 +--- src/grail-recognizer.c | 4 +--- src/grail-recognizer.h | 4 +--- src/touch-dev.c | 4 +--- src/touch-engine.c | 4 +--- 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 @@ grail - Gesture Recognition And Instantiation Library (GPLv3 license) Copyright (C) 2010 Canonical Ltd. - -Authors: - Henrik Rydberg + Copyright (C) 2010 Henrik Rydberg Preamble diff --git a/README b/README index 05a40e1..dfdd7bf 100644 --- a/README +++ b/README @@ -1,4 +1,16 @@ grail - Gesture Recognition And Instantiation Library -This code defines an interface and tools for handling recognized -gestures. +This tree consists of an interface and tools for handling gesture +recognition and gesture instantiation. + +When a multitouch gesture is performed on a device, the recognizer +emits one or several possible gestures. Once the context of the +gesture is known, i.e., in what window the touches land and what +gestures the clients of that window listens to, the instantiator +delivers the matching set of gestures. + +The library handles tentative getures, i.e., buffering of events for +several alternative gestures until a match is confirmed. + +Enjoy, +Henrik 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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * * mtdev - Multitouch Protocol Translation Library (MIT license) * - * Copyright (C) 2010 Henrik Rydberg * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * Permission is hereby granted, free of charge, to any person obtaining a * 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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ +/***************************************************************************** + * + * grail - Gesture Recognition And Instantiation Library + * + * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see . + * + ****************************************************************************/ + #include "grail-inserter.h" #include "grail-recognizer.h" #include 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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #include 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 @@ * grail - Gesture Recognition And Instantiation Library * * Copyright (C) 2010 Canonical Ltd. + * Copyright (C) 2010 Henrik Rydberg * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,9 +18,6 @@ * You should have received a copy of the GNU General Public License along * with this program. If not, see . * - * Authors: - * Henrik Rydberg - * ****************************************************************************/ #include -- cgit v1.2.3