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

« back to all changes in this revision

Viewing changes to mago/backend/pymouse/java_.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
 
from java.awt import Robot, Toolkit
18
 
from java.awt.event import InputEvent
19
 
from java.awt.MouseInfo import getPointerInfo
20
 
from base import PyMouseMeta
21
 
 
22
 
r = Robot()
23
 
 
24
 
class PyMouse(PyMouseMeta):
25
 
    def press(self, x, y, button = 1):
26
 
        button_list = [None, InputEvent.BUTTON1_MASK, InputEvent.BUTTON3_MASK, InputEvent.BUTTON2_MASK]
27
 
        self.move(x, y)
28
 
        r.mousePress(button_list[button])
29
 
 
30
 
    def release(self, x, y, button = 1):
31
 
        button_list = [None, InputEvent.BUTTON1_MASK, InputEvent.BUTTON3_MASK, InputEvent.BUTTON2_MASK]
32
 
        self.move(x, y)
33
 
        r.mouseRelease(button_list[button])
34
 
    
35
 
    def move(self, x, y):
36
 
        r.mouseMove(x, y)
37
 
 
38
 
    def position(self):
39
 
        loc = getPointerInfo().getLocation()
40
 
        return loc.getX, loc.getY
41
 
 
42
 
    def screen_size(self):
43
 
        dim = Toolkit.getDefaultToolkit().getScreenSize()
44
 
        return dim.getWidth(), dim.getHeight()