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