Package lib :: Module geom :: Class HLayout
[hide private]
[frames] | no frames]

Class HLayout

source code

object --+    
         |    
   VLayout --+
             |
            HLayout

horizontal layout manager defined as a transpose of VLayout

Instance Methods [hide private]
 
__init__(self, rect, nitems=1, pad=(0.0, 0.0, 0.0, 0.0))
x.__init__(...) initializes x; see help(type(x)) for signature
source code
(float,float,float,float)
item(self, i=0)
get rect for item i
source code

Inherited from VLayout: count, grow, item_span, items, resize

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Instance Variables [hide private]

Inherited from VLayout: nitems, pad, rect

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, rect, nitems=1, pad=(0.0, 0.0, 0.0, 0.0))
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

item(self, i=0)

source code 

get rect for item i

Returns: (float,float,float,float)
Overrides: VLayout.item