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 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
|
#------------------------------------------------------------------------------
# Copyright (c) 2005, Enthought, Inc.
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in enthought/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!
#
# Author: David C. Morrill
# Date: 12/02/2004
# Description: Define the Tkinter implementation of the various font editors and
# the font editor factory.
#
# Symbols defined: ToolkitEditorFactory
# font_trait
#
#------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Imports:
#-------------------------------------------------------------------------------
import tk
from enthought.traits.api import Trait, TraitHandler, TraitError, TraitFactory
from editor_factory import EditorFactory, SimpleEditor, TextEditor, \
ReadonlyEditor
from editor import Editor
from helper import choice_width
#-------------------------------------------------------------------------------
# Constants:
#-------------------------------------------------------------------------------
# Standard font point sizes:
PointSizes = [
'8', '9', '10', '11', '12', '14', '16', '18',
'20', '22', '24', '26', '28', '36', '48', '72'
]
# All available font facenames:
facenames = None
#-------------------------------------------------------------------------------
# 'ToolkitEditorFactory' class:
#-------------------------------------------------------------------------------
class ToolkitEditorFactory ( EditorFactory ):
#---------------------------------------------------------------------------
# 'Editor' factory methods:
#---------------------------------------------------------------------------
def simple_editor ( self, ui, object, name, description, parent ):
return SimpleFontEditor( parent,
factory = self,
ui = ui,
object = object,
name = name,
description = description )
def custom_editor ( self, ui, object, name, description, parent ):
return CustomFontEditor( parent,
factory = self,
ui = ui,
object = object,
name = name,
description = description )
def text_editor ( self, ui, object, name, description, parent ):
return TextFontEditor( parent,
factory = self,
ui = ui,
object = object,
name = name,
description = description )
def readonly_editor ( self, ui, object, name, description, parent ):
return ReadonlyFontEditor( parent,
factory = self,
ui = ui,
object = object,
name = name,
description = description )
#---------------------------------------------------------------------------
# Returns a wxFont object corresponding to a specified object's font trait:
#---------------------------------------------------------------------------
def to_wx_font ( self, editor ):
""" Returns a wxFont object corresponding to a specified object's font
trait.
"""
font = editor.value
return wx.Font( font.GetPointSize(), font.GetFamily(), font.GetStyle(),
font.GetWeight(), font.GetUnderlined(),
font.GetFaceName() )
#---------------------------------------------------------------------------
# Gets the application equivalent of a Tkinter Font value:
#---------------------------------------------------------------------------
def from_wx_font ( self, font ):
""" Gets the application equivalent of a Tkinter Font value.
"""
return font
#---------------------------------------------------------------------------
# Returns the text representation of the specified object trait value:
#---------------------------------------------------------------------------
def str_font ( self, font ):
""" Returns the text representation of the specified object trait value.
"""
weight = { wx.LIGHT: ' Light',
wx.BOLD: ' Bold' }.get( font.GetWeight(), '' )
style = { wx.SLANT: ' Slant',
wx.ITALIC:' Italic' }.get( font.GetStyle(), '' )
return '%s point %s%s%s' % (
font.GetPointSize(), font.GetFaceName(), style, weight )
#-------------------------------------------------------------------------------
# 'SimpleFontEditor' class:
#-------------------------------------------------------------------------------
class SimpleFontEditor ( SimpleEditor ):
#---------------------------------------------------------------------------
# Invokes the pop-up editor for an object trait:
#---------------------------------------------------------------------------
def popup_editor ( self, event ):
""" Invokes the pop-up editor for an object trait.
"""
font_data = wx.FontData()
font_data.SetInitialFont( self.factory.to_wx_font( self ) )
dialog = wx.FontDialog( self.control, font_data )
if dialog.ShowModal() == wx.ID_OK:
self.value = self.factory.from_wx_font(
dialog.GetFontData().GetChosenFont() )
dialog.Destroy()
#---------------------------------------------------------------------------
# Updates the editor when the object trait changes external to the editor:
#---------------------------------------------------------------------------
def update_editor ( self ):
""" Updates the editor when the object trait changes external to the
editor.
"""
super( SimpleFontEditor, self ).update_editor()
set_font( self )
#---------------------------------------------------------------------------
# Returns the text representation of a specified font value:
#---------------------------------------------------------------------------
def string_value ( self, font ):
""" Returns the text representation of a specified font value.
"""
return self.factory.str_font( font )
#-------------------------------------------------------------------------------
# 'CustomFontEditor' class:
#-------------------------------------------------------------------------------
class CustomFontEditor ( Editor ):
#---------------------------------------------------------------------------
# Finishes initializing the editor by creating the underlying toolkit
# widget:
#---------------------------------------------------------------------------
def init ( self, parent ):
""" Finishes initializing the editor by creating the underlying toolkit
widget.
"""
# Create a panel to hold all of the buttons:
self.control = panel = wx.Panel( parent, -1 )
sizer = wx.BoxSizer( wx.VERTICAL )
# Add the standard font control:
font = self._font = wx.TextCtrl( panel, -1, self.str_value )
wx.EVT_KILL_FOCUS( font, self.update_object )
wx.EVT_TEXT_ENTER( panel, font.GetId(), self.update_object )
sizer.Add( font, 0, wx.EXPAND | wx.BOTTOM, 3 )
# Add all of the font choice controls:
sizer2 = wx.BoxSizer( wx.HORIZONTAL )
facenames = all_facenames()
control = self._facename = wx.Choice( panel, -1, wx.Point( 0, 0 ),
wx.Size( choice_width( facenames ), 20 ),
facenames )
sizer2.Add( control, 2, wx.EXPAND )
wx.EVT_CHOICE( panel, control.GetId(), self.update_object_parts )
control = self._point_size = wx.Choice( panel, -1,
wx.Point( 0, 0 ), wx.Size( 30, 20 ),
PointSizes )
sizer2.Add( control, 1, wx.EXPAND | wx.RIGHT, 3 )
wx.EVT_CHOICE( panel, control.GetId(), self.update_object_parts )
sizer.Add( sizer2, 0, wx.EXPAND )
# Set-up the layout:
panel.SetAutoLayout( True )
panel.SetSizer( sizer )
sizer.Fit( panel )
#---------------------------------------------------------------------------
# Handles the user changing the contents of the font text control:
#---------------------------------------------------------------------------
def update_object ( self, event ):
""" Handles the user changing the contents of the font text control.
"""
self.value = self._font.GetValue()
#---------------------------------------------------------------------------
# Handles the user modifying one of the font components:
#---------------------------------------------------------------------------
def update_object_parts ( self, event ):
""" Handles the user modifying one of the font components.
"""
point_size = int( self._point_size.GetStringSelection() )
facename = self._facename.GetStringSelection()
font = wx.Font( point_size, wx.DEFAULT, wx.NORMAL, wx.NORMAL,
faceName = facename )
self.value = self.factory.from_wx_font( font )
#---------------------------------------------------------------------------
# Updates the editor when the object trait changes external to the editor:
#---------------------------------------------------------------------------
def update_editor ( self ):
""" Updates the editor when the object trait changes external to the
editor.
"""
font = self.factory.to_wx_font( self )
try:
self._facename.SetStringSelection( font.GetFaceName() )
except:
self._facename.SetSelection( 0 )
try:
self._point_size.SetStringSelection( str( font.GetPointSize() ) )
except:
self._point_size.SetSelection( 0 )
font.SetPointSize( min( 10, font.GetPointSize() ) )
self._font.SetValue( self.str_value )
self._font.SetFont( font )
#---------------------------------------------------------------------------
# Returns the text representation of a specified font value:
#---------------------------------------------------------------------------
def string_value ( self, font ):
""" Returns the text representation of a specified font value.
"""
return self.factory.str_font( font )
#-------------------------------------------------------------------------------
# 'TextFontEditor' class:
#-------------------------------------------------------------------------------
class TextFontEditor ( TextEditor ):
#---------------------------------------------------------------------------
# Handles the user changing the contents of the edit control:
#---------------------------------------------------------------------------
def update_object ( self, event ):
""" Handles the user changing the contents of the edit control.
"""
self.value = self.control.GetValue()
#---------------------------------------------------------------------------
# Updates the editor when the object trait changes external to the editor:
#---------------------------------------------------------------------------
def update_editor ( self ):
""" Updates the editor when the object trait changes external to the
editor.
"""
super( TextFontEditor, self ).update_editor()
set_font( self )
#---------------------------------------------------------------------------
# Returns the text representation of a specified font value:
#---------------------------------------------------------------------------
def string_value ( self, font ):
""" Returns the text representation of a specified font value.
"""
return self.factory.str_font( font )
#-------------------------------------------------------------------------------
# 'ReadonlyFontEditor' class:
#-------------------------------------------------------------------------------
class ReadonlyFontEditor ( ReadonlyEditor ):
#---------------------------------------------------------------------------
# Updates the editor when the object trait changes external to the editor:
#---------------------------------------------------------------------------
def update_editor ( self ):
""" Updates the editor when the object trait changes external to the
editor.
"""
super( ReadonlyFontEditor, self ).update_editor()
set_font( self )
#---------------------------------------------------------------------------
# Returns the text representation of a specified font value:
#---------------------------------------------------------------------------
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 ):
font = editor.factory.to_wx_font( editor )
font.SetPointSize( min( 10, font.GetPointSize() ) )
editor.control.SetFont( font )
#-------------------------------------------------------------------------------
# Returns a list of all available font facenames:
#-------------------------------------------------------------------------------
def all_facenames ( ):
""" Returns a list of all available font facenames.
"""
global facenames
if facenames is None:
facenames = FontEnumerator().facenames()
facenames.sort()
return facenames
#-------------------------------------------------------------------------------
# 'FontEnumerator' class:
#-------------------------------------------------------------------------------
class FontEnumerator ( wx.FontEnumerator ):
#---------------------------------------------------------------------------
# Returns a list of all available font facenames:
#---------------------------------------------------------------------------
def facenames ( self ):
""" Returns a list of all available font facenames.
"""
self._facenames = []
self.EnumerateFacenames()
return self._facenames
#---------------------------------------------------------------------------
# Adds a facename to the list of facenames:
#---------------------------------------------------------------------------
def OnFacename ( self, facename ):
""" Adds a facename to the list of facenames.
"""
self._facenames.append( facename )
return True
#-------------------------------------------------------------------------------
# Convert a string into a valid 'wxFont' object (if possible):
#-------------------------------------------------------------------------------
font_families = {
'default': wx.DEFAULT,
'decorative': wx.DECORATIVE,
'roman': wx.ROMAN,
'script': wx.SCRIPT,
'swiss': wx.SWISS,
'modern': wx.MODERN
}
font_styles = {
'slant': wx.SLANT,
'italic': wx.ITALIC
}
font_weights = {
'light': wx.LIGHT,
'bold': wx.BOLD
}
font_noise = [ 'pt', 'point', 'family' ]
#-------------------------------------------------------------------------------
# 'TraitWXFont' class'
#-------------------------------------------------------------------------------
class TraitWXFont ( TraitHandler ):
#---------------------------------------------------------------------------
# Validates that the value is a valid font:
#---------------------------------------------------------------------------
def validate ( self, object, name, value ):
""" Validates that the value is a valid font.
"""
if isinstance( value, wx.FontPtr ):
return wx.Font( value.GetPointSize(), value.GetFamily(),
value.GetStyle(), value.GetWeight(),
value.GetUnderlined(), value.GetFaceName() )
if isinstance( value, wx.Font ):
return value
try:
point_size = 10
family = wx.DEFAULT
style = wx.NORMAL
weight = wx.NORMAL
underline = 0
facename = []
for word in value.split():
lword = word.lower()
if font_families.has_key( lword ):
family = font_families[ lword ]
elif font_styles.has_key( lword ):
style = font_styles[ lword ]
elif font_weights.has_key( lword ):
weight = font_weights[ lword ]
elif lword == 'underline':
underline = 1
elif lword not in font_noise:
try:
point_size = int( lword )
except:
facename.append( word )
return wx.Font( point_size, family, style, weight, underline,
' '.join( facename ) )
except:
pass
raise TraitError, ( object, name, 'a font descriptor string',
repr( value ) )
def info ( self ):
return ( "a string describing a font (e.g. '12 pt bold italic "
"swiss family Arial' or 'default 12')" )
#-------------------------------------------------------------------------------
# Define a Tkinter specific font trait:
#-------------------------------------------------------------------------------
fh = TraitWXFont()
font_trait = Trait( fh.validate( None, None, 'Arial 10' ), fh,
editor = ToolkitEditorFactory() )
def TkFont ( value = 'Arial 10', **metadata ):
return Trait( value, font_trait, **metadata )
TkFont = TraitFactory( TkFont )
|