~ubuntu-branches/ubuntu/trusty/python-pyface/trusty

« back to all changes in this revision

Viewing changes to pyface/heading_text.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-07-09 10:57:54 UTC
  • Revision ID: james.westby@ubuntu.com-20110709105754-k4fw9am00s9vj5yf
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#------------------------------------------------------------------------------
 
2
# Copyright (c) 2005, Enthought, Inc.
 
3
# All rights reserved.
 
4
#
 
5
# This software is provided without warranty under the terms of the BSD
 
6
# license included in enthought/LICENSE.txt and may be redistributed only
 
7
# under the conditions described in the aforementioned license.  The license
 
8
# is also available online at http://www.enthought.com/licenses/BSD.txt
 
9
# Thanks for using Enthought open source!
 
10
#
 
11
# Author: Enthought, Inc.
 
12
# Description: <Enthought pyface package component>
 
13
#------------------------------------------------------------------------------
 
14
""" Heading text. """
 
15
 
 
16
 
 
17
# Import the toolkit specific version.
 
18
from toolkit import toolkit_object
 
19
HeadingText = toolkit_object('heading_text:HeadingText')
 
20
 
 
21
#### EOF ######################################################################