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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
#------------------------------------------------------------------------------
# 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.
"""
#-------------------------------------------------------------------------------
# Imports:
#-------------------------------------------------------------------------------
from pyface.qt import QtCore, QtGui
from traits.api \
import TraitError
from traitsui.editor_factory \
import EditorFactory as BaseEditorFactory
from editor \
import Editor
#-------------------------------------------------------------------------------
# 'EditorFactory' class
# Deprecated alias for traitsui.editor_factory.EditorFactory
#-------------------------------------------------------------------------------
class EditorFactory(BaseEditorFactory):
""" Deprecated alias for traitsui.editor_factory.EditorFactory.
"""
def __init__(self, *args, **kwds):
super(EditorFactory, self).__init__(*args, **kwds)
warnings.warn("DEPRECATED: Use traitsui.editor_factory."
".EditorFactory instead.", DeprecationWarning)
#-------------------------------------------------------------------------------
# 'SimpleEditor' class:
#-------------------------------------------------------------------------------
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.
"""
#---------------------------------------------------------------------------
# Finishes initializing the editor by creating the underlying toolkit
# widget:
#---------------------------------------------------------------------------
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
#-------------------------------------------------------------------------------
# 'TextEditor' class:
#-------------------------------------------------------------------------------
class TextEditor ( Editor ):
""" Base class for text style editors, which displays an editable text
field, containing a text representation of the object trait value.
"""
#---------------------------------------------------------------------------
# Finishes initializing the editor by creating the underlying toolkit
# widget:
#---------------------------------------------------------------------------
def init ( self, parent ):
""" Finishes initializing the editor by creating the underlying toolkit
widget.
"""
self.control = QtGui.QLineEdit(self.str_value)
QtCore.QObject.connect(self.control,
QtCore.SIGNAL('editingFinished()'), self.update_object)
self.set_tooltip()
#---------------------------------------------------------------------------
# Handles the user changing the contents of the edit control:
#---------------------------------------------------------------------------
def update_object(self):
""" Handles the user changing the contents of the edit control.
"""
try:
self.value = unicode(self.control.text())
except TraitError, excp:
pass
#-------------------------------------------------------------------------------
# 'ReadonlyEditor' class:
#-------------------------------------------------------------------------------
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.AlignLeft,
'right' : QtCore.Qt.AlignRight,
'just' : QtCore.Qt.AlignJustify,
'top' : QtCore.Qt.AlignLeft,
'bottom' : QtCore.Qt.AlignBottom,
'vcenter' : QtCore.Qt.AlignVCenter,
'hcenter' : QtCore.Qt.AlignHCenter,
'center' : QtCore.Qt.AlignVCenter | QtCore.Qt.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.setSizePolicy(QtGui.QSizePolicy.Expanding,
QtGui.QSizePolicy.Expanding)
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()
#---------------------------------------------------------------------------
# Updates the editor when the object trait changes external to the editor:
#---------------------------------------------------------------------------
def update_editor ( self ):
""" Updates the editor when the object trait changes externally to the
editor.
"""
self.control.setText(self.str_value)
#-------------------------------------------------------------------------------
# '_SimpleField' class:
#-------------------------------------------------------------------------------
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.LeftButton:
self._editor.popup_editor()
|