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
|
#------------------------------------------------------------------------------
# Copyright (c) 2013-2025, 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 which demonstrates the manual specification of an `hbox`.
This example demonstrates how one would manually define the constraints
for an `hbox` style layout. In fact, the `hbox` layout helper generates
the primitive constraints in a fashion very similar to this example.
The intent of this example is to demonstrate that all of the layout
helper functions can be distilled down to a list of primitive
constraints.
<< autodoc-me >>
"""
from enaml.widgets.api import Window, Container, PushButton
enamldef Main(Window):
Container:
constraints = [
# Horizontal Constraints
contents_left == pb1.left,
pb1.right + 10 == pb2.left,
pb2.right + 10 == pb3.left,
pb3.right == contents_right,
# Vertical Constraints
(contents_top == pb1.top) | 'medium',
(contents_top == pb2.top) | 'medium',
(contents_top == pb3.top) | 'medium',
(pb1.bottom == contents_bottom) | 'medium',
(pb2.bottom == contents_bottom) | 'medium',
(pb3.bottom == contents_bottom) | 'medium',
]
PushButton: pb1:
text = 'Spam'
PushButton: pb2:
text = 'Long Name Foo'
PushButton: pb3:
text = 'Bar'
|