~ubuntu-branches/ubuntu/vivid/mago/vivid

« back to all changes in this revision

Viewing changes to mago/mouse/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2011-02-08 13:32:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110208133213-m1og7ey0m990chg6
Tags: 0.3+bzr20-0ubuntu1
* debian/rules:
  - updated to debhelper 7
  - use dh_python2 instead of python-central
* debian/pycompat:
  - removed, no longer needed
* debian/control:
  - dropped cdbs and python-central dependencies
* bzr snapshot of the current trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: iso-8859-1 -*-
 
2
 
 
3
#   Copyright 2010 Pepijn de Vos
 
4
#
 
5
#   Licensed under the Apache License, Version 2.0 (the "License");
 
6
#   you may not use this file except in compliance with the License.
 
7
#   You may obtain a copy of the License at
 
8
#
 
9
#       http://www.apache.org/licenses/LICENSE-2.0
 
10
#
 
11
#   Unless required by applicable law or agreed to in writing, software
 
12
#   distributed under the License is distributed on an "AS IS" BASIS,
 
13
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
#   See the License for the specific language governing permissions and
 
15
#   limitations under the License.
 
16
 
 
17
"""The goal of PyMouse is to have a cross-platform way to control the mouse.
 
18
PyMouse should work on Windows, Mac and any Unix that has xlib.
 
19
 
 
20
See http://github.com/pepijndevos/PyMouse for more information.
 
21
"""
 
22
 
 
23
import sys
 
24
 
 
25
if sys.platform.startswith('java'):
 
26
    from java_ import PyMouse
 
27
 
 
28
elif sys.platform == 'darwin':
 
29
    from mac import PyMouse, PyMouseEvent
 
30
 
 
31
elif sys.platform == 'win32':
 
32
    from windows import PyMouse, PyMouseEvent
 
33
 
 
34
else:
 
35
    from unix import PyMouse, PyMouseEvent
 
36