~ubuntu-branches/ubuntu/quantal/mago/quantal

« back to all changes in this revision

Viewing changes to mago/backend/pymouse/java_.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
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()