+ DocDeclStr(
+ void , LeftOf(wxWindow *sibling, int marg = 0),
+ "Sibling relationship");
+
+ DocDeclStr(
+ void , RightOf(wxWindow *sibling, int marg = 0),
+ "Sibling relationship");
+
+ DocDeclStr(
+ void , Above(wxWindow *sibling, int marg = 0),
+ "Sibling relationship");
+
+ DocDeclStr(
+ void , Below(wxWindow *sibling, int marg = 0),
+ "Sibling relationship");
+
+ DocDeclStr(
+ void , SameAs(wxWindow *otherW, wxEdge edge, int marg = 0),
+ "'Same edge' alignment");
+
+
+ DocDeclStr(
+ void , PercentOf(wxWindow *otherW, wxEdge wh, int per),
+ "The edge is a percentage of the other window's edge");
+
+
+ DocDeclStr(
+ void , Absolute(int val),
+ "Edge has absolute value");
+
+ DocDeclStr(
+ void , Unconstrained(),
+ "Dimension is unconstrained");
+
+
+ DocDeclStr(
+ void , AsIs(),
+ "Dimension is 'as is' (use current size settings)");
+
+
+ DocDeclStr(
+ wxWindow *, GetOtherWindow(),
+ "");
+
+ DocDeclStr(
+ wxEdge , GetMyEdge() const,
+ "");
+
+ DocDeclStr(
+ void , SetEdge(wxEdge which),
+ "");
+
+ DocDeclStr(
+ void , SetValue(int v),
+ "");
+
+ DocDeclStr(
+ int , GetMargin(),
+ "");
+
+ DocDeclStr(
+ void , SetMargin(int m),
+ "");
+
+ DocDeclStr(
+ int , GetValue() const,
+ "");
+
+ DocDeclStr(
+ int , GetPercent() const,
+ "");
+
+ DocDeclStr(
+ int , GetOtherEdge() const,
+ "");
+
+ DocDeclStr(
+ bool , GetDone() const,
+ "");
+
+ DocDeclStr(
+ void , SetDone(bool d),
+ "");
+
+ DocDeclStr(
+ wxRelationship , GetRelationship(),
+ "");
+
+ DocDeclStr(
+ void , SetRelationship(wxRelationship r),
+ "");
+
+
+ DocDeclStr(
+ bool , ResetIfWin(wxWindow *otherW),
+ "Reset constraint if it mentions otherWin");
+
+
+ DocDeclStr(
+ bool , SatisfyConstraint(wxLayoutConstraints *constraints, wxWindow *win),
+ "Try to satisfy constraint");
+
+
+ DocDeclStr(
+ int , GetEdge(wxEdge which, wxWindow *thisWin, wxWindow *other) const,
+ "Get the value of this edge or dimension, or if this\n"
+ "is not determinable, -1.");