Home | Trees | Index | Help |
|
---|
Package wx :: Class IndividualLayoutConstraint |
|
object
--+ |Object
--+ | IndividualLayoutConstraint
Objects of this class are stored in the wx.LayoutConstraints
class as
one of eight possible constraints that a window can be involved in.
You will never need to create an instance of
wx.IndividualLayoutConstraint, rather you should create a
wx.LayoutConstraints
instance and use the individual contstraints
that it contains.
Constraints are initially set to have the relationship wx.Unconstrained, which means that their values should be calculated by looking at known constraints.
The Edge specifies the type of edge or dimension of a window.
wx.Left The left edge. wx.Top The top edge. wx.Right The right edge. wx.Bottom The bottom edge. wx.CentreX The x-coordinate of the centre of the window. wx.CentreY The y-coordinate of the centre of the window.
The Relationship specifies the relationship that this edge or dimension has with another specified edge or dimension. Normally, the user doesn't use these directly because functions such as Below and RightOf are a convenience for using the more general Set function.
wx.Unconstrained The edge or dimension is unconstrained (the default for edges.) wx.AsIs The edge or dimension is to be taken from the current window position or size (the default for dimensions.) wx.Above The edge should be above another edge. wx.Below The edge should be below another edge. wx.LeftOf The edge should be to the left of another edge. wx.RightOf The edge should be to the right of another edge. wx.SameAs The edge or dimension should be the same as another edge or dimension. wx.PercentOf The edge or dimension should be a percentage of another edge or dimension. wx.Absolute The edge or dimension should be a given absolute value.
See Also:
wx.LayoutConstraints
, wx.Window.SetConstraints
Method Summary | |
---|---|
__init__(self)
| |
Constrains this edge to be above the given window, with an optional margin. | |
Constrains this edge or dimension to be the given absolute value. | |
Sets this edge or constraint to be whatever the window's value is at the moment. | |
Constrains this edge to be below the given window, with an optional margin. | |
bool | GetDone(self)
|
int |
Get the value of this edge or dimension, or if this is not determinable, -1. |
int | GetMargin(self)
|
int | GetMyEdge(self)
|
int | GetOtherEdge(self)
|
Window | GetOtherWindow(self)
|
int | GetPercent(self)
|
int | GetRelationship(self)
|
int | GetValue(self)
|
Constrains this edge to be to the left of the given window, with an optional margin. | |
Constrains this edge or dimension to be to a percentage of the given window, with an optional margin. | |
bool |
Reset constraint if it mentions otherWin |
Constrains this edge to be to the right of the given window, with an optional margin. | |
Constrains this edge or dimension to be to the same as the edge of the given window, with an optional margin. | |
bool |
Try to satisfy constraint |
Sets the properties of the constraint. | |
SetDone(self,
d)
| |
SetEdge(self,
which)
| |
SetMargin(self,
m)
| |
SetRelationship(self,
r)
| |
SetValue(self,
v)
| |
Sets this edge or dimension to be unconstrained, that is, dependent on other edges and dimensions from which this value can be deduced. |
Property Summary | |
---|---|
Done : See GetDone and SetDone | |
Margin : See GetMargin and SetMargin | |
MyEdge : See GetMyEdge | |
OtherEdge : See GetOtherEdge | |
OtherWindow : See GetOtherWindow | |
Percent : See GetPercent | |
Relationship : See GetRelationship and SetRelationship | |
thisown : The membership flag | |
Value : See GetValue and SetValue |
Method Details |
---|
Above(self, sibling, marg=0)Constrains this edge to be above the given window, with an optional margin. Implicitly, this is relative to the top edge of the other window.
|
Absolute(self, val)Constrains this edge or dimension to be the given absolute value.
|
AsIs(self)Sets this edge or constraint to be whatever the window's value is at the moment. If either of the width and height constraints are as is, the window will not be resized, but moved instead. This is important when considering panel items which are intended to have a default size, such as a button, which may take its size from the size of the button label. |
Below(self, sibling, marg=0)Constrains this edge to be below the given window, with an optional margin. Implicitly, this is relative to the bottom edge of the other window.
|
GetEdge(self, which, thisWin, other)Get the value of this edge or dimension, or if this is not determinable, -1.
|
LeftOf(self, sibling, marg=0)Constrains this edge to be to the left of the given window, with an optional margin. Implicitly, this is relative to the left edge of the other window.
|
PercentOf(self, otherW, wh, per)Constrains this edge or dimension to be to a percentage of the given window, with an optional margin.
|
ResetIfWin(self, otherW)Reset constraint if it mentions otherWin
|
RightOf(self, sibling, marg=0)Constrains this edge to be to the right of the given window, with an optional margin. Implicitly, this is relative to the right edge of the other window.
|
SameAs(self, otherW, edge, marg=0)Constrains this edge or dimension to be to the same as the edge of the given window, with an optional margin.
|
SatisfyConstraint(self, constraints, win)Try to satisfy constraint
|
Set(self, rel, otherW, otherE, val=0, marg=wxLAYOUT_DEFAULT_MARGIN)Sets the properties of the constraint. Normally called by one of the convenience functions such as Above, RightOf, SameAs.
|
Unconstrained(self)Sets this edge or dimension to be unconstrained, that is, dependent on other edges and dimensions from which this value can be deduced. |
Property Details |
---|
Done |
Margin |
MyEdgeSee
|
OtherEdgeSee
|
OtherWindowSee
|
PercentSee
|
RelationshipSee
|
thisownThe membership flag |
Value |
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1.20050511.rpd on Thu Mar 22 12:13:29 2007 | http://epydoc.sf.net |