# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
#
# Copyright (C) 2012, 2013, 2014 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/>.
"""Lomiri UI Toolkit Autopilot tests and helpers."""
__all__ = [
'AppHeader',
'base',
'check_autopilot_version',
'CheckBox',
'environment',
'fixture_setup',
'get_keyboard',
'get_pointing_device',
'Header',
'Dialog',
'listitems',
'UCListItem',
'MainView',
'OptionSelector',
'pickers',
'popups',
'QQuickFlickable',
'QQuickGridView',
'QQuickListView',
'TabBar',
'Tabs',
'tests',
'TextArea',
'TextField',
'Toolbar',
'ToolkitException',
'lomiri_scenarios',
'LomiriListView11',
'LomiriUIToolkitCustomProxyObjectBase',
]
from lomiriuitoolkit import (
base,
environment,
fixture_setup,
tests,
lomiri_scenarios
)
from lomiriuitoolkit._custom_proxy_objects import (
AppHeader,
check_autopilot_version,
CheckBox,
get_keyboard,
get_pointing_device,
Header,
Dialog,
listitems,
UCListItem,
MainView,
OptionSelector,
pickers,
popups,
QQuickFlickable,
QQuickGridView,
QQuickListView,
TabBar,
Tabs,
TextArea,
TextField,
Toolbar,
ToolkitException,
LomiriUIToolkitCustomProxyObjectBase,
LomiriListView11,
)