Simple Widget Alias Example

An example of using an Enaml alias to expose an internal widget.

Tip

To see this example in action, download it from simple_widget_alias and run:

$ enaml-run simple_widget_alias.enaml

Screenshot

../_images/ex_simple_widget_alias.png

Example Enaml Code

#------------------------------------------------------------------------------
# Copyright (c) 2013, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
#------------------------------------------------------------------------------
""" An example of using an Enaml alias to expose an internal widget.

<< autodoc-me >>
"""
from __future__ import print_function
from enaml.widgets.api import Window, Container, PushButton


enamldef Content(Container):
    """ The primary application content.

    This 'button' alias provides access to the internal push button.

    """
    alias button
    PushButton: button:
        text = 'Default Button Text'


enamldef Main(Window):
    """ The main application window.

    This window uses the 'button' alias of the central content to bind
    to its internal push button.

    """
    title = 'Simple Widget Alias'
    Content:
        button.text = 'Aliased Button'
        button.clicked :: print('Aliased Button clicked!')