File: component_layout_category.py

package info (click to toggle)
python-enable 4.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,280 kB
  • ctags: 13,899
  • sloc: cpp: 48,447; python: 28,502; ansic: 9,004; makefile: 315; sh: 44
file content (33 lines) | stat: -rw-r--r-- 667 bytes parent folder | download | duplicates (2)
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
""" FIXME:
Tentative implementation of a new layout mechanism. Unused and unworking.
"""


# Enthought library imports
from traits.api import Any, Category, Enum

# Singleton representing the default Enable layout manager
DefaultLayoutController = LayoutController()


class ComponentLayoutCategory(Category, Component):

    """ Properties defining how a component should be laid out. """

    resizable = Enum('h', 'v')

    max_width = Any

    min_width = Any

    max_height = Any

    min_height = Any

    # Various alignment and positioning functions

    def set_padding(self, left, right, top, bottom):
        pass

    def get_padding(self):
        pass