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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
# (C) Copyright 2004-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
""" This module provides functions for registering interaction handlers
and location solvers for common Qt GUI components.
"""
from traitsui.testing.tester.command import (
KeyClick,
KeySequence,
MouseClick,
)
from traitsui.testing.tester.query import DisplayedText
from traitsui.testing.tester._ui_tester_registry.qt import (
_interaction_helpers,
)
def register_editable_textbox_handlers(registry, target_class, widget_getter):
"""Register common interactions for an editable textbox (in Qt)
Parameters
----------
registry : TargetRegistry
The registry being registered to.
target_class : subclass of type
The type of target being wrapped in a UIWrapper on which the
interaction will be performed.
widget_getter : callable(wrapper: UIWrapper) -> QWidget
A callable to return a Qt widget for editing text, i.e. QLineEdit
or QTextEdit.
"""
handlers = [
(
KeySequence,
(
lambda wrapper, interaction: _interaction_helpers.key_sequence_textbox(
widget_getter(wrapper), interaction, wrapper.delay
)
),
),
(
KeyClick,
(
lambda wrapper, interaction: _interaction_helpers.key_click_qwidget(
widget_getter(wrapper), interaction, wrapper.delay
)
),
),
(
MouseClick,
(
lambda wrapper, _: _interaction_helpers.mouse_click_qwidget(
widget_getter(wrapper), wrapper.delay
)
),
),
(
DisplayedText,
lambda wrapper, _: _interaction_helpers.displayed_text_qobject(
widget_getter(wrapper)
),
),
]
for interaction_class, handler in handlers:
registry.register_interaction(
target_class=target_class,
interaction_class=interaction_class,
handler=handler,
)
|