~mterry/qtmir/warn-on-xapp

« back to all changes in this revision

Viewing changes to benchmarks/common.py

  • Committer: CI Train Bot
  • Author(s): Nick Dedekind
  • Date: 2015-10-21 11:46:54 UTC
  • mfrom: (369.4.13 qtmir)
  • Revision ID: ci-train-bot@canonical.com-20151021114654-zxs13246bxcdci9l
Added touch performance tracing and test.
Approved by: Gerry Boland

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
 
2
#
 
3
# Copyright (C) 2015 Canonical Ltd.
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU Lesser General Public License as published by
 
7
# the Free Software Foundation; version 3.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
12
# GNU Lesser General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU Lesser General Public License
 
15
# along with this program. If not, see <http://www.gnu.org/licenses/>.
 
16
 
 
17
from autopilot import (
 
18
    input,
 
19
    platform
 
20
)
 
21
 
 
22
def get_pointing_device():
 
23
    """Return the pointing device depending on the platform.
 
24
 
 
25
    If the platform is `Desktop`, the pointing device will be a `Mouse`.
 
26
    If not, the pointing device will be `Touch`.
 
27
 
 
28
    """
 
29
    if platform.model() == 'Desktop':
 
30
        input_device_class = input.Mouse
 
31
    else:
 
32
        input_device_class = input.Touch
 
33
    return input.Pointer(device=input_device_class.create())
 
 
b'\\ No newline at end of file'