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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
# (C) Copyright 2008-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!
# ------------------------------------------------------------------------------
# Copyright (c) 2007, Riverbank Computing Limited
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD license.
# However, when used with the GPL version of PyQt the additional terms
# described in the PyQt GPL exception also apply
#
# Author: Riverbank Computing Limited
# ------------------------------------------------------------------------------
""" Defines the base PyQt classes the various styles of editors used in a
Traits-based user interface.
"""
from pyface.qt import QtCore, QtGui
from traits.api import TraitError
from .editor import Editor
class SimpleEditor(Editor):
"""Base class for simple style editors, which displays a text field
containing the text representation of the object trait value. Clicking in
the text field displays an editor-specific dialog box for changing the
value.
"""
def init(self, parent):
"""Finishes initializing the editor by creating the underlying toolkit
widget.
"""
self.control = _SimpleField(self)
self.set_tooltip()
# -------------------------------------------------------------------------
# Invokes the pop-up editor for an object trait:
#
# (Normally overridden in a subclass)
# -------------------------------------------------------------------------
def popup_editor(self):
"""Invokes the pop-up editor for an object trait."""
pass
class TextEditor(Editor):
"""Base class for text style editors, which displays an editable text
field, containing a text representation of the object trait value.
"""
def init(self, parent):
"""Finishes initializing the editor by creating the underlying toolkit
widget.
"""
self.control = QtGui.QLineEdit(self.str_value)
self.control.editingFinished.connect(self.update_object)
self.set_tooltip()
def dispose(self):
"""Disposes of the contents of an editor."""
if self.control is not None:
self.control.editingFinished.disconnect(self.update_object)
super().dispose()
def update_object(self):
"""Handles the user changing the contents of the edit control."""
if self.control is None:
return
try:
self.value = str(self.control.text())
except TraitError as excp:
pass
class ReadonlyEditor(Editor):
"""Base class for read-only style editors, which displays a read-only text
field, containing a text representation of the object trait value.
"""
# -------------------------------------------------------------------------
# Finishes initializing the editor by creating the underlying toolkit
# widget:
# -------------------------------------------------------------------------
text_alignment_map = {
"left": QtCore.Qt.AlignmentFlag.AlignLeft,
"right": QtCore.Qt.AlignmentFlag.AlignRight,
"just": QtCore.Qt.AlignmentFlag.AlignJustify,
"top": QtCore.Qt.AlignmentFlag.AlignLeft,
"bottom": QtCore.Qt.AlignmentFlag.AlignBottom,
"vcenter": QtCore.Qt.AlignmentFlag.AlignVCenter,
"hcenter": QtCore.Qt.AlignmentFlag.AlignHCenter,
"center": QtCore.Qt.AlignmentFlag.AlignVCenter | QtCore.Qt.AlignmentFlag.AlignHCenter,
}
def init(self, parent):
"""Finishes initializing the editor by creating the underlying toolkit
widget.
"""
self.control = QtGui.QLabel(self.str_value)
if self.item.resizable is True or self.item.height != -1.0:
self.control.setWordWrap(True)
alignment = None
for item in self.factory.text_alignment.split(","):
item_alignment = self.text_alignment_map.get(item, None)
if item_alignment:
if alignment:
alignment = alignment | item_alignment
else:
alignment = item_alignment
if alignment:
self.control.setAlignment(alignment)
self.set_tooltip()
def update_editor(self):
"""Updates the editor when the object trait changes externally to the
editor.
"""
self.control.setText(self.str_value)
class _SimpleField(QtGui.QLineEdit):
def __init__(self, editor):
QtGui.QLineEdit.__init__(self, editor.str_value)
self.setReadOnly(True)
self._editor = editor
def mouseReleaseEvent(self, e):
QtGui.QLineEdit.mouseReleaseEvent(self, e)
if e.button() == QtCore.Qt.MouseButton.LeftButton:
self._editor.popup_editor()
|