~ubuntu-branches/ubuntu/natty/mago/natty

« back to all changes in this revision

Viewing changes to mago/backend/pymouse/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Ara Pulido
  • Date: 2010-12-03 16:08:32 UTC
  • Revision ID: james.westby@ubuntu.com-20101203160832-97pz2nxwmo54iwfk
Tags: 0.3-0ubuntu3
* Updated from trunk
 + Added new applications to our tests base
 + Fixes LP: #682845 

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