wxSize size = sizePage;
if ( IsVertical() )
{
+ if ( sizeChoice.x > sizePage.x )
+ size.x = sizeChoice.x;
size.y += sizeChoice.y + GetInternalBorder();
}
else // left/right aligned
{
size.x += sizeChoice.x + GetInternalBorder();
+ if ( sizeChoice.y > sizePage.y )
+ size.y = sizeChoice.y;
}
return size;
}
// ----------------------------------------------------------------------------
-// image list stuff
+// miscellaneous other stuff
// ----------------------------------------------------------------------------
+void wxChoicebook::DoSetWindowVariant(wxWindowVariant variant)
+{
+ wxCHECK_RET( m_bookctrl, "can't be called before control creation" );
+
+ m_bookctrl->SetWindowVariant(variant);
+}
+
void wxChoicebook::SetImageList(wxImageList *imageList)
{
// TODO: can be implemented in form of static bitmap near choice control