• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching refs:constr

1821             wxLayoutConstraints *constr = win->GetConstraints();
1824 if ( constr )
1826 constr->left.ResetIfWin(this);
1827 constr->top.ResetIfWin(this);
1828 constr->right.ResetIfWin(this);
1829 constr->bottom.ResetIfWin(this);
1830 constr->width.ResetIfWin(this);
1831 constr->height.ResetIfWin(this);
1832 constr->centreX.ResetIfWin(this);
1833 constr->centreY.ResetIfWin(this);
1893 wxLayoutConstraints *constr = GetConstraints();
1894 bool wasOk = constr && constr->AreSatisfied();
1941 wxLayoutConstraints *constr = GetConstraints();
1943 return !constr || constr->SatisfyConstraints(this, noChanges);
2016 wxLayoutConstraints *constr = GetConstraints();
2017 if ( constr )
2019 constr->left.SetDone(false);
2020 constr->top.SetDone(false);
2021 constr->right.SetDone(false);
2022 constr->bottom.SetDone(false);
2023 constr->width.SetDone(false);
2024 constr->height.SetDone(false);
2025 constr->centreX.SetDone(false);
2026 constr->centreY.SetDone(false);
2043 wxLayoutConstraints *constr = GetConstraints();
2044 if ( constr && constr->AreSatisfied() )
2046 int x = constr->left.GetValue();
2047 int y = constr->top.GetValue();
2048 int w = constr->width.GetValue();
2049 int h = constr->height.GetValue();
2051 if ( (constr->width.GetRelationship() != wxAsIs ) ||
2052 (constr->height.GetRelationship() != wxAsIs) )
2062 else if ( constr )
2085 wxLayoutConstraints *constr = GetConstraints();
2086 if ( constr )
2090 constr->left.SetValue(x);
2091 constr->left.SetDone(true);
2095 constr->top.SetValue(y);
2096 constr->top.SetDone(true);
2100 constr->width.SetValue(w);
2101 constr->width.SetDone(true);
2105 constr->height.SetValue(h);
2106 constr->height.SetDone(true);
2113 wxLayoutConstraints *constr = GetConstraints();
2114 if ( constr )
2118 constr->left.SetValue(x);
2119 constr->left.SetDone(true);
2123 constr->top.SetValue(y);
2124 constr->top.SetDone(true);
2131 wxLayoutConstraints *constr = GetConstraints();
2132 if ( constr )
2134 *w = constr->width.GetValue();
2135 *h = constr->height.GetValue();
2143 wxLayoutConstraints *constr = GetConstraints();
2144 if ( constr )
2146 *w = constr->width.GetValue();
2147 *h = constr->height.GetValue();
2155 wxLayoutConstraints *constr = GetConstraints();
2156 if ( constr )
2158 *x = constr->left.GetValue();
2159 *y = constr->top.GetValue();