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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
|
# (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 various font editors and the font editor factory, for the
PyQt user interface toolkit..
"""
from pyface.qt import QtCore, QtGui
from traitsui.editors.font_editor import (
ToolkitEditorFactory as BaseToolkitEditorFactory,
)
from .editor_factory import (
SimpleEditor as BaseSimpleEditor,
TextEditor as BaseTextEditor,
ReadonlyEditor as BaseReadonlyEditor,
)
from .editor import Editor
# Standard font point sizes
PointSizes = [
"8",
"9",
"10",
"11",
"12",
"14",
"16",
"18",
"20",
"22",
"24",
"26",
"28",
"36",
"48",
"72",
]
# ---------------------------------------------------------------------------
# The PyQtToolkitEditorFactory class.
# ---------------------------------------------------------------------------
## We need to add qt-specific methods to the editor factory, and so we create
## a subclass of the BaseToolkitEditorFactory.
class ToolkitEditorFactory(BaseToolkitEditorFactory):
"""PyQt editor factory for font editors."""
def to_qt_font(self, editor):
"""Returns a QFont object corresponding to a specified object's font
trait.
"""
return QtGui.QFont(editor.value)
def from_qt_font(self, font):
"""Gets the application equivalent of a QFont value."""
return font
def str_font(self, font):
"""Returns the text representation of the specified object trait value."""
weight = {QtGui.QFont.Weight.Light: " Light", QtGui.QFont.Weight.Bold: " Bold"}.get(
font.weight(), ""
)
style = {
QtGui.QFont.Style.StyleOblique: " Slant",
QtGui.QFont.Style.StyleItalic: " Italic",
}.get(font.style(), "")
return "%s point %s%s%s" % (
font.pointSize(),
font.family(),
style,
weight,
)
class SimpleFontEditor(BaseSimpleEditor):
"""Simple style of font editor, which displays a text field that contains
a text representation of the font value (using that font if possible).
Clicking the field displays a font selection dialog box.
"""
def popup_editor(self):
"""Invokes the pop-up editor for an object trait."""
fnt, ok = QtGui.QFontDialog.getFont(
self.factory.to_qt_font(self), self.control
)
if ok:
self.value = self.factory.from_qt_font(fnt)
self.update_editor()
def update_editor(self):
"""Updates the editor when the object trait changes externally to the
editor.
"""
super().update_editor()
set_font(self)
def string_value(self, font):
"""Returns the text representation of a specified font value."""
return self.factory.str_font(font)
class CustomFontEditor(Editor):
"""Custom style of font editor, which displays the following:
* A text field containing the text representation of the font value
(using that font if possible).
* A combo box containing all available type face names.
* A combo box containing the available type sizes.
"""
def init(self, parent):
"""Finishes initializing the editor by creating the underlying toolkit
widget.
"""
self.control = QtGui.QWidget()
layout = QtGui.QVBoxLayout(self.control)
layout.setContentsMargins(0, 0, 0, 0)
# Add the standard font control:
self._font = font = QtGui.QLineEdit(self.str_value)
font.editingFinished.connect(self.update_object)
layout.addWidget(font)
# Add all of the font choice controls:
layout2 = QtGui.QHBoxLayout()
self._facename = control = QtGui.QFontComboBox()
control.setEditable(False)
control.currentFontChanged.connect(self.update_object_parts)
layout2.addWidget(control)
self._point_size = control = QtGui.QComboBox()
control.addItems(PointSizes)
control.currentIndexChanged.connect(self.update_object_parts)
layout2.addWidget(control)
# These don't have explicit controls.
self._bold = self._italic = False
layout.addLayout(layout2)
def update_object(self):
"""Handles the user changing the contents of the font text control."""
self.value = str(self._font.text())
self._set_font(self.factory.to_qt_font(self))
self.update_editor()
def update_object_parts(self):
"""Handles the user modifying one of the font components."""
fnt = self._facename.currentFont()
fnt.setBold(self._bold)
fnt.setItalic(self._italic)
psz = int(self._point_size.currentText())
fnt.setPointSize(psz)
self.value = self.factory.from_qt_font(fnt)
self._font.setText(self.str_value)
self._set_font(fnt)
def update_editor(self):
"""Updates the editor when the object trait changes externally to the
editor.
"""
font = self.factory.to_qt_font(self)
self._bold = font.bold()
self._italic = font.italic()
self._facename.setCurrentFont(font)
try:
idx = PointSizes.index(str(font.pointSize()))
except ValueError:
idx = PointSizes.index("9")
self._point_size.setCurrentIndex(idx)
def string_value(self, font):
"""Returns the text representation of a specified font value."""
return self.factory.str_font(font)
def get_error_control(self):
"""Returns the editor's control for indicating error status."""
return [self._font, self._facename, self._point_size]
# -- Private Methods ------------------------------------------------------
def _set_font(self, font):
"""Sets the font used by the text control to the specified font."""
font.setPointSize(min(10, font.pointSize()))
self._font.setFont(font)
class TextFontEditor(BaseTextEditor):
"""Text style of font editor, which displays an editable text field
containing a text representation of the font value (using that font if
possible).
"""
def update_object(self):
"""Handles the user changing the contents of the edit control."""
self.value = str(self.control.text())
def update_editor(self):
"""Updates the editor when the object trait changes external to the
editor.
"""
super().update_editor()
set_font(self)
def string_value(self, font):
"""Returns the text representation of a specified font value."""
return self.factory.str_font(font)
class ReadonlyFontEditor(BaseReadonlyEditor):
"""Read-only style of font editor, which displays a read-only text field
containing a text representation of the font value (using that font if
possible).
"""
def update_editor(self):
"""Updates the editor when the object trait changes external to the
editor.
"""
super().update_editor()
set_font(self)
def string_value(self, font):
"""Returns the text representation of a specified font value."""
return self.factory.str_font(font)
# -------------------------------------------------------------------------
# Set the editor control's font to match a specified font:
# -------------------------------------------------------------------------
def set_font(editor):
"""Sets the editor control's font to match a specified font."""
editor.control.setFont(editor.factory.to_qt_font(editor))
# Define the names SimpleEditor, CustomEditor, TextEditor and ReadonlyEditor
# which are looked up by the editor factory for the font editor.
SimpleEditor = SimpleFontEditor
CustomEditor = CustomFontEditor
TextEditor = TextFontEditor
ReadonlyEditor = ReadonlyFontEditor
|