~ubuntu-branches/ubuntu/trusty/python-traitsui/trusty

« back to all changes in this revision

Viewing changes to traitsui/qt4/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-07-09 13:57:39 UTC
  • Revision ID: james.westby@ubuntu.com-20110709135739-x5u20q86huissmn1
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) 2007, Riverbank Computing Limited
 
3
# All rights reserved.
 
4
#
 
5
# This software is provided without warranty under the terms of the BSD license.
 
6
# However, when used with the GPL version of PyQt the additional terms described in the PyQt GPL exception also apply
 
7
 
 
8
#
 
9
# Author: Riverbank Computing Limited
 
10
#------------------------------------------------------------------------------
 
11
 
 
12
""" Defines the concrete implementations of the traits Toolkit interface for
 
13
the PyQt user interface toolkit.
 
14
"""
 
15
 
 
16
# import pyface.qt before anything else is done so the sipapi
 
17
# can be set correctly if needed
 
18
import pyface.qt
 
19
 
 
20
#----------------------------------------------------------------------------
 
21
#  Define the reference to the exported GUIToolkit object:
 
22
#----------------------------------------------------------------------------
 
23
 
 
24
import toolkit
 
25
 
 
26
# Reference to the GUIToolkit object for PyQt.
 
27
toolkit = toolkit.GUIToolkit()