return m_window->IsShown();
case Item_Sizer:
+ {
// arbitrarily decide that if at least one of our elements is
// shown, so are we (this arbitrariness is the reason for
// deprecating this function)
return true;
}
return false;
+ }
case Item_Spacer:
return m_spacer->IsShown();
// Using the max ratio ensures that the min size is big enough for all
// items to have their min size and satisfy the proportions among them.
- SizeInMajorDir(m_minSize) += maxMinSizeToProp*m_totalProportion;
+ SizeInMajorDir(m_minSize) += (int)(maxMinSizeToProp*m_totalProportion);
return m_minSize;
}