~onboard/virtkey/0.60

« back to all changes in this revision

Viewing changes to python-virtkey.c

  • Committer: Francesco Fumanti
  • Date: 2010-08-04 19:18:56 UTC
  • Revision ID: francesco.fumanti@gmx.net-20100804191856-rz5rzq48clnpwdc8
Update license from LGPL version 2 to LGPL version 3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * python-virtkey
3
 
 *
4
 
 * A python extension for emulating keypresses and getting keyboard geometry from the xserver.
5
 
 *
6
 
 * Uses ideas from Fontconfig, libvirtkeys.c, keysym2ucs.c and dasher. 
7
 
 *
8
 
 * Authored By Chris Jones  <cej105@soton.ac.uk>
9
 
 *
10
 
 * Copyright (C) 2006 Chris Jones
11
 
 *
12
 
 * This library is free software; you can redistribute it and/or
13
 
 * modify it under the terms of the GNU Lesser General Public
14
 
 * License as published by the Free Software Foundation; either
15
 
 * version 2 of the License, or (at your option) any later version.
16
 
 *
17
 
 * This library is distributed in the hope that it will be useful,
 
2
 *  Authored by Chris Jones <chris.e.jones@gmail.com>
 
3
 *  Modified by marmuta <marmvta@googlemail.com>
 
4
 *
 
5
 *  Copyright (C) 2006, 2007, 2008 Chris Jones
 
6
 *  Copyright (C) 2010 marmuta
 
7
 *
 
8
 * ------------------------------------------------------------------
 
9
 *
 
10
 * This file is part of the python-virtkey library.
 
11
 * 
 
12
 * python-virtkey is free software: you can redistribute it and/or
 
13
 * modify it under the terms of the GNU Lesser General Public License
 
14
 * as published by the Free Software Foundation, either version 3 of
 
15
 * the License, or (at your option) any later version.
 
16
 * 
 
17
 * python-virtkey is distributed in the hope that it will be useful,
18
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20
 
 * Lesser General Public License for more details.
21
 
 *
 
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
 * GNU Lesser General Public License for more details.
 
21
 * 
22
22
 * You should have received a copy of the GNU Lesser General Public
23
 
 * License along with this library; if not, write to the
24
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25
 
 * Boston, MA 02111-1307, USA.
 
23
 * License along with python-virtkey.  If not, see 
 
24
 * <http://www.gnu.org/licenses/>.
26
25
 */
27
26
 
28
27
#include "python-virtkey.h"