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
|
#------------------------------------------------------------------------------
#
# 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: Enthought, Inc.
#
#------------------------------------------------------------------------------
""" Enthought pyface package component
"""
# Major package imports.
import wx
# Enthought library imports.
from traits.api import Instance, Int, provides, Unicode
# Local imports.
from pyface.i_heading_text import IHeadingText, MHeadingText
from pyface.image_resource import ImageResource
from pyface.wx.util.font_helper import new_font_like
from .widget import Widget
@provides(IHeadingText)
class HeadingText(MHeadingText, Widget):
""" The toolkit specific implementation of a HeadingText. See the
IHeadingText interface for the API documentation.
"""
#### 'IHeadingText' interface #############################################
level = Int(1)
text = Unicode('Default')
image = Instance(ImageResource, ImageResource('heading_level_1'))
###########################################################################
# 'object' interface.
###########################################################################
def __init__(self, parent, **traits):
""" Creates the panel. """
# Base class constructor.
super(HeadingText, self).__init__(**traits)
# Create the toolkit-specific control that represents the widget.
self.control = self._create_control(parent)
return
###########################################################################
# Private interface.
###########################################################################
def _create_control(self, parent):
""" Create the toolkit-specific control that represents the widget. """
# The background image (it is tiled).
image = self.image.create_image()
self._bmp = image.ConvertToBitmap()
sizer = wx.BoxSizer(wx.VERTICAL)
panel = wx.Panel(parent, -1, style=wx.CLIP_CHILDREN | wx.SIMPLE_BORDER)
panel.SetSizer(sizer)
panel.SetAutoLayout(True)
# Create a suitable font.
self._font = new_font_like(wx.NORMAL_FONT, family=wx.SWISS)
width, height = self._get_preferred_size(self.text, self._font)
panel.SetMinSize((width, height))
wx.EVT_PAINT(panel, self._on_paint_background)
wx.EVT_ERASE_BACKGROUND(panel, self._on_erase_background)
return panel
def _get_preferred_size(self, text, font):
""" Calculates the preferred size of the widget. """
dc = wx.ScreenDC()
dc.SetFont(font)
width, height = dc.GetTextExtent(text)
return (width + 10, height + 10)
def _tile_background_image(self, dc, width, height):
""" Tiles the background image. """
w = self._bmp.GetWidth()
h = self._bmp.GetHeight()
x = 0
while x < width:
y = 0
while y < height:
dc.DrawBitmap(self._bmp, x, y)
y = y + h
x = x + w
return
#### Trait event handlers #################################################
def _text_changed(self, new):
""" Called when the text is changed. """
if self.control is not None:
self.control.Refresh()
return
#### wx event handlers ####################################################
def _on_paint_background(self, event):
""" Called when the background of the panel is painted. """
dc = wx.PaintDC(self.control)
size = self.control.GetClientSize()
# Tile the background image.
self._tile_background_image(dc, size.width, size.height)
# Render the text.
dc.SetFont(self._font)
dc.DrawText(self.text, 5, 4)
return
def _on_erase_background(self, event):
""" Called when the background of the panel is erased. """
dc = event.GetDC()
size = self.control.GetClientSize()
# Tile the background image.
self._tile_background_image(dc, size.width, size.height)
# Render the text.
dc.SetFont(self._font)
dc.DrawText(self.text, 5, 4)
return
#### EOF ######################################################################
|